diff options
author | vdigital <vdigital@piwigo.org> | 2007-03-09 23:30:03 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2007-03-09 23:30:03 +0000 |
commit | c0de91eb56964ccce35d82c7dbac987ca994aace (patch) | |
tree | b432b3a4ed214e57bff044bc1e0e4195ed49a20e /template/yoga/theme/dark | |
parent | 908c6a2dfa90104841d334a2e2388a196c2af8c9 (diff) |
Bug on admin tabsheets under IE7
git-svn-id: http://piwigo.org/svn/trunk@1886 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/theme/dark/theme.css | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/template/yoga/theme/dark/theme.css b/template/yoga/theme/dark/theme.css index 0bb601b1f..0c92cc6c0 100644 --- a/template/yoga/theme/dark/theme.css +++ b/template/yoga/theme/dark/theme.css @@ -17,6 +17,10 @@ H2, #menubar DT, .throw { color: #000000; } +.tabsheet li, +.tabsheet li a { color: #fff; } +.tabsheet li a:hover { color: #fff48e; } + /* backgrounds */ BODY { background-color: #000000; @@ -45,6 +49,9 @@ H2, #menubar DT, .throw { background-repeat: repeat-x; background-position: center; } +.tabsheet li { background-color: #3f3f3f; } + +.selected_tab { background-color: #5f5f5f !important; } /* borders */ #menubar DL, #content, .content, @@ -90,6 +97,9 @@ FIELDSET, INPUT, SELECT, TEXTAREA, color: black; } +ul.tabsheet { border-color: #fff48e; } +.tabsheet li { border: 1px solid #fff; } +.tabsheet li:hover { border-color: #fff48e !important; } /* links */ A, INPUT.rateButton { @@ -144,17 +154,3 @@ TD.calDayCellEmpty { color: silver; } } .qsearch { font-size: 80%; font-style: normal; } #mbMenu #quicksearch > p { text-align: left; } - -.tabsheet li { - background: #3f3f3f; - color: white; - border: 1px solid #fff; -} - -.selected_tab { - background: #5f5f5f !important; -} - -.tabsheet li:hover { - border: 1px solid #FFF48E; -} |