diff options
author | Christopher Lenz <cmlenz@apache.org> | 2009-01-15 08:53:25 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2009-01-15 08:53:25 +0000 |
commit | f815fc6cca11d6119a5cb788821957cdcba1a567 (patch) | |
tree | b353e75d217ceac1b24db1856b456a53bbb82e0b /share/www/style | |
parent | 28b6fb6dfbce96e6992591a1287bdf39c735f414 (diff) |
Fix bug in test runner triggered by upgrade to jQuery 1.3.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@734633 13f79535-47bb-0310-9956-ffa450edef68
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; |