diff options
author | spocky <spocky@ampache> | 2007-10-16 20:26:16 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-10-16 20:26:16 +0000 |
commit | 15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f (patch) | |
tree | 0d16eb9fb44337d4176af2ca42c3ca070b878113 /themes/classic/templates | |
parent | 4b58b3e218d2e926d7bb0e4d07be2877853de689 (diff) | |
download | ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.tar.gz ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.tar.bz2 ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.zip |
- hardcoded disk# sort order when sort is set to album name
- removed pager from browse table
- added footer to browse tables
- updated browse files for better customization
- modified css
Diffstat (limited to 'themes/classic/templates')
-rw-r--r-- | themes/classic/templates/default.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index d979f36f..43eb479f 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -556,9 +556,9 @@ h3#content_title span { /************************************************/
/* List Header Styles */
/************************************************/
-.list-header{margin:7px 0; text-align:center; font-size: 0.8em;}
-.list-header .prev{float:left;}
-.list-header .next{float:right;}
+.list-header{margin:7px 0; text-align:center; font-size: 0.8em;position:relative;}
+.list-header .prev{/*float:left;*/ position:absolute; top:0; left:0;}
+.list-header .next{/*float:right;*/ position:absolute; top:0; right:0;}
.list-header .selected{background: #e0e0e0;}
.list-header .page-nb{padding:1px;border: 1px solid #ccc;text-decoration: none;}
.list-header .page-nb:hover{background: #d0d0d0;}
@@ -613,6 +613,11 @@ div#Header{ margin-left: 10px;
}
+/************************************************/
+/* "Browse by" */
+/************************************************/
+.br_td_cover{padding:6px;}
+
/************************************************/
/* Styles for Login template */
|