summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-02 09:18:59 +0000
committerPhil Hughes <me@iamphill.com>2016-03-03 08:40:12 +0000
commit11d58825d55a046c00ac1964541f4f0da6e5faa8 (patch)
treef43bb5fe00c805fafb9cb564ca5fcf5da33bda16
parentc4b9905805add3efb747235f61fc3778048fe2bf (diff)
downloadgitlab-ce-11d58825d55a046c00ac1964541f4f0da6e5faa8.tar.gz
Moved colour values into scss variables
Fixed bold issue with headings
-rw-r--r--app/assets/stylesheets/framework/variables.scss4
-rw-r--r--app/assets/stylesheets/pages/profile.scss6
2 files changed, 7 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/variables.scss b/app/assets/stylesheets/framework/variables.scss
index ab9ddbc81a5..20babdd1d76 100644
--- a/app/assets/stylesheets/framework/variables.scss
+++ b/app/assets/stylesheets/framework/variables.scss
@@ -93,6 +93,10 @@ $border-red-light: #E52C5A;
$border-red-normal: #D22852;
$border-red-dark: #CA264F;
+$account-well-bg: #FAFAFA;
+$account-well-border: #E5E5E5;
+$account-well-radius: 3px;
+
/* header */
$light-grey-header: #faf9f9;
diff --git a/app/assets/stylesheets/pages/profile.scss b/app/assets/stylesheets/pages/profile.scss
index 1d3146c0d12..98647a8d4f0 100644
--- a/app/assets/stylesheets/pages/profile.scss
+++ b/app/assets/stylesheets/pages/profile.scss
@@ -57,9 +57,9 @@
.account-well {
padding: 10px 10px;
- background-color: #FAFAFA;
- border: 1px solid #E5E5E5;
- border-radius: 3px;
+ background-color: $account-well-bg;
+ border: 1px solid $account-well-border;
+ border-radius: $account-well-radius;
ul {
padding-left: 20px;