Files
Brandy Carney 7a8d5f68d2 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
2018-07-19 15:10:30 -05:00

57 lines
1.3 KiB
SCSS

@import "./loading";
@import "./loading.md.vars";
// Material Design Loading Indicator
// --------------------------------------------------
.loading-md {
font-family: $loading-md-font-family;
font-size: $loading-md-font-size;
}
.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;
background: $loading-md-background;
color: $loading-md-text-color;
box-shadow: $loading-md-box-shadow;
}
// Material Design Loading Content
// -----------------------------------------
.loading-md .loading-spinner + .loading-content {
@include margin-horizontal(16px, null);
}
// Material Design Loading Spinner fill colors
// -----------------------------------------
.loading-md .spinner-lines-md line,
.loading-md .spinner-lines-small-md line {
stroke: $loading-md-spinner-lines-color;
}
.loading-md .spinner-bubbles circle {
fill: $loading-md-spinner-bubbles-color;
}
.loading-md .spinner-circles circle {
fill: $loading-md-spinner-circles-color;
}
.loading-md .spinner-crescent circle {
stroke: $loading-md-spinner-crescent-color;
}
.loading-md .spinner-dots circle {
fill: $loading-md-spinner-dots-color;
}