summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/projects.css.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/projects.css.scss')
-rw-r--r--app/assets/stylesheets/projects.css.scss34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/assets/stylesheets/projects.css.scss b/app/assets/stylesheets/projects.css.scss
index 8caa2810e78..3e7633a6ae2 100644
--- a/app/assets/stylesheets/projects.css.scss
+++ b/app/assets/stylesheets/projects.css.scss
@@ -647,3 +647,37 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
background: none repeat scroll 0 0 #FFBBBB
}
}
+
+.tag {
+ @include round-borders-all(4px);
+ padding:2px 4px;
+ border:none;
+
+ &.high {
+ background: #D12F19;
+ color:white;
+ }
+
+ &.today {
+ background: #44aa22;
+ color:white;
+ }
+
+ &.yours {
+ background: #4466cc;
+ color:white;
+ }
+ &.notes {
+ background: #2c5c66;
+ color:white;
+ }
+}
+
+#issues-table .issue {
+ &.critical {
+ td {
+ //background: #D12F19;
+ //color:#fff;
+ }
+ }
+}