diff --git a/static/sass/_layout.scss b/static/sass/_layout.scss index 7e7bf5fab..380638cf3 100644 --- a/static/sass/_layout.scss +++ b/static/sass/_layout.scss @@ -266,7 +266,7 @@ $bordertop: lighten( $this-color, 38% ); .#{nth($names, $i)}-navigation { - @include vertical-gradient( $this-color, adjust-lightness( $this-color, -8 ), 30%, 95% ); + @include vertical-gradient( $this-color, adjust-color( $this-color, $lightness: -8 ), 30%, 95% ); border-top: 1px solid lighten($this-color, 15%); border-bottom: 1px solid darken($this-color, 25%); @@ -816,7 +816,7 @@ //float: left; //margin-top: .5em; } - /* ! This is done the wrong way with SASS. Should be something like \#{$form-text-inputs} with $form-text-inputs as a variable */ + /* ! This is done the wrong way with SASS. Should be something like \#{\$form-text-inputs} with \$form-text-inputs as a variable */ @include input_text_types() { width: 75%; display: inline-block; diff --git a/static/sass/style.scss b/static/sass/style.scss index 0923fe3ba..9e3129cc6 100644 --- a/static/sass/style.scss +++ b/static/sass/style.scss @@ -2286,7 +2286,7 @@ div.warning { } form.deletion-form { - @extend div.warning; + @extend div, .warning; border-radius: px2em( 10px ); padding: px2em( 15px );