chore(stylelint): remove sass-lint/scss-lint in favor of stylelint

- remove scss-lint and sass-lint
- add stylelint and stylelint-order packages and configuration
- update all *.scss files to new syntax

fixes #14805
This commit is contained in:
Brandy Carney
2018-07-19 16:10:30 -04:00
committed by Cam Wiegert
parent 771c47f109
commit 7a8d5f68d2
192 changed files with 1262 additions and 1464 deletions

View File

@ -33,17 +33,19 @@
height: $picker-md-button-height;
background: $picker-md-button-background-color;
color: $picker-md-button-text-color;
font-size: $picker-md-button-font-size;
font-weight: 500;
text-transform: uppercase;
color: $picker-md-button-text-color;
background: $picker-md-button-background-color;
box-shadow: none;
}
.picker-md .picker-columns {
height: $picker-md-height - $picker-md-toolbar-height;
perspective: 1800px;
}
@ -58,12 +60,13 @@
.picker-md .picker-opts {
top: $picker-md-option-offset-y;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
transform-style: preserve-3d;
color: $picker-md-option-text-color;
transform-style: preserve-3d;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
pointer-events: none;
}
@ -74,23 +77,21 @@
height: 43px;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
color: $picker-md-option-text-color;
transition-timing-function: ease-out;
background: transparent;
color: $picker-md-option-text-color;
transition-timing-function: ease-out;
font-size: $picker-md-option-font-size;
line-height: $picker-md-option-height;
backface-visibility: hidden;
pointer-events: auto;
}
.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opt.picker-opt-selected {
color: $picker-md-option-selected-color;
}
@ -99,7 +100,6 @@
@include transform(translate3d(0, 0, 90px));
position: absolute;
z-index: 10;
width: 100%;
height: $picker-md-option-offset-y + 4px;
@ -109,6 +109,8 @@
background: linear-gradient(to bottom,
$picker-md-top-background-color 20%,
$picker-md-bottom-background-color 100%);
z-index: 10;
}
.picker-md .picker-below-highlight {
@ -116,7 +118,6 @@
@include transform(translate3d(0, 0, 90px));
position: absolute;
z-index: 11;
width: 100%;
height: $picker-md-option-offset-y + $picker-md-option-height;
@ -126,4 +127,6 @@
background: linear-gradient(to top,
$picker-md-top-background-color 30%,
$picker-md-bottom-background-color 100%);
z-index: 11;
}