From e7206e2ae5212249ee62435ebfb5ebe75f6dbf44 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Mon, 20 Jul 2015 13:53:30 -0500 Subject: [PATCH] Outline --- ionic/components/app/colors.scss | 6 ++++++ ionic/components/button/button.scss | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ionic/components/app/colors.scss b/ionic/components/app/colors.scss index d960ee33b4..0147555f31 100644 --- a/ionic/components/app/colors.scss +++ b/ionic/components/app/colors.scss @@ -14,11 +14,13 @@ $colors: ( // ---------------------- primary: ( base: #387ef5, + light: #387ef5, inverse: #fff ), secondary: ( base: #32db64, + light: #32db64, inverse: #fff ), @@ -27,6 +29,7 @@ $colors: ( // ---------------------- danger: ( base: #f53d3d, + light: #f53d3d, inverse: #fff, ), @@ -35,16 +38,19 @@ $colors: ( // ---------------------- light: ( base: #fff, + light: #ddd, inverse: #444, ), stable: ( base: #f4f4f4, + light: #888, inverse: #444, ), dark: ( base: #222, + light: #222, inverse: #fff, ), diff --git a/ionic/components/button/button.scss b/ionic/components/button/button.scss index 924eb0f2e7..c5a4c19102 100644 --- a/ionic/components/button/button.scss +++ b/ionic/components/button/button.scss @@ -261,7 +261,8 @@ a[button] { color: $fg-color; &.activated { - background-color: rgba(red($fg-color), green($fg-color), blue($fg-color), 0.15); + color: white; + background-color: rgb(red($fg-color), green($fg-color), blue($fg-color));//, 0.15); } } } @@ -279,7 +280,7 @@ a[button] { @include button-clear(get-color($color, base)); - @include button-outline(get-color($color, base)); + @include button-outline(get-color($color, light)); } }