Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-04-19 14:06:14 +0300
committerPhil Hughes <me@iamphill.com>2017-04-19 14:06:14 +0300
commit8d3b2581b8e1f3aff82fb8bf76203430fde064b3 (patch)
treec503ff30915bac9081d2e5729928ac369ca1550f /app/assets/stylesheets/pages/environments.scss
parent5d8891fb85a4646557e2f478c6c08c997868c8fb (diff)
Style improvements
Fixed an issue where the line wouldnt move when hovering over deployment
Diffstat (limited to 'app/assets/stylesheets/pages/environments.scss')
-rw-r--r--app/assets/stylesheets/pages/environments.scss16
1 files changed, 12 insertions, 4 deletions
diff --git a/app/assets/stylesheets/pages/environments.scss b/app/assets/stylesheets/pages/environments.scss
index 40905787716..30e665213b6 100644
--- a/app/assets/stylesheets/pages/environments.scss
+++ b/app/assets/stylesheets/pages/environments.scss
@@ -157,7 +157,7 @@
.prometheus-graph {
text {
- fill: #525252;
+ fill: $gl-text-color;
stroke-width: 0;
}
}
@@ -201,7 +201,7 @@
.rect-text-metric {
fill: $white-light;
stroke-width: 1;
- stroke: #e1e1e1;
+ stroke: $gray-darkest;
}
.rect-axis-text {
@@ -213,11 +213,19 @@
}
.selected-metric-line {
- stroke: #8c8c8c;
+ stroke: $gl-gray-dark;
stroke-width: 1;
}
.deployment-line {
- stroke: #000;
+ stroke: $black;
stroke-width: 2;
}
+
+.deploy-info-text {
+ dominant-baseline: text-before-edge;
+}
+
+.deploy-info-text-bold {
+ font-weight: 600;
+}