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

This commit is contained in:
Brian Talbot
2012-11-19 09:54:08 -05:00
parent 14f668a41e
commit bc4d5f413d
3 changed files with 103 additions and 36 deletions

View File

@@ -129,6 +129,7 @@
}
&.short {
min-width: 100px;
width: 25%;
}
@@ -148,8 +149,8 @@
}
}
.input-default {
color: $darkGrey;
.input-default input, .input-default textarea {
color: $mediumGrey;
background: $lightGrey;
}
@@ -379,7 +380,7 @@
}
.field {
width: 400px;
width: 400px ! important;
}
&.multi-inline {
@@ -426,10 +427,10 @@
.current {
width: 100%;
margin: 10px 0;
padding: 15px;
padding: 10px;
@include box-sizing(border-box);
@include border-radius(5px);
background: tint($blue, 80%);
background: tint($lightGrey, 50%);
}
}
@@ -464,6 +465,10 @@
border-bottom: none;
}
}
.remove-faculty-photo {
display: inline-block;
}
}
#course-faculty-bio-input {
@@ -493,7 +498,6 @@
.course-grading-gradeweight, .course-grading-totalassignments, .course-grading-totalassignmentsdroppable {
input {
width: 73px;
}
}
}
@@ -514,6 +518,23 @@
.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
@@ -543,6 +564,17 @@
// }
// }
input.error, textarea.error {
border-color: $red;
}
.message-error {
display: block;
margin-top: 5px;
color: $red;
font-size: 13px;
}
// misc
.divide {
display: none;

View File

@@ -16,6 +16,7 @@ $error-red: rgb(253, 87, 87);
$offBlack: #3c3c3c;
$blue: #5597dd;
$orange: #edbd3c;
$red: #e23c3e;
$lightGrey: #edf1f5;
$mediumGrey: #ced2db;
$darkGrey: #8891a1;