diff options
author | Ben Murdoch <benm@google.com> | 2011-05-05 14:36:32 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2011-05-10 15:38:30 +0100 |
commit | f05b935882198ccf7d81675736e3aeb089c5113a (patch) | |
tree | 4ea0ca838d9ef1b15cf17ddb3928efb427c7e5a1 /Tools/QueueStatusServer/stylesheets | |
parent | 60fbdcc62bced8db2cb1fd233cc4d1e4ea17db1b (diff) | |
download | external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.zip external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.tar.gz external_webkit-f05b935882198ccf7d81675736e3aeb089c5113a.tar.bz2 |
Merge WebKit at r74534: Initial merge by git.
Change-Id: I6ccd1154fa1b19c2ec2a66878eb675738735f1eb
Diffstat (limited to 'Tools/QueueStatusServer/stylesheets')
-rw-r--r-- | Tools/QueueStatusServer/stylesheets/dashboard.css | 103 | ||||
-rw-r--r-- | Tools/QueueStatusServer/stylesheets/main.css | 26 |
2 files changed, 129 insertions, 0 deletions
diff --git a/Tools/QueueStatusServer/stylesheets/dashboard.css b/Tools/QueueStatusServer/stylesheets/dashboard.css new file mode 100644 index 0000000..7b4f857 --- /dev/null +++ b/Tools/QueueStatusServer/stylesheets/dashboard.css @@ -0,0 +1,103 @@ +body { + font-family: Verdana, Helvetica, sans-serif; + width: 600px; + padding: 0px; + color: #444; +} +h1 { + background-color: #EEE; + color: #444; + font-size: 14pt; + font-style: italic; + margin: 0px; + padding: 5px; +} +h2 { + background-color: #AAA; + color: white; + font-weight: bold; + font-size: 9pt; + margin: 0px; + padding: 5px; +} +ul { + margin: 0px; + padding: 0px; + list-style: none; +} +li { + padding: 5px; +} +table { + border-spacing: 0px; +} +th { + background-color: #AAA; + color: white; + padding: 5px; + width: 100px; + font-size: 9pt; +} +td { + text-align: center; +} +tr:hover, li:hover { + background-color: #EEE; +} + +.status-group { + font-size: 90%; +} + +.status-bug { + font-weight: bold; +} + +.status-group ul { + font-size: 90%; +} + +.status-group ul li { + padding: 2px 0 2px 7px; + overflow: hidden; +} + +.status-group ul li:hover { + background: #ddd; +} + +.status-date { + color: #AAA; + float: right; + font-size: 8pt; +} + +.status-cell { + margin: 1px; + padding: 1px 2px; + font-size: 9pt; + border: 1px solid transparent; +} +.status-cell:hover { + border: 1px solid black; +} +.status-cell.pass { + background-color: #8FDF5F; + cursor: pointer; + /* border: 1px solid #4F8530; */ +} +.status-cell.fail { + background-color: #E98080; + cursor: pointer; + /* border: 1px solid #A77272; */ +} +.status-cell.pending { + background-color: #FFFC6C; + cursor: pointer; + /* border: 1px solid #C5C56D; */ +} +.status-cell.error { + background-color: #E0B0FF; + cursor: pointer; + /* border: 1px solid #ACA0B3; */ +} diff --git a/Tools/QueueStatusServer/stylesheets/main.css b/Tools/QueueStatusServer/stylesheets/main.css new file mode 100644 index 0000000..55d3694 --- /dev/null +++ b/Tools/QueueStatusServer/stylesheets/main.css @@ -0,0 +1,26 @@ +body { + font-family: Verdana, Helvetica, sans-serif; +} + +#current_status { + padding: 5px; + font-size: larger; +} + +#last_status_date { + font-size: small; +} + +.recent_status { + padding-left: 10px; +} + +#recent_status_table { + font-size: small; + margin: 10px; +} + +#footer { + font-size: small; + padding-top: 10px; +} |