diff options
author | Anika Henke <anika@selfthinker.org> | 2011-10-05 00:51:22 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-10-05 00:51:22 +0100 |
commit | 35cc0740c8dab662e9b46b94e188a72536bbd7c2 (patch) | |
tree | 37a83d9a855736c9c388def05b3e482d7c25687b /css | |
parent | 7ccc11464f838bd1beb3681efc3b31c29ca620c3 (diff) | |
download | rpg-35cc0740c8dab662e9b46b94e188a72536bbd7c2.tar.gz rpg-35cc0740c8dab662e9b46b94e188a72536bbd7c2.tar.bz2 |
implemented different temporary design for pagetools on the left (class='version02' instead of 01)
Diffstat (limited to 'css')
-rwxr-xr-x | css/design.css | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/css/design.css b/css/design.css index 904868024..ee3eced43 100755 --- a/css/design.css +++ b/css/design.css @@ -114,9 +114,17 @@ #dokuwiki__pagetools { position: absolute; + font-size: 90%; +} + +#dokuwiki__pagetools.version01 { right: -37px; top: 2em; - font-size: 90%; +} +#dokuwiki__pagetools.version02 { + left: __sidebar_width__; + top: 2em; + margin-left: -1.2em; } #dokuwiki__pagetools div.tools { @@ -125,17 +133,23 @@ #dokuwiki__pagetools ul { position: absolute; - right: 0; width: 32px; overflow: hidden; border: 1px solid __border__; border-radius: 2px; - text-align: right; margin: 0; padding: 0; background-color: __background__; color: inherit; } +#dokuwiki__pagetools.version01 ul { + right: 0; + text-align: right; +} +#dokuwiki__pagetools.version02 ul { + left: 0; + text-align: left; +} #dokuwiki__pagetools:hover ul, #dokuwiki__pagetools:active ul, @@ -163,9 +177,9 @@ background-position: 10px center; } -#dokuwiki__pagetools:hover ul li a, -#dokuwiki__pagetools:active ul li a, -#dokuwiki__pagetools:focus ul li a { +#dokuwiki__pagetools.version01:hover ul li a, +#dokuwiki__pagetools.version01:active ul li a, +#dokuwiki__pagetools.version01:focus ul li a { padding-right: 32px; padding-left: 0; background-position: right center; |