summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-12 22:42:13 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-12 22:42:13 -0800
commit05b4a93126b9fb3b0846ff1cc44c65bc360aec26 (patch)
treea3d6a8bb42a40d32e361b61cfe98fe2ab9ee0505 /app/assets
parentf2ccfd9acf2af43c2ae4d700cc9ea0cf69df57fc (diff)
downloadgitlab-ci-05b4a93126b9fb3b0846ff1cc44c65bc360aec26.tar.gz
Set runner tags via admin area
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/application.scss1
-rw-r--r--app/assets/stylesheets/sections/runners.scss12
2 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index b0cf649..1dd5da5 100644
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -43,6 +43,7 @@
@import "sections/projects.scss";
@import "sections/builds.scss";
@import "sections/login.scss";
+@import "sections/runners.scss";
/*
* NProgress
diff --git a/app/assets/stylesheets/sections/runners.scss b/app/assets/stylesheets/sections/runners.scss
new file mode 100644
index 0000000..abf450d
--- /dev/null
+++ b/app/assets/stylesheets/sections/runners.scss
@@ -0,0 +1,12 @@
+.runner-state {
+ padding: 6px 12px;
+ margin-right: 10px;
+ color: #FFF;
+
+ &.runner-state-shared {
+ background: #32b186;
+ }
+ &.runner-state-specific {
+ background: #3286b1;
+ }
+}