Skip to content

Commit ae5f3d7

Browse files
committed
fix errors in our scss files
1 parent dccb9d2 commit ae5f3d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

static/sass/_layout.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
$bordertop: lighten( $this-color, 38% );
267267

268268
.#{nth($names, $i)}-navigation {
269-
@include vertical-gradient( $this-color, adjust-lightness( $this-color, -8 ), 30%, 95% );
269+
@include vertical-gradient( $this-color, adjust-color( $this-color, $lightness: -8 ), 30%, 95% );
270270
border-top: 1px solid lighten($this-color, 15%);
271271
border-bottom: 1px solid darken($this-color, 25%);
272272

@@ -816,7 +816,7 @@
816816
//float: left;
817817
//margin-top: .5em;
818818
}
819-
/* ! This is done the wrong way with SASS. Should be something like \#{$form-text-inputs} with $form-text-inputs as a variable */
819+
/* ! This is done the wrong way with SASS. Should be something like \#{\$form-text-inputs} with \$form-text-inputs as a variable */
820820
@include input_text_types() {
821821
width: 75%;
822822
display: inline-block;

static/sass/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@ div.warning {
22862286
}
22872287

22882288
form.deletion-form {
2289-
@extend div.warning;
2289+
@extend div, .warning;
22902290

22912291
border-radius: px2em( 10px );
22922292
padding: px2em( 15px );

0 commit comments

Comments
 (0)