summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-04-09 20:30:15 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-04-09 20:48:28 +0200
commit42375b9229757bbf55d6c3611e3aaacfff0a4bf6 (patch)
tree0a9f029bcef866d95d827a54a4d5533489cead3f /data
parentca64b0e4616bbbfa97fbb8465dce75aa79c04360 (diff)
header: hide login box until hover
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'data')
-rw-r--r--data/default.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/data/default.css b/data/default.css
index 399ca1410..cd8b1af8e 100644
--- a/data/default.css
+++ b/data/default.css
@@ -56,6 +56,22 @@ p, li {
padding-right: 10px;
}
+#login-form {
+ visibility: hidden;
+ position: absolute;
+ right: 0;
+ top: 0;
+
+ /* these help to keep the box displayed once the user hovered over login*/
+ padding-top: 35px;
+ padding-left: 10px;
+ padding-bottom: 10px;
+}
+
+a:hover #login-form {
+ visibility: visible;
+}
+
.top a {
color: lightblue;
}