summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-19 09:05:35 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-08-19 09:05:35 +0000
commit311df0b6ba40b818eb4de046f688bd02e0637560 (patch)
treecb401b4fc397941caa8ff2a8bd105e61e68a86f7
parentbc36b9d282aff16dfc794819919897103c94b9bd (diff)
downloadampache-311df0b6ba40b818eb4de046f688bd02e0637560.tar.gz
ampache-311df0b6ba40b818eb4de046f688bd02e0637560.tar.bz2
ampache-311df0b6ba40b818eb4de046f688bd02e0637560.zip
fixed slight glitch introduced into the paging stuff
-rw-r--r--templates/list_header.inc.php2
-rw-r--r--themes/classic/templates/default.css12
2 files changed, 8 insertions, 6 deletions
diff --git a/templates/list_header.inc.php b/templates/list_header.inc.php
index 99589ae6..bf5381a5 100644
--- a/templates/list_header.inc.php
+++ b/templates/list_header.inc.php
@@ -113,7 +113,7 @@ if ($pages > 1) {
/* Echo Out current Page */
$current_page = $current_page +1;
?>
- <span class="list-header-selected"><?php echo $current_page; ?></span>
+ <div class="list-header-selected"><?php echo $current_page; ?></div>
<?php
/* Echo Out Everything Above Us */
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css
index 67dc63ae..c9c5024a 100644
--- a/themes/classic/templates/default.css
+++ b/themes/classic/templates/default.css
@@ -502,21 +502,23 @@ h3#content_title span {
table.list-header {
margin:3px;
}
-span.list-header {
+div.list-header {
cursor:pointer;
text-decoration: none;
font-size: 0.8em;
- padding:0px 4px 0px 4px;
+ padding:2px 4px 0px 4px;
border: 1px solid #000;
+ display:inline;
}
-span.list-header-selected {
+div.list-header-selected {
text-decoration: none;
font-size: 0.8em;
- padding:0px 4px 0px 4px;
+ padding:2px 4px 0px 4px;
border: 1px solid #000;
background: #e0e0e0;
+ display:inline;
}
-span.list-header:hover {
+div.list-header:hover {
background: #d0d0d0;
}