-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(back-button): apply the proper color to the back button
fixes #14177
- Loading branch information
1 parent
a737323
commit 7d2de18
Showing
4 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
@import "../../themes/ionic.globals.ios"; | ||
|
||
// iOS Back Button | ||
// -------------------------------------------------- | ||
|
||
$back-button-ios-button-z-index: $z-index-toolbar-buttons !default; | ||
/// @prop - Z index of the back button | ||
$back-button-ios-button-z-index: $z-index-toolbar-buttons !default; | ||
|
||
/// @prop - Text color of the back button | ||
$back-button-ios-color: $toolbar-ios-text-color !default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@import "../../themes/ionic.globals.md"; | ||
|
||
// Material Design Back Button | ||
// -------------------------------------------------- | ||
|
||
/// @prop - Text color of the back button | ||
$back-button-md-color: $toolbar-md-text-color !default; |