Skip to content

Commit

Permalink
Make the colors on the waterfall less garish
Browse files Browse the repository at this point in the history
  • Loading branch information
Amber Yust committed Jan 14, 2011
1 parent a402f65 commit c82b3d2
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 14 deletions.
8 changes: 8 additions & 0 deletions master/NEWS
Expand Up @@ -5,6 +5,14 @@ Major User visible changes in Buildbot. -*- outline -*-

* Next Version

** Less garish color scheme

The default color scheme for Buildbot has been modified to make it slightly
less, well, neon. Note: This will not affect already-created masters, as
their default.css file has already been created. If you currently use the
default and want to get the new version, just overwrite public_html/default.css
with the copy in this version.


* Buildbot 0.8.3 (December 19, 2010)

Expand Down
39 changes: 25 additions & 14 deletions master/buildbot/status/web/files/default.css
Expand Up @@ -7,7 +7,6 @@ body.interface {
background: url(bg_gradient.jpg) repeat-x;
font-family: Verdana, Cursor;
font-size: 10px;
font-weight: bold;
background-color: #fff;
color: #333;
}
Expand All @@ -21,7 +20,7 @@ table {
}

table td {
padding: 3px 2px 3px 2px;
padding: 3px 4px 3px 4px;
text-align: center;
}

Expand All @@ -34,8 +33,8 @@ table td {
}

.LastBuild,.Activity,.Builder,.BuildStep {
width: 15em;
min-width: 15em;
max-width: 15em;
min-width: 5em;
}

/* Chromium Specific styles */
Expand Down Expand Up @@ -341,32 +340,44 @@ div.BuildWaterfall {

/* LastBuild, BuildStep states */
.success {
color: #FFFFFF;
background-color: #8f8;
color: #000;
background-color: #8d4;
border-color: #4F8530;
}

.failure {
color: #FFFFFF;
background-color: #f99;
color: #000;
background-color: #e88;
border-color: #A77272;
}

.warnings {
color: #FFFFFF;
background-color: #ffc343;
background-color: #fa3;
border-color: #C29D46;
}

.skipped {
color: #000;
background: #AADDEE;
border-color: #AADDEE;
}

.exception,.retry {
color: #FFFFFF;
background-color: #f6f;
background-color: #c6c;
border-color: #ACA0B3;
}

.start,.running,.waiting,td.building {
color: #666666;
background-color: #ff6;
.start {
color: #000;
background-color: #ccc;
border-color: #ccc;
}

.running,.waiting,td.building {
color: #000;
background-color: #fd3;
border-color: #C5C56D;
}

Expand Down Expand Up @@ -501,7 +512,7 @@ li {
/* log view */
.log * {
vlink: #800080;
font-family: "Courier New", courier, monotype;
font-family: "Courier New", courier, monotype, monospace;
}

span.stdout {
Expand Down

0 comments on commit c82b3d2

Please sign in to comment.