mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
refactor(sass): tweaks to the alpha css variables (#14223)
* alpha tweaks * added alpha-input cleanup for theme-builder * removed global variables * style(searchbar): fix indentation closes #14196
This commit is contained in:

committed by
Brandy Carney

parent
7887550166
commit
6c6f867ce4
@ -18,8 +18,11 @@ $picker-ios-background-color: $background-ios-color !default
|
||||
/// @prop - Top Background Color of the picker wrapper gradient
|
||||
$picker-ios-top-background-color: $picker-ios-background-color !default;
|
||||
|
||||
/// @prop - Bottom Background Color alpha of the picker wrapper gradient
|
||||
$picker-ios-bottom-background-color-alpha: .8 !default;
|
||||
|
||||
/// @prop - Bottom Background Color of the picker wrapper gradient
|
||||
$picker-ios-bottom-background-color: css-var($background-ios-color-value, background-ios-color, $alpha-ios-high) !default;
|
||||
$picker-ios-bottom-background-color: css-var($background-ios-color-value, background-ios-color, $picker-ios-bottom-background-color-alpha) !default;
|
||||
|
||||
/// @prop - Height of the picker toolbar
|
||||
$picker-ios-toolbar-height: 44px !default;
|
||||
|
@ -18,8 +18,11 @@ $picker-md-background-color: $background-md-color !defaul
|
||||
/// @prop - Top Background Color of the picker wrapper gradient
|
||||
$picker-md-top-background-color: $picker-md-background-color !default;
|
||||
|
||||
/// @prop - Bottom Background Color alpha of the picker wrapper gradient
|
||||
$picker-md-bottom-background-color-alpha: .8 !default;
|
||||
|
||||
/// @prop - Bottom Background Color of the picker wrapper gradient
|
||||
$picker-md-bottom-background-color: css-var($background-md-color-value, background-md-color, $alpha-md-high) !default;
|
||||
$picker-md-bottom-background-color: css-var($background-md-color-value, background-md-color, $picker-md-bottom-background-color-alpha) !default;
|
||||
|
||||
/// @prop - Height of the picker toolbar
|
||||
$picker-md-toolbar-height: 44px !default;
|
||||
|
Reference in New Issue
Block a user