Commit b815a86e by Brian Talbot Committed by David Baumgold

Comprehensive Theming: re-organizing/minor simplifying of existing LMS Sass variables

parent c0856232
...@@ -111,7 +111,7 @@ iframe[seamless]{ ...@@ -111,7 +111,7 @@ iframe[seamless]{
} }
.inline-error { .inline-error {
color: darken($error-red, 11%); color: darken($error-color, 11%);
} }
div.problem-progress { div.problem-progress {
...@@ -967,8 +967,8 @@ div.problem { ...@@ -967,8 +967,8 @@ div.problem {
div.capa_reset { div.capa_reset {
padding: 25px; padding: 25px;
border: 1px solid $error-red; border: 1px solid $error-color;
background-color: lighten($error-red, 25%); background-color: lighten($error-color, 25%);
border-radius: 3px; border-radius: 3px;
font-size: 1em; font-size: 1em;
margin-top: $baseline/2; margin-top: $baseline/2;
......
...@@ -35,7 +35,7 @@ div.name{ ...@@ -35,7 +35,7 @@ div.name{
} }
.inline-error { .inline-error {
color: darken($error-red, 10%); color: darken($error-color, 10%);
} }
section.combined-open-ended { section.combined-open-ended {
...@@ -863,9 +863,9 @@ section.open-ended-child { ...@@ -863,9 +863,9 @@ section.open-ended-child {
margin-top: ($baseline/2); margin-top: ($baseline/2);
margin-bottom: ($baseline/2); margin-bottom: ($baseline/2);
padding: 25px; padding: 25px;
border: 1px solid $error-red; border: 1px solid $error-color;
border-radius: 3px; border-radius: 3px;
background-color: lighten($error-red, 25%); background-color: lighten($error-color, 25%);
font-size: 1em; font-size: 1em;
} }
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
//Styles for Error messages //Styles for Error messages
%error-message-colors { %error-message-colors {
background: $error-red; background: $error-color;
border: 1px solid rgb(202, 17, 17); border: 1px solid rgb(202, 17, 17);
color: rgb(143, 14, 14); color: rgb(143, 14, 14);
} }
......
...@@ -614,7 +614,7 @@ div.course-wrapper { ...@@ -614,7 +614,7 @@ div.course-wrapper {
div.staff_actions { div.staff_actions {
p.error { p.error {
color: $error-red color: $error-color
} }
p.success { p.success {
color: $success-color; color: $success-color;
......
...@@ -137,12 +137,12 @@ ...@@ -137,12 +137,12 @@
.request-response-error { .request-response-error {
margin: 0; margin: 0;
padding-bottom: ($baseline); padding-bottom: ($baseline);
color: $error-red; color: $error-color;
} }
.display-errors { .display-errors {
line-height: 3em; line-height: 3em;
color: $error-red; color: $error-color;
} }
.slickgrid { .slickgrid {
......
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
margin-bottom: $baseline; margin-bottom: $baseline;
border-radius: 3px; border-radius: 3px;
padding: 0; padding: 0;
background: $error-red; background: $error-color;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset, 0 1px 0 rgba(255, 255, 255, .2); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset, 0 1px 0 rgba(255, 255, 255, .2);
color: $white; color: $white;
list-style: none; list-style: none;
......
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
} }
#register_error { #register_error {
background: $error-red; background: $error-color;
border: 1px solid rgb(202, 17, 17); border: 1px solid rgb(202, 17, 17);
color: rgb(143, 14, 14); color: rgb(143, 14, 14);
display: none; display: none;
......
...@@ -723,11 +723,11 @@ ...@@ -723,11 +723,11 @@
.u-field.error { .u-field.error {
input, textarea { input, textarea {
border-color: $danger-red; border-color: $error-color;
} }
.u-field-message-help, .u-field-description-message { .u-field-message-help, .u-field-description-message {
color: $danger-red !important; color: $error-color !important;
} }
} }
......
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