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:
authorSam Rose <samrose3@gmail.com>2016-11-30 16:25:25 +0300
committerSam Rose <samrose3@gmail.com>2016-12-02 04:22:51 +0300
commitd6d22a5dbd2ee04b59b2a80b3b6228575c3ea3ec (patch)
tree4a9d214e6877c9432494d12532072a0e6432ea57 /app/assets/stylesheets/pages/runners.scss
parent994530270899ae904fbf5a77b602990b8cd79c67 (diff)
Enable ColorVariable in scss-lint
Diffstat (limited to 'app/assets/stylesheets/pages/runners.scss')
-rw-r--r--app/assets/stylesheets/pages/runners.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/assets/stylesheets/pages/runners.scss b/app/assets/stylesheets/pages/runners.scss
index 7b3878c91df..9b6ff237557 100644
--- a/app/assets/stylesheets/pages/runners.scss
+++ b/app/assets/stylesheets/pages/runners.scss
@@ -1,27 +1,27 @@
.runner-state {
padding: 6px 12px;
margin-right: 10px;
- color: #fff;
+ color: $white-light;
&.runner-state-shared {
- background: #32b186;
+ background: $runner-state-shared-bg;
}
&.runner-state-specific {
- background: #3498db;
+ background: $runner-state-specific-bg;
}
}
.runner-status-online {
- color: green;
+ color: $runner-status-online-color;
}
.runner-status-offline {
- color: gray;
+ color: $runner-status-offline-color;
}
.runner-status-paused {
- color: red;
+ color: $runner-status-paused-color;
}
.runner {