summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/pushbutton/arrow-next-hover.pngbin168 -> 173 bytes
-rw-r--r--themes/pushbutton/arrow-next-visited.pngbin0 -> 173 bytes
-rw-r--r--themes/pushbutton/arrow-next.pngbin168 -> 173 bytes
-rw-r--r--themes/pushbutton/arrow-prev-hover.pngbin192 -> 174 bytes
-rw-r--r--themes/pushbutton/arrow-prev-visited.pngbin0 -> 178 bytes
-rw-r--r--themes/pushbutton/arrow-prev.pngbin191 -> 175 bytes
-rw-r--r--themes/pushbutton/arrow-up-hover.pngbin192 -> 175 bytes
-rw-r--r--themes/pushbutton/arrow-up-visited.pngbin0 -> 173 bytes
-rw-r--r--themes/pushbutton/arrow-up.pngbin191 -> 173 bytes
-rw-r--r--themes/pushbutton/style.css24
10 files changed, 18 insertions, 6 deletions
diff --git a/themes/pushbutton/arrow-next-hover.png b/themes/pushbutton/arrow-next-hover.png
index e134d942f..5e32cd264 100644
--- a/themes/pushbutton/arrow-next-hover.png
+++ b/themes/pushbutton/arrow-next-hover.png
Binary files differ
diff --git a/themes/pushbutton/arrow-next-visited.png b/themes/pushbutton/arrow-next-visited.png
new file mode 100644
index 000000000..392801475
--- /dev/null
+++ b/themes/pushbutton/arrow-next-visited.png
Binary files differ
diff --git a/themes/pushbutton/arrow-next.png b/themes/pushbutton/arrow-next.png
index 87bb67e50..cf3ae6aa1 100644
--- a/themes/pushbutton/arrow-next.png
+++ b/themes/pushbutton/arrow-next.png
Binary files differ
diff --git a/themes/pushbutton/arrow-prev-hover.png b/themes/pushbutton/arrow-prev-hover.png
index 2a3e05c4b..cd85f90da 100644
--- a/themes/pushbutton/arrow-prev-hover.png
+++ b/themes/pushbutton/arrow-prev-hover.png
Binary files differ
diff --git a/themes/pushbutton/arrow-prev-visited.png b/themes/pushbutton/arrow-prev-visited.png
new file mode 100644
index 000000000..38f6e315b
--- /dev/null
+++ b/themes/pushbutton/arrow-prev-visited.png
Binary files differ
diff --git a/themes/pushbutton/arrow-prev.png b/themes/pushbutton/arrow-prev.png
index 96b3fe260..e6764ec5c 100644
--- a/themes/pushbutton/arrow-prev.png
+++ b/themes/pushbutton/arrow-prev.png
Binary files differ
diff --git a/themes/pushbutton/arrow-up-hover.png b/themes/pushbutton/arrow-up-hover.png
index daf013108..3bff73543 100644
--- a/themes/pushbutton/arrow-up-hover.png
+++ b/themes/pushbutton/arrow-up-hover.png
Binary files differ
diff --git a/themes/pushbutton/arrow-up-visited.png b/themes/pushbutton/arrow-up-visited.png
new file mode 100644
index 000000000..2df0fdd23
--- /dev/null
+++ b/themes/pushbutton/arrow-up-visited.png
Binary files differ
diff --git a/themes/pushbutton/arrow-up.png b/themes/pushbutton/arrow-up.png
index fce29251d..81dd41032 100644
--- a/themes/pushbutton/arrow-up.png
+++ b/themes/pushbutton/arrow-up.png
Binary files differ
diff --git a/themes/pushbutton/style.css b/themes/pushbutton/style.css
index aef735a27..c6ea59b41 100644
--- a/themes/pushbutton/style.css
+++ b/themes/pushbutton/style.css
@@ -452,27 +452,39 @@ table#footer-menu {
display: none
}
.nav .links .next a:link {
- padding: 15px 15px 17px 0;
+ padding: 17px 17px 17px 0;
background: transparent url(arrow-next.png) right center no-repeat;
}
+.nav .links .next a:visited {
+ padding: 17px 17px 17px 0;
+ background: transparent url(arrow-next-visited.png) right center no-repeat;
+}
.nav .links .next a:hover {
- padding: 15px 15px 17px 0;
+ padding: 17px 17px 17px 0;
background: transparent url(arrow-next-hover.png) right center no-repeat;
}
.nav .links .prev a:link {
- padding: 15px 0 17px 15px;
+ padding: 17px 0 17px 17px;
background: transparent url(arrow-prev.png) left center no-repeat;
}
+.nav .links .prev a:visited {
+ padding: 17px 0 17px 17px;
+ background: transparent url(arrow-prev-visited.png) left center no-repeat;
+}
.nav .links .prev a:hover {
- padding: 15px 0 17px 15px;
+ padding: 17px 0 17px 17px;
background: transparent url(arrow-prev-hover.png) left center no-repeat;
}
.nav .links .up a:link {
- padding: 11px 0 15px 0;
+ padding: 11px 0 17px 0;
background: transparent url(arrow-up.png) center top no-repeat;
}
+.nav .links .up a:visited {
+ padding: 11px 0 17px 0;
+ background: transparent url(arrow-up-visited.png) center top no-repeat;
+}
.nav .links .up a:hover {
- padding: 11px 0 15px 0;
+ padding: 11px 0 17px 0;
background: transparent url(arrow-up-hover.png) center top no-repeat;
}