mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
* Cleanup for iOS mode used in material variables Refactor to alpha variables for colors in the color map updated theme builder with new alpha variables updated theme builder with duplicate default CSS modes * moved alpha transform into css-var removed ion-color-alpha fixes for disabled css-variable mode added defaults for user configurable variables * revert to spinner related code
20 lines
1015 B
SCSS
20 lines
1015 B
SCSS
@import "../../themes/ionic.globals.md";
|
|
|
|
/// @prop - Slides Bullet Background color
|
|
$slides-md-bullet-background-color: $text-md-color-step-400 !default;
|
|
|
|
/// @prop - Slides Bullet Background color when Active
|
|
$slides-md-bullet-background-color-active: ion-color($colors-md, primary, base, md) !default;
|
|
|
|
/// @prop - Slides Progress indicator Background color
|
|
$slides-md-progress-background-color: css-var($text-md-color-value, text-md-color, $alpha-md-low) !default;
|
|
|
|
/// @prop - Slides Progress indicator bar Background color
|
|
$slides-md-progress-bar-background-color: ion-color($colors-md, primary, shade, md) !default;
|
|
|
|
/// @prop - Slides Scroll bar Background color
|
|
$slides-md-scroll-bar-background-color: css-var($text-md-color-value, text-md-color, $alpha-md-low) !default;
|
|
|
|
/// @prop - Slides Scroll bar drag handle Background color
|
|
$slides-md-scroll-bar-drag-background-color: css-var($text-md-color-value, text-md-color, $alpha-md-medium) !default;
|