diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2013-06-07 17:49:43 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2013-06-07 17:49:43 -0700 |
commit | 3e04bfaf8e4611cdb4a7bd10bcaca3add54cdb49 (patch) | |
tree | 959854a443be9fb3de7ecf5922c09b5578389844 | |
parent | 617cfaa9960f871ab77f981ca74de01d8850021a (diff) |
css: Add yellow colorsseparate-driver-columns
-rw-r--r-- | tasks.css | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; } |