mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
- updates components to use shadow DOM or scoped if they require css variables - moves global styles to an external stylesheet that needs to be imported - adds support for additional colors and removes the Sass loops to generate colors for each component - several property renames, bug fixes, and test updates Co-authored-by: Manu Mtz.-Almeida <manu.mtza@gmail.com> Co-authored-by: Adam Bradley <adambradley25@gmail.com> Co-authored-by: Cam Wiegert <cam@camwiegert.com>
62 lines
2.3 KiB
SCSS
62 lines
2.3 KiB
SCSS
@import "../../themes/ionic.globals.md";
|
|
|
|
// Material Design Loading Indicator
|
|
// --------------------------------------------------
|
|
|
|
/// @prop - Font family of the loading wrapper
|
|
$loading-md-font-family: $font-family-base !default;
|
|
|
|
/// @prop - Font size of the loading wrapper
|
|
$loading-md-font-size: 14px !default;
|
|
|
|
/// @prop - Padding top of the loading wrapper
|
|
$loading-md-padding-top: 24px !default;
|
|
|
|
/// @prop - Padding end of the loading wrapper
|
|
$loading-md-padding-end: $loading-md-padding-top !default;
|
|
|
|
/// @prop - Padding bottom of the loading wrapper
|
|
$loading-md-padding-bottom: $loading-md-padding-top !default;
|
|
|
|
/// @prop - Padding start of the loading wrapper
|
|
$loading-md-padding-start: $loading-md-padding-end !default;
|
|
|
|
/// @prop - Max width of the loading wrapper
|
|
$loading-md-max-width: 280px !default;
|
|
|
|
/// @prop - Maximum height of the loading wrapper
|
|
$loading-md-max-height: 90% !default;
|
|
|
|
/// @prop - Border radius of the loading wrapper
|
|
$loading-md-border-radius: 2px !default;
|
|
|
|
/// @prop - Text color of the loading wrapper
|
|
$loading-md-text-color: $text-color-step-150 !default;
|
|
|
|
/// @prop - Background of the loading wrapper
|
|
$loading-md-background: $background-color-step-50 !default;
|
|
|
|
/// @prop - Box shadow color of the loading wrapper
|
|
$loading-md-box-shadow-color: rgba(0, 0, 0, .4) !default;
|
|
|
|
/// @prop - Box shadow of the loading wrapper
|
|
$loading-md-box-shadow: 0 16px 20px $loading-md-box-shadow-color !default;
|
|
|
|
/// @prop - Color of the loading spinner
|
|
$loading-md-spinner-color: ion-color(primary, base) !default;
|
|
|
|
/// @prop - Color of the lines loading spinner
|
|
$loading-md-spinner-lines-color: $loading-md-spinner-color !default;
|
|
|
|
/// @prop - Color of the bubbles loading spinner
|
|
$loading-md-spinner-bubbles-color: $loading-md-spinner-color !default;
|
|
|
|
/// @prop - Color of the circles loading spinner
|
|
$loading-md-spinner-circles-color: $loading-md-spinner-color !default;
|
|
|
|
/// @prop - Color of the crescent loading spinner
|
|
$loading-md-spinner-crescent-color: $loading-md-spinner-color !default;
|
|
|
|
/// @prop - Color of the dots loading spinner
|
|
$loading-md-spinner-dots-color: $loading-md-spinner-color !default;
|