summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-02 10:12:37 +0000
committerRobert Speicher <rspeicher@gmail.com>2016-03-03 16:13:55 -0500
commit36aad293b992e999b77e7145f0c6f36b7b02eaeb (patch)
treec452034b2db6124d69cc99e9ac4611dfb3721e9f
parent1d4418bc5feb0f3ac2ac2f1a468e4c5b92f7b518 (diff)
downloadgitlab-ce-36aad293b992e999b77e7145f0c6f36b7b02eaeb.tar.gz
Fixed heading bold
Button transparent colours
-rw-r--r--app/assets/stylesheets/framework/buttons.scss13
-rw-r--r--app/assets/stylesheets/framework/variables.scss2
2 files changed, 15 insertions, 0 deletions
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
*/