aboutsummaryrefslogtreecommitdiff
path: root/doc/style.css
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-31 08:48:10 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-31 08:48:10 +0000
commita2cfdaaec5666a08af864ebad8133e18d7cbbcb3 (patch)
tree0d2b9c644d4124d3d20c1958ecde277025f78e0a /doc/style.css
parentf9e8c6012903cb98b9885ff8b76d897fa151dadb (diff)
downloadikiwiki-a2cfdaaec5666a08af864ebad8133e18d7cbbcb3.tar
ikiwiki-a2cfdaaec5666a08af864ebad8133e18d7cbbcb3.tar.gz
* Hide excess backlinks and expand using CSS trick; control quantiy via
the numbacklinks setting.
Diffstat (limited to 'doc/style.css')
-rw-r--r--doc/style.css9
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/style.css b/doc/style.css
index af460dd0d..0a37e55aa 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -239,13 +239,14 @@ input#openid_url {
width: 25%
}
-/* Used by the popup template. */
+/* Used by the popup template and for backlinks hiding. */
.popup {
border-bottom: 1px dotted #366;
color: #366;
}
.popup .balloon,
-.popup .paren {
+.popup .paren,
+.popup .expand {
display: none;
}
.popup:hover .balloon,
@@ -261,3 +262,7 @@ input#openid_url {
-moz-opacity: 0.95;
filter: alpha(opacity=95);
}
+.popup:hover .expand,
+.popup:focus .expand {
+ display: inline;
+}