summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Johnson <bryce@gitlab.com>2017-01-13 15:35:24 -0500
committerRuben Davila <rdavila84@gmail.com>2017-01-15 11:10:04 -0500
commit63b36241945a7f9bb280f360b3b269de8c5be8f6 (patch)
tree3eff19f15c683eb6a815622c741edc29ad8f8c44
parent09a6141685ea0439c10377498046eaa0b036bae6 (diff)
downloadgitlab-ce-backport-time-tracking-ce.tar.gz
Fix scss variable refs.backport-time-tracking-ce
-rw-r--r--app/assets/stylesheets/framework/variables.scss1
-rw-r--r--app/assets/stylesheets/pages/issuable.scss6
2 files changed, 4 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/variables.scss b/app/assets/stylesheets/framework/variables.scss
index ee1c95fd373..3f95846522b 100644
--- a/app/assets/stylesheets/framework/variables.scss
+++ b/app/assets/stylesheets/framework/variables.scss
@@ -429,6 +429,7 @@ $help-shortcut-header-color: #333;
*/
$issues-today-bg: #f3fff2;
$issues-today-border: #e1e8d5;
+$compare-display-color: #888;
/*
* jQuery UI
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index c9014ac2906..1825c44e090 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -488,7 +488,7 @@
}
&:hover svg {
- fill: $gl-gray;
+ fill: $gl-text-color;
}
}
@@ -535,10 +535,10 @@
.compare-display {
font-size: 13px;
- color: $gl-gray-light;
+ color: $compare-display-color;
.compare-value {
- color: $gl-gray;
+ color: $gl-text-color;
}
}
}