summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-03-25 15:55:43 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2015-05-04 17:30:48 -0700
commite62cfdac4935983024e93ce0464cbf16dae4c62b (patch)
treebde7081c5c6e0bc4553a9875697cc82890cb2b42 /templates
parent03e642b3d92b221614017e588ff9c63d6f67d768 (diff)
framework: add incomplete status.
This will be used later in this series This status has a background color of purple in the html summary, and is considered the worst status. My logic for making it the worst status is as follows: basically we always want this to show up as a regression, because it's a very unusual status (only available when piglit is aborted or when the whole system goes down). v2: - use white text instead of black, it makes things infinitely more readable Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Mark Janes <mark.a.janes@intel.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.css9
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/index.css b/templates/index.css
index 3389738ab..42cea8864 100644
--- a/templates/index.css
+++ b/templates/index.css
@@ -36,15 +36,15 @@ td:first-child > div {
background-color: #c8c838
}
-td.skip, td.warn, td.fail, td.pass, td.trap, td.abort, td.crash, td.dmesg-warn, td.dmesg-fail, td.timeout {
+td.skip, td.warn, td.fail, td.pass, td.trap, td.abort, td.crash, td.dmesg-warn, td.dmesg-fail, td.timeout, td.incomplete {
text-align: right;
}
-td.trap, td.abort, td.crash {
+td.trap, td.abort, td.crash, td.incomplete {
color: #ffffff;
}
-td.trap a, td.abort a, td.crash a {
+td.trap a, td.abort a, td.crash a, td.incomplete a {
color: #ffffff;
}
@@ -76,3 +76,6 @@ tr:nth-child(odd) td.abort { background-color: #111111; }
tr:nth-child(even) td.abort { background-color: #000000; }
tr:nth-child(odd) td.crash { background-color: #111111; }
tr:nth-child(even) td.crash { background-color: #000000; }
+
+tr:nth-child(odd) td.incomplete { background-color: #853385; }
+tr:nth-child(even) td.incomplete { background-color: #351435; }