Commit 8f39562 1 parent 19f5eeb commit 8f39562 Copy full SHA for 8f39562
File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ $table-stack-breakpoint: medium !default;
246
246
}
247
247
248
248
// Darkens the odd striped table rows.
249
- @elseif ($table-stripe == odd) {
249
+ @else if ($table-stripe == odd) {
250
250
& :not (.unstriped ) tr :nth-of-type (odd ):hover {
251
251
background-color : $table-row-stripe-hover ;
252
252
}
@@ -262,7 +262,7 @@ $table-stack-breakpoint: medium !default;
262
262
}
263
263
264
264
// Darkens the odd striped table rows.
265
- @elseif ($table-stripe == odd) {
265
+ @else if ($table-stripe == odd) {
266
266
& .striped tr :nth-of-type (odd ):hover {
267
267
background-color : $table-row-stripe-hover ;
268
268
}
Original file line number Diff line number Diff line change 26
26
}
27
27
28
28
// Parsing "n of n" or "n/n" expressions
29
- @elseif type-of ($size ) == ' list' {
29
+ @else if type-of ($size ) == ' list' {
30
30
@if length ($size ) != 3 {
31
31
@error ' Wrong syntax for xy-cell-size(). Use the format "n of n" or "n/n".' ;
32
32
}
52
52
min-height : 0px ;
53
53
min-width : 0px ;
54
54
}
55
- @elseif ($size == ' auto' ) {
55
+ @else if ($size == ' auto' ) {
56
56
flex : 1 1 0px ; // sass-lint:disable-line zero-unit
57
57
}
58
- @elseif ($size == ' shrink' ) {
58
+ @else if ($size == ' shrink' ) {
59
59
flex : 0 0 auto ;
60
60
}
61
- @elseif ($size == ' grow' ) {
61
+ @else if ($size == ' grow' ) {
62
62
flex : 1 0 auto ;
63
63
}
64
64
}
79
79
$val : if ($margin-gutter == 0 , 100% , calc (100% - #{rem-calc ($margin-gutter )} ));
80
80
#{$direction } : $val ;
81
81
}
82
- @elseif ($size == ' auto' ) {
82
+ @else if ($size == ' auto' ) {
83
83
#{$direction } : auto ;
84
84
$val : if ($margin-gutter == 0 , 100% , calc (100% - #{rem-calc ($margin-gutter )} ));
85
85
}
86
- @elseif ($size == ' shrink' ) {
86
+ @else if ($size == ' shrink' ) {
87
87
#{$direction } : auto ;
88
88
}
89
89
@else {
Original file line number Diff line number Diff line change 34
34
}
35
35
}
36
36
}
37
- @elseif (type-of ($gutters ) == ' number' ) {
37
+ @else if (type-of ($gutters ) == ' number' ) {
38
38
$gutter : rem-calc ($gutters ) / 2 ;
39
39
40
40
// Loop through each gutter position
You can’t perform that action at this time.
0 commit comments