Commit bc4d5f41 by Brian Talbot

settings - various style/alignment tweaks to inline/existinf fields

parent 14f668a4
...@@ -129,6 +129,7 @@ ...@@ -129,6 +129,7 @@
} }
&.short { &.short {
min-width: 100px;
width: 25%; width: 25%;
} }
...@@ -148,8 +149,8 @@ ...@@ -148,8 +149,8 @@
} }
} }
.input-default { .input-default input, .input-default textarea {
color: $darkGrey; color: $mediumGrey;
background: $lightGrey; background: $lightGrey;
} }
...@@ -379,7 +380,7 @@ ...@@ -379,7 +380,7 @@
} }
.field { .field {
width: 400px; width: 400px ! important;
} }
&.multi-inline { &.multi-inline {
...@@ -426,10 +427,10 @@ ...@@ -426,10 +427,10 @@
.current { .current {
width: 100%; width: 100%;
margin: 10px 0; margin: 10px 0;
padding: 15px; padding: 10px;
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(5px); @include border-radius(5px);
background: tint($blue, 80%); background: tint($lightGrey, 50%);
} }
} }
...@@ -464,6 +465,10 @@ ...@@ -464,6 +465,10 @@
border-bottom: none; border-bottom: none;
} }
} }
.remove-faculty-photo {
display: inline-block;
}
} }
#course-faculty-bio-input { #course-faculty-bio-input {
...@@ -493,7 +498,6 @@ ...@@ -493,7 +498,6 @@
.course-grading-gradeweight, .course-grading-totalassignments, .course-grading-totalassignmentsdroppable { .course-grading-gradeweight, .course-grading-totalassignments, .course-grading-totalassignmentsdroppable {
input { input {
width: 73px;
} }
} }
} }
...@@ -514,6 +518,23 @@ ...@@ -514,6 +518,23 @@
.settings-discussions { .settings-discussions {
.settings-discussions-categories .course-discussions-categories-list-item {
label {
display: none;
}
.group {
display: inline-block;
}
.remove-item {
display: inline-block !important;
margin-left: 10px;
}
}
} }
// states // states
...@@ -543,6 +564,17 @@ ...@@ -543,6 +564,17 @@
// } // }
// } // }
input.error, textarea.error {
border-color: $red;
}
.message-error {
display: block;
margin-top: 5px;
color: $red;
font-size: 13px;
}
// misc // misc
.divide { .divide {
display: none; display: none;
......
...@@ -16,6 +16,7 @@ $error-red: rgb(253, 87, 87); ...@@ -16,6 +16,7 @@ $error-red: rgb(253, 87, 87);
$offBlack: #3c3c3c; $offBlack: #3c3c3c;
$blue: #5597dd; $blue: #5597dd;
$orange: #edbd3c; $orange: #edbd3c;
$red: #e23c3e;
$lightGrey: #edf1f5; $lightGrey: #edf1f5;
$mediumGrey: #ced2db; $mediumGrey: #ced2db;
$darkGrey: #8891a1; $darkGrey: #8891a1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment