summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-03 13:29:31 -0500
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-03 13:29:31 -0500
commit2a1d701bc6403d0038ba16f2f0e2e185b8415bb1 (patch)
tree7ec1c5d14825351bf3dc8b5262732955a475f614 /app/assets
parent651bdd7c34c9ebf686b8357d8fc3ca4d0a58792e (diff)
downloadgitlab-ce-2a1d701bc6403d0038ba16f2f0e2e185b8415bb1.tar.gz
Add new icon for skipped builds; show created state in mini graph
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/pages/icons.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/icons.scss b/app/assets/stylesheets/pages/icons.scss
new file mode 100644
index 00000000000..b7791ae9f37
--- /dev/null
+++ b/app/assets/stylesheets/pages/icons.scss
@@ -0,0 +1,12 @@
+// CI icon colors
+
+.ci-status-icon {
+ &-created g {
+ fill: $gray-darkest;
+ }
+
+ &-skipped g,
+ &-canceled g {
+ fill: $gl-text-color;
+ }
+}