[Buildbot-commits] buildbot/buildbot/status sample1.css, NONE, 1.1 sample2.css, NONE, 1.1

Brian Warner warner at users.sourceforge.net
Sun Aug 20 22:51:39 UTC 2006


Update of /cvsroot/buildbot/buildbot/buildbot/status
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25406/buildbot/status

Added Files:
	sample1.css sample2.css 
Log Message:
[project @ Start collecting alternative CSS files for the waterfall status page]
>From discussions on buildbot mailing lists, a few of us wanted to start collecting alternative CSS files. These would be included in future buildbot releases, and allow people to easily change from the default CSS used by the waterfall status page. This patch includes two .css files: one from me, and one from another developer on buildbot-dev mailing list. There is no change to the default CSS.

Original author: john at oduinn.com
Date: 2006-07-27 14:09:56

--- NEW FILE: sample1.css ---
* {
	font-family: Verdana, Cursor;
	font-size: 10px;
	font-weight: bold;
}

a:link,a:visited,a:active {
	color: #666666;
}
a:hover {
	color: #FFFFFF;
}

.table {
	border-spacing: 2px;
}

td.Event, td.Activity, td.Change, td.Time, td.Builder {
	color: #333333;
	border: 1px solid #666666;
	background-color: #CCCCCC;
}

/* LastBuild, BuildStep states */
.success {
	color: #FFFFFF;
	border: 1px solid #2f8f0f;
	background-color: #8fdf5f;
}

.failure {
	color: #FFFFFF;
	border: 1px solid #f33636;
	background-color: #e98080;
}

.warnings {
	color: #FFFFFF;
	border: 1px solid #fc901f;
	background-color: #ffc343;
}

.exception, td.offline {
	color: #FFFFFF;
	border: 1px solid #8000c0;
	background-color: #e0b0ff;
}

.start,.running, td.building {
	color: #666666;
	border: 1px solid #ffff00;
	background-color: #fffc6c;
}

--- NEW FILE: sample2.css ---
* {
        font-family: Verdana, Cursor;
        font-size: 12px;
        font-weight: bold;
}

a:link,a:visited,a:active {
        color: #666666;
}
a:hover {
        color: #FFFFFF;
}

.table {
        border-spacing: 2px;
}

td.Event, td.Activity, td.Change, td.Time, td.Builder {
        color: #333333;
        border: 1px solid #666666;
        background-color: #CCCCCC;
}

/* LastBuild, BuildStep states */
.success {
        color: #FFFFFF;
        border: 1px solid #2f8f0f;
        background-color: #72ff75;
}

.failure {
        color: #FFFFFF;
        border: 1px solid #f33636;
        background-color: red;
}

.warnings {
        color: #FFFFFF;
        border: 1px solid #fc901f;
        background-color: #ffc343;
}

.exception, td.offline {
        color: #FFFFFF;
        border: 1px solid #8000c0;
        background-color: red;
}

.start,.running, td.building {
        color: #666666;
        border: 1px solid #ffff00;
        background-color: yellow;
}





More information about the Commits mailing list