mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: N/A --------- ## What is the current behavior? Currently, every Sass variable in Ionic has the `!default` flag added to the end. From the [Sass variables documentation](https://sass-lang.com/documentation/variables/): > Normally when you assign a value to a variable, if that variable already had a value, its old value is overwritten. But if you’re writing a Sass library, you might want to allow your users to configure your library’s variables before you use them to generate CSS. > > To make this possible, Sass provides the `!default` flag. This assigns a value to a variable only if that variable isn’t defined or its value is [null](https://sass-lang.com/documentation/values/null). Otherwise, the existing value will be used. In past versions of Ionic Framework, developers wrote Sass variables to rebuild Ionic Framework using their own values. In the latest versions of Ionic Framework, this is not possible. ## What is the new behavior? Removes the `!default` flag from all Sass variables. ## Does this introduce a breaking change? - [ ] Yes - [x] No ------- Co-authored-by: brandyscarney <brandyscarney@users.noreply.github.com>
71 lines
1.7 KiB
SCSS
71 lines
1.7 KiB
SCSS
|
|
// Global Utility Functions
|
|
@import "./ionic.functions.string";
|
|
|
|
// Global Color Functions
|
|
@import "./ionic.functions.color";
|
|
|
|
// Global Font Functions
|
|
@import "./ionic.functions.font";
|
|
|
|
// Global Mixins
|
|
@import "./ionic.mixins";
|
|
|
|
// Default Theme
|
|
@import "./ionic.theme.default";
|
|
|
|
|
|
// Default General
|
|
// --------------------------------------------------
|
|
$font-family-base: var(--ion-font-family, inherit);
|
|
|
|
// Hairlines width
|
|
$hairlines-width: .55px;
|
|
|
|
// The minimum dimensions at which your layout will change,
|
|
// adapting to different screen sizes, for use in media queries
|
|
$screen-breakpoints: (
|
|
xs: 0,
|
|
sm: 576px,
|
|
md: 768px,
|
|
lg: 992px,
|
|
xl: 1200px
|
|
);
|
|
|
|
// Input placeholder opacity
|
|
// Ensures that the placeholder has the
|
|
// correct color contrast against the background.
|
|
$placeholder-opacity: var(--ion-placeholder-opacity, 0.6);
|
|
|
|
$form-control-label-margin: 16px;
|
|
|
|
// How much the stacked labels should be scaled by
|
|
/// The value 0.75 is used to match the MD spec.
|
|
/// iOS does not have a floating label design spec, so we standardize on 0.75.
|
|
$form-control-label-stacked-scale: 0.75;
|
|
|
|
|
|
// Z-Index
|
|
// --------------------------------------------------
|
|
// Grouped by elements which would be siblings
|
|
|
|
$z-index-menu-overlay: 1000;
|
|
$z-index-overlay: 1001;
|
|
|
|
$z-index-fixed-content: 999;
|
|
$z-index-refresher: -1;
|
|
|
|
$z-index-page-container: 0;
|
|
$z-index-toolbar: 10;
|
|
$z-index-toolbar-background: -1;
|
|
$z-index-toolbar-buttons: 99;
|
|
|
|
$z-index-backdrop: 2;
|
|
$z-index-overlay-wrapper: 10;
|
|
|
|
$z-index-item-options: 1;
|
|
$z-index-item-input: 2;
|
|
$z-index-item-divider: 100;
|
|
|
|
$z-index-reorder-selected: 100;
|