From 2b061d9a02c7bbe2ccd281a194e18ab83e9a0694 Mon Sep 17 00:00:00 2001 From: mhartington Date: Mon, 19 Oct 2015 13:02:41 -0400 Subject: [PATCH] fix(actionSheet): make destructive button red Closes #315 --- ionic/components/action-sheet/modes/ios.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ionic/components/action-sheet/modes/ios.scss b/ionic/components/action-sheet/modes/ios.scss index ae9cc212ae..b01790a589 100644 --- a/ionic/components/action-sheet/modes/ios.scss +++ b/ionic/components/action-sheet/modes/ios.scss @@ -17,6 +17,7 @@ $action-sheet-ios-button-text-color: #007aff !default; $action-sheet-ios-button-font-size: 2rem !default; $action-sheet-ios-background-active-color: #e9e9e9 !default; +$action-sheet-ios-destructive-button-text-color: #f53d3d; $action-sheet-ios-icon-font-size: 1.4em !default; @@ -107,3 +108,7 @@ ion-action-sheet button { border-bottom-width: 0.55px; } } + +.action-sheet-destructive{ + color: $action-sheet-ios-destructive-button-text-color; +}