aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-09-04 08:07:33 +0000
committerz0rglub <z0rglub@piwigo.org>2004-09-04 08:07:33 +0000
commitdd38c1463991eb623e2d810525bd4d341cba1ef1 (patch)
tree7ba6a7be19ae195357a9f5acfd5fd1404badf956 /template
parentaf5bb2dde0857fea96266e4fc8a3fae705b50260 (diff)
- bug correction : when coming from picture.php on a picture of category.php
page superior to the first, the right page was displayed (the one including the element) but the navigation bar was always saying we were on the first page - distinguish CSS classes span.dateSelected and span.pageNumberSelected git-svn-id: http://piwigo.org/svn/trunk@514 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r--template/default/default.css18
1 files changed, 15 insertions, 3 deletions
diff --git a/template/default/default.css b/template/default/default.css
index 81d4bfaca..0b52142b2 100644
--- a/template/default/default.css
+++ b/template/default/default.css
@@ -304,8 +304,20 @@ div.information {
padding:5px;
}
-span.selected {
- font-weight:bold;
+span.dateSelected, span.pageNumberSelected {
+ text-decoration:underline;
+}
+
+/**
+ * in calendar category, year or month currently focused
+ */
+span.dateSelected {
+}
+
+/**
+ * in navigation bar, page number currently focused
+ */
+span.pageNumberSelected {
}
span.thumb_picture {
@@ -365,4 +377,4 @@ td.confLineField {
padding:5px 0px 5px 0px;
height:20px;
background-color:#505050;
-} \ No newline at end of file
+}