summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-06-07 17:49:43 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-06-07 17:49:43 -0700
commit3e04bfaf8e4611cdb4a7bd10bcaca3add54cdb49 (patch)
tree959854a443be9fb3de7ecf5922c09b5578389844
parent617cfaa9960f871ab77f981ca74de01d8850021a (diff)
css: Add yellow colorsseparate-driver-columns
-rw-r--r--tasks.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/tasks.css b/tasks.css
index 57994f5..9b8c866 100644
--- a/tasks.css
+++ b/tasks.css
@@ -89,11 +89,18 @@ div.table > * > span:nth-child(2) {
div.table > *:nth-child(odd) { background-color: #f0f0f0 }
div.table > *:nth-child(even) { background-color: #e0e0e0 }
+/* Green */
div.table > *:nth-child(odd) > .done { background-color: #e6f9e6; }
div.table > *:nth-child(even) > .done { background-color: #cef1ce; }
+/* Yellow */
+div.table > *:nth-child(odd) > .partial { background-color: #fef8e2; }
+div.table > *:nth-child(even) > .partial { background-color: #fbefc5; }
+
+/* Red */
div.table > *:nth-child(odd) > .missing { background-color: #f9e6e6; }
div.table > *:nth-child(even) > .missing { background-color: #f1cece; }
+
b {
font-weight: bold;
}