summaryrefslogtreecommitdiff
path: root/source4/selftest/output/testresults.css
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-08-26 16:56:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:02:35 -0500
commit3f6cf9672ba1d25f10cbd0bb8ce1525c592a8e78 (patch)
tree7ba5e28b6b773414a831e175d8eab017b897baca /source4/selftest/output/testresults.css
parentec180e2475bbdac03a3030f700d243799a4532a4 (diff)
downloadsamba-3f6cf9672ba1d25f10cbd0bb8ce1525c592a8e78.tar.gz
samba-3f6cf9672ba1d25f10cbd0bb8ce1525c592a8e78.tar.bz2
samba-3f6cf9672ba1d25f10cbd0bb8ce1525c592a8e78.zip
r24669: Add CSS to the test run HTML output. See http://samba.org/~jelmer/ for an
example of the current output. (This used to be commit 1e57394e865a9122bddb3413088a19d4f57a3e3d)
Diffstat (limited to 'source4/selftest/output/testresults.css')
-rw-r--r--source4/selftest/output/testresults.css92
1 files changed, 92 insertions, 0 deletions
diff --git a/source4/selftest/output/testresults.css b/source4/selftest/output/testresults.css
new file mode 100644
index 0000000000..b37f881f20
--- /dev/null
+++ b/source4/selftest/output/testresults.css
@@ -0,0 +1,92 @@
+/* Stylesheet for Samba test results.
+ *
+ * Partially based on the CSS file from lcov.
+ */
+
+/* All views: main title format */
+td.title
+{
+ text-align: center;
+ padding-bottom: 10px;
+ font-family: sans-serif;
+ font-size: 20pt;
+ font-style: italic;
+ font-weight: bold;
+}
+
+/* Index table headers */
+td.tableHead
+{
+ text-align: center;
+ color: #FFFFFF;
+ background-color: #6688D4;
+ font-family: sans-serif;
+ font-size: 120%;
+ font-weight: bold;
+}
+
+/* Testsuite names */
+td.testSuite
+{
+ text-align: left;
+ padding-left: 10px;
+ padding-right: 20px;
+ color: #284FA8;
+ background-color: #DAE7FE;
+ font-family: monospace;
+}
+
+/* Successful */
+td.resultOk
+{
+ text-align: right;
+ padding-left: 10px;
+ padding-right: 10px;
+ background-color: #A7FC9D;
+ font-weight: bold;
+}
+
+/* Failure */
+td.resultFailure
+{
+ text-align: right;
+ padding-left: 10px;
+ padding-right: 10px;
+ background-color: #FF0000;
+ font-weight: bold;
+}
+
+/* Skipped */
+td.resultSkipped
+{
+ text-align: right;
+ padding-left: 10px;
+ padding-right: 10px;
+ background-color: #FFEA20;
+ font-weight: bold;
+}
+
+td.duration
+{
+ text-align: right;
+}
+
+td.durationSkipped
+{
+ text-align: right;
+}
+
+td.outputSkipped
+{
+ background-color: #FFEA20;
+}
+
+td.outputOk
+{
+ background-color: #A7FC9D;
+}
+
+td.outputFailure
+{
+ background-color: #FF0000;
+}