diff options
Diffstat (limited to 'share/www/style')
-rw-r--r-- | share/www/style/layout.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/share/www/style/layout.css b/share/www/style/layout.css index 2df42734..a05b350f 100644 --- a/share/www/style/layout.css +++ b/share/www/style/layout.css @@ -314,6 +314,7 @@ ul.suggest-dropdown li.selected { cursor: pointer; background: Highlight; resize: none; width: 100%; overflow: auto; } #viewcode .code textarea:focus { background: #e9f4ff; } +#viewcode .code textarea.invalid { background: #fee; color: #800; } #viewcode .bottom { border-bottom: none; clear: left; padding: 1px 3px; } #viewcode .bottom button { font-size: 90%; margin: 0 1em 0 0; padding-left: 2em; padding-right: 2em; @@ -453,9 +454,12 @@ ul.suggest-dropdown li.selected { cursor: pointer; background: Highlight; #tests tbody.content th { cursor: help; padding-left: 25px; white-space: nowrap; } -#tests tbody.content th button { - background-image: url(../image/run-mini.png); +#tests tbody.content th button.run { + background: url(../image/run-mini.png) no-repeat; border: none; + cursor: pointer; float: left; margin: .2em 5px 0 -20px; padding: 0; + width: 15px; height: 15px; } +#tests tbody.content th button.run:hover { background-position: -15px 0; } #tests tbody.content td.duration { text-align: right; width: 6em; } #tests tbody.content td.status { background-position: 5px 8px; background-repeat: no-repeat; color: #999; padding-left: 20px; |