diff options
author | Anika Henke <anika@selfthinker.org> | 2011-09-16 19:08:44 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-09-16 19:08:44 +0100 |
commit | ea5083e2dc76f5107562e6fd75d83c4bc37f3ed8 (patch) | |
tree | 12b77387c6ee623882e3db1b84b8c067943e1eed | |
parent | 7a64646b530eaf3bc83f6b8a395e68df5f25b84a (diff) | |
download | rpg-ea5083e2dc76f5107562e6fd75d83c4bc37f3ed8.tar.gz rpg-ea5083e2dc76f5107562e6fd75d83c4bc37f3ed8.tar.bz2 |
added styles for general tabs (to be used in mediamanager and other components)
-rw-r--r-- | lib/tpl/default/_tabs.css | 37 | ||||
-rw-r--r-- | lib/tpl/default/style.ini | 1 |
2 files changed, 38 insertions, 0 deletions
diff --git a/lib/tpl/default/_tabs.css b/lib/tpl/default/_tabs.css new file mode 100644 index 000000000..8bfb676a0 --- /dev/null +++ b/lib/tpl/default/_tabs.css @@ -0,0 +1,37 @@ + +.dokuwiki ul.tabs { + padding: 0; + margin: 0; + overflow: hidden; +} +.dokuwiki ul.tabs li { + float: left; + padding: 0; + margin: 0; + list-style: none; +} + +.dokuwiki ul.tabs li strong, +.dokuwiki ul.tabs li a { + float: left; + padding: .3em .8em; + margin: 0 .3em 0 0; + background-color: __background_neu__; + color: __text__; + border-radius: .5em .5em 0 0; +} +.dokuwiki ul.tabs li strong { + font-weight: normal; +} + +.dokuwiki ul.tabs li a:link, +.dokuwiki ul.tabs li a:visited { +} +.dokuwiki ul.tabs li a:hover, +.dokuwiki ul.tabs li a:active, +.dokuwiki ul.tabs li a:focus, +.dokuwiki ul.tabs li strong { + background-color: __background_alt__; + color: __text__; + text-decoration: none; +} diff --git a/lib/tpl/default/style.ini b/lib/tpl/default/style.ini index 05914012e..d301869f2 100644 --- a/lib/tpl/default/style.ini +++ b/lib/tpl/default/style.ini @@ -16,6 +16,7 @@ _admin.css = screen _linkwiz.css = screen _subscription.css = screen mediamanager.css = screen +_tabs.css = screen _fileuploader.css = screen rtl.css = rtl |