diff options
author | Anika Henke <anika@selfthinker.org> | 2011-10-04 00:36:40 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-10-04 00:36:40 +0100 |
commit | f318df2e9abf46fa22f327de3e1336b45ba4a994 (patch) | |
tree | 6a524d1218d7b3b1b6a892bdb4a0b1efb3cd9824 | |
parent | b2932b97919a9bc8ce4913bf8827e1bda9585d94 (diff) | |
download | rpg-f318df2e9abf46fa22f327de3e1336b45ba4a994.tar.gz rpg-f318df2e9abf46fa22f327de3e1336b45ba4a994.tar.bz2 |
fix breadcrumbs (just introduced bug for single instances)
-rwxr-xr-x | css/design.css | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/css/design.css b/css/design.css index 3a9725f34..984582459 100755 --- a/css/design.css +++ b/css/design.css @@ -232,20 +232,24 @@ clear: both; } .dokuwiki div.breadcrumbs div { + padding: .1em .35em; +} + +.dokuwiki div.breadcrumbs div:only-child { border-top: 1px solid __background__; border-bottom: 1px solid __border__; - padding: .1em .35em; } .dokuwiki div.breadcrumbs div:first-child { - border-bottom-width: 0; + border-top: 1px solid __background__; } -#IE7 .dokuwiki div.breadcrumbs div:first-child, -#IE8 .dokuwiki div.breadcrumbs div:first-child { - border-bottom-width: 1px; +#IE7 .dokuwiki div.breadcrumbs div, +#IE8 .dokuwiki div.breadcrumbs div { + border-bottom: 1px solid __border__; } .dokuwiki div.breadcrumbs div:last-child { - border-top-width: 0; + border-bottom: 1px solid __border__; } + .dokuwiki div.breadcrumbs a { color: __link__; background-color: inherit; |