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

This commit is contained in:
Brian Talbot
2015-08-26 13:31:18 -04:00
committed by David Baumgold
parent c0856232e1
commit b815a86e8a
9 changed files with 238 additions and 264 deletions

View File

@@ -111,7 +111,7 @@ iframe[seamless]{
}
.inline-error {
color: darken($error-red, 11%);
color: darken($error-color, 11%);
}
div.problem-progress {
@@ -967,8 +967,8 @@ div.problem {
div.capa_reset {
padding: 25px;
border: 1px solid $error-red;
background-color: lighten($error-red, 25%);
border: 1px solid $error-color;
background-color: lighten($error-color, 25%);
border-radius: 3px;
font-size: 1em;
margin-top: $baseline/2;

View File

@@ -35,7 +35,7 @@ div.name{
}
.inline-error {
color: darken($error-red, 10%);
color: darken($error-color, 10%);
}
section.combined-open-ended {
@@ -863,9 +863,9 @@ section.open-ended-child {
margin-top: ($baseline/2);
margin-bottom: ($baseline/2);
padding: 25px;
border: 1px solid $error-red;
border: 1px solid $error-color;
border-radius: 3px;
background-color: lighten($error-red, 25%);
background-color: lighten($error-color, 25%);
font-size: 1em;
}