diff options
author | spocky <spocky@ampache> | 2008-03-17 20:29:24 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2008-03-17 20:29:24 +0000 |
commit | 7ddc95541d649fdf0121eafcd71a93376b16efec (patch) | |
tree | cb0fcb9f4ad2c9844a5cc08106a43900c7b7b7d9 /themes | |
parent | b96588ebc587f18f75e3dbe0240b180371ae4ff4 (diff) | |
download | ampache-7ddc95541d649fdf0121eafcd71a93376b16efec.tar.gz ampache-7ddc95541d649fdf0121eafcd71a93376b16efec.tar.bz2 ampache-7ddc95541d649fdf0121eafcd71a93376b16efec.zip |
shoutbox now makes use of flip_class
rewrote show_song code and css
Diffstat (limited to 'themes')
-rw-r--r-- | themes/classic/templates/default.css | 24 | ||||
-rw-r--r-- | themes/greysme/templates/default.css | 23 |
2 files changed, 45 insertions, 2 deletions
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index 481a19e5..c6e8f4b7 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -533,10 +533,10 @@ a.button{padding:1px 3px;} border-bottom:1px dotted #c0c0c0;
}
.tabledata .even:hover, .tabledata .odd:hover {
- background:#99ccff;
+ background:#9cf;
}
.row-highlight:hover {
- background:#cc3333;
+ background:#c33;
}
@@ -561,6 +561,26 @@ td.cel_cover{padding:6px;} font-size: 0.8em;
}
+/************************************************/
+/* Song details */
+/************************************************/
+dl.song_details{font-size:0.8em;}
+.song_details dt {
+ float:left;
+ clear:both;
+ width:20%;
+ min-width:20%; /*Ie bugfix*/
+ font-weight:bold;
+}
+.song_details dd {
+ float:left;
+ width:79%;
+ min-width:79%; /*Ie bugfix*/
+ margin:0 0 0.2em .3em;
+ padding-left:.2em;
+}
+dt + dd {border-bottom:1px dotted #c0c0c0;}
+dt:hover, dt:hover + dd {background:#9cf;}
/************************************************/
/* Albums of the moment */
diff --git a/themes/greysme/templates/default.css b/themes/greysme/templates/default.css index c086e0c1..584f283b 100644 --- a/themes/greysme/templates/default.css +++ b/themes/greysme/templates/default.css @@ -609,6 +609,29 @@ td.cel_track {text-align:right;} }
/************************************************/
+/* Song details */
+/************************************************/
+dl.song_details{font-size:1em;}
+.song_details dt {
+ float:left;
+ clear:both;
+ width:20%;
+ min-width:20%; /*Ie bugfix*/
+ font-weight:bold;
+}
+.song_details dd {
+ float:left;
+ width:79%;
+ min-width:79%; /*Ie bugfix*/
+ margin:0 0 0.2em .3em;
+ padding-left:.2em;
+}
+dt, dt + dd {background: url(../images/list_back.png) 0 50% repeat-x !important; background-image: none;}
+dt, dt + dd { background-color: #111 !important;}
+dt:hover, dt:hover + dd {background-color: #2b293d !important;}
+
+
+/************************************************/
/* Albums of the moment */
/************************************************/
.random_album{
|