diff options
author | Anika Henke <anika@selfthinker.org> | 2012-05-07 09:45:38 -0700 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-05-07 09:45:38 -0700 |
commit | fa24fb1096d5ea38b271d68570d6cacc97008200 (patch) | |
tree | 40cdcf81f99d4095da765596ec62c614170d798a | |
parent | de9737a55b1b338d88f9700d454a5111637b9c9c (diff) | |
parent | ffec60bb97c533511a24cb03a6a7ea2b58c9b8a3 (diff) | |
download | rpg-fa24fb1096d5ea38b271d68570d6cacc97008200.tar.gz rpg-fa24fb1096d5ea38b271d68570d6cacc97008200.tar.bz2 |
Merge pull request #98 from splitbrain/pagetoolfix
some tweaks to the pagetool css FS#2481
-rw-r--r-- | lib/tpl/dokuwiki/css/pagetools.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/tpl/dokuwiki/css/pagetools.css b/lib/tpl/dokuwiki/css/pagetools.css index e301b084d..bfa22cb2e 100644 --- a/lib/tpl/dokuwiki/css/pagetools.css +++ b/lib/tpl/dokuwiki/css/pagetools.css @@ -14,7 +14,9 @@ padding-left: 40px; } .dokuwiki div.page { + height: 190px; min-height: 190px; /* 30 (= height of icons) x 6 (= maximum number of possible tools) + 2x5 */ + height: auto; } #dokuwiki__usertools { /* move the tools just outside of the site */ @@ -27,10 +29,12 @@ right: -40px; /* on same vertical level as first headline, because .page has 2em padding */ top: 2em; + width: 40px; } #dokuwiki__pagetools div.tools { position: fixed; + width: 40px; } #dokuwiki__pagetools ul { @@ -66,7 +70,8 @@ /* hide labels accessibly when neither on hover nor on focus */ #dokuwiki__pagetools ul li a span { position: absolute; - left: -99999px; + clip: rect(0 0 0 0); /* IE7, IE6 */ + clip: rect(0, 0, 0, 0); } /* show all tools on hover and individual tools on focus */ |