diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-16 23:52:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-16 23:52:06 +0000 |
commit | 81a854f7ea737ecdb05ebfb5d09209508f34b745 (patch) | |
tree | 33a37cc50b0425e6f6d4e8904c766313e495606f /themes/classic | |
parent | 3887ab1f65fa556368d555e33b5c3e9ab59459da (diff) | |
download | ampache-81a854f7ea737ecdb05ebfb5d09209508f34b745.tar.gz ampache-81a854f7ea737ecdb05ebfb5d09209508f34b745.tar.bz2 ampache-81a854f7ea737ecdb05ebfb5d09209508f34b745.zip |
fixed the find duplicates stuff, its actually still broken somewhat but it mostly works so why not commit eah?
Diffstat (limited to 'themes/classic')
-rw-r--r-- | themes/classic/templates/default.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index ba71d503..b45857ee 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -507,13 +507,17 @@ a.button{padding:1px 3px;} /* table rows */
.odd, .odd td,
-.even, .even td {
+.even, .even td, .row-highlight {
font-size: 12px;
border-bottom:1px dotted #c0c0c0;
}
.even:hover, .odd:hover {
background:#99ccff;
}
+.row-highlight:hover {
+ background:#cc3333;
+}
+
/* Misc */
.border { background: #000; }
|