summaryrefslogtreecommitdiff
path: root/tools/buildbot/master/public_html/buildbot.css
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildbot/master/public_html/buildbot.css')
-rw-r--r--tools/buildbot/master/public_html/buildbot.css68
1 files changed, 68 insertions, 0 deletions
diff --git a/tools/buildbot/master/public_html/buildbot.css b/tools/buildbot/master/public_html/buildbot.css
new file mode 100644
index 0000000..edf51f9
--- /dev/null
+++ b/tools/buildbot/master/public_html/buildbot.css
@@ -0,0 +1,68 @@
+/* Copied from buildbot.ethereal.com. Thanks! */
+
+* {
+ font-family: verdana, arial, helvetica, sans-serif;
+ font-size: 12px;
+ font-weight: bold;
+}
+
+a:link,a:visited,a:active {
+ color: #333;
+}
+a:hover {
+ color: #999;
+}
+
+.table {
+ border-spacing: 2px;
+}
+
+td.Project {
+ color: #000;
+ border: 1px solid #666666;
+ background-color: #fff;
+}
+
+td.Event, td.Activity, td.Time, td.Builder {
+/* color: #333333; */
+ border: 1px solid #666666;
+ background-color: #eee;
+ font-weight: normal;
+}
+
+td.Change {
+ color: #fff;
+ border: 1px solid #666666;
+ background-color: #aaf;
+}
+
+/* LastBuild, BuildStep states */
+.success {
+ color: #FFFFFF;
+ border: 1px solid #666666;
+ background-color: #3b0;
+}
+
+.failure {
+ color: #FFFFFF;
+ border: 1px solid #666666;
+ background-color: #d33;
+}
+
+.warnings {
+ color: #FFFFFF;
+ border: 1px solid #666666;
+ background-color: #fa2;
+}
+
+.exception, td.offline {
+ color: #FFFFFF;
+ border: 1px solid #666666;
+ background-color: #e0b0ff;
+}
+
+.start,.running, td.building {
+ color: #555;
+ border: 1px solid #666666;
+ background-color: #fffc6c;
+}