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

@ -11,14 +11,13 @@
.loading-ios .loading-wrapper {
@include border-radius($loading-ios-border-radius);
@include padding($loading-ios-padding-top, $loading-ios-padding-end, $loading-ios-padding-bottom, $loading-ios-padding-start);
max-width: $loading-ios-max-width;
max-height: $loading-ios-max-height;
color: $loading-ios-text-color;
background-color: $loading-ios-background-color;
color: $loading-ios-text-color;
}
@ -27,7 +26,6 @@
.loading-translucent-ios .loading-wrapper {
background-color: $loading-ios-translucent-background-color;
backdrop-filter: $loading-ios-translucent-filter;
}

View File

@ -11,14 +11,13 @@
.loading-md .loading-wrapper {
@include border-radius($loading-md-border-radius);
@include padding($loading-md-padding-top, $loading-md-padding-end, $loading-md-padding-bottom, $loading-md-padding-start);
max-width: $loading-md-max-width;
max-height: $loading-md-max-height;
color: $loading-md-text-color;
background: $loading-md-background;
color: $loading-md-text-color;
box-shadow: $loading-md-box-shadow;
}

View File

@ -7,17 +7,15 @@ ion-loading {
@include font-smoothing();
@include position(0, 0, 0, 0);
position: fixed;
z-index: $z-index-overlay;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
touch-action: none;
contain: strict;
touch-action: none;
z-index: $z-index-overlay;
}
ion-loading-controller {
@ -25,10 +23,10 @@ ion-loading-controller {
}
.loading-wrapper {
z-index: $z-index-overlay-wrapper;
display: flex;
align-items: center;
opacity: 0;
z-index: $z-index-overlay-wrapper;
}