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:
Ross Gerbasi
2018-03-30 09:27:58 -05:00
committed by Brandy Carney
parent 7887550166
commit 6c6f867ce4
39 changed files with 725 additions and 691 deletions

View File

@ -18,5 +18,5 @@
.scroll-ios hr {
height: $hairlines-width;
background-color: css-var($background-ios-color-value, background-ios-color, $alpha-ios-low);
background-color: css-var($background-ios-color-value, background-ios-color, $content-ios-horizontal-rule-background-color-alpha);
}

View File

@ -4,7 +4,10 @@
// --------------------------------------------------
/// @prop - Font family of the content
$content-ios-font-family: $font-family-ios-base !default;
$content-ios-font-family: $font-family-ios-base !default;
/// @prop - Background color of the outer content
$content-ios-outer-background: $background-ios-color-step-50 !default;
$content-ios-outer-background: $background-ios-color-step-50 !default;
/// @prop - Alpha for the Horizontal Rule
$content-ios-horizontal-rule-background-color-alpha: .25 !default;