mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
- remove scss-lint and sass-lint - add stylelint and stylelint-order packages and configuration - update all *.scss files to new syntax fixes #14805
68 lines
1.6 KiB
SCSS
68 lines
1.6 KiB
SCSS
@import "./loading";
|
|
@import "./loading.ios.vars";
|
|
|
|
// iOS Loading Indicator
|
|
// --------------------------------------------------
|
|
|
|
.loading-ios {
|
|
font-family: $loading-ios-font-family;
|
|
font-size: $loading-ios-font-size;
|
|
}
|
|
|
|
.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;
|
|
|
|
background-color: $loading-ios-background-color;
|
|
color: $loading-ios-text-color;
|
|
}
|
|
|
|
|
|
// iOS Translucent Loading
|
|
// -----------------------------------------
|
|
|
|
.loading-translucent-ios .loading-wrapper {
|
|
background-color: $loading-ios-translucent-background-color;
|
|
backdrop-filter: $loading-ios-translucent-filter;
|
|
}
|
|
|
|
|
|
// iOS Loading Content
|
|
// -----------------------------------------
|
|
|
|
.loading-ios .loading-content {
|
|
font-weight: $loading-ios-content-font-weight;
|
|
}
|
|
|
|
.loading-ios .loading-spinner + .loading-content {
|
|
@include margin-horizontal(16px, null);
|
|
}
|
|
|
|
|
|
// iOS Loading Spinner fill colors
|
|
// -----------------------------------------
|
|
|
|
.loading-ios .spinner-lines-ios line,
|
|
.loading-ios .spinner-lines-small-ios line {
|
|
stroke: $loading-ios-spinner-lines-color;
|
|
}
|
|
|
|
.loading-ios .spinner-bubbles circle {
|
|
fill: $loading-ios-spinner-bubbles-color;
|
|
}
|
|
|
|
.loading-ios .spinner-circles circle {
|
|
fill: $loading-ios-spinner-circles-color;
|
|
}
|
|
|
|
.loading-ios .spinner-crescent circle {
|
|
stroke: $loading-ios-spinner-crescent-color;
|
|
}
|
|
|
|
.loading-ios .spinner-dots circle {
|
|
fill: $loading-ios-spinner-dots-color;
|
|
}
|