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 | |
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')
-rw-r--r-- | themes/classic/templates/default.css | 6 | ||||
-rw-r--r-- | themes/greysme/templates/default.css | 3 |
2 files changed, 7 insertions, 2 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; }
diff --git a/themes/greysme/templates/default.css b/themes/greysme/templates/default.css index 4b753ac2..3e01a519 100644 --- a/themes/greysme/templates/default.css +++ b/themes/greysme/templates/default.css @@ -557,10 +557,11 @@ input[type=checkbox] { border:0;background:none; } }
/* table rows */
-.odd, .even { background: url(../images/list_back.png) 0 50% repeat-x !important; background-image: none;}
+.odd, .even, .row-highlight { background: url(../images/list_back.png) 0 50% repeat-x !important; background-image: none;}
.odd { background-color: #111 !important;}
.even { }
.odd:hover, .even:hover { background-color: #2b293d !important;}
+.row-highlight:hover { background-color: #cc3333 !important;}
/* Misc */
.border { background: #000; }
|