From 36aad293b992e999b77e7145f0c6f36b7b02eaeb Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Wed, 2 Mar 2016 10:12:37 +0000 Subject: [PATCH] Fixed heading bold Button transparent colours --- app/assets/stylesheets/framework/buttons.scss | 13 +++++++++++++ app/assets/stylesheets/framework/variables.scss | 2 ++ 2 files changed, 15 insertions(+) diff --git a/app/assets/stylesheets/framework/buttons.scss b/app/assets/stylesheets/framework/buttons.scss index 50aa170d24c..8d475137b03 100644 --- a/app/assets/stylesheets/framework/buttons.scss +++ b/app/assets/stylesheets/framework/buttons.scss @@ -143,6 +143,19 @@ } } +.btn-transparent { + color: $btn-transparent-color; + background-color: transparent; + border: 0; + + &:hover, + &:active, + &:focus { + background-color: transparent; + box-shadow: none; + } +} + .btn-block { width: 100%; margin: 0; diff --git a/app/assets/stylesheets/framework/variables.scss b/app/assets/stylesheets/framework/variables.scss index 0586bab68ec..375726d7191 100644 --- a/app/assets/stylesheets/framework/variables.scss +++ b/app/assets/stylesheets/framework/variables.scss @@ -36,6 +36,8 @@ $list-title-color: #333333; $list-text-color: #555555; $profile-settings-link-color: $md-link-color; +$btn-transparent-color: #8F8F8F; + /* * Color schema */