diff options
author | myk%mozilla.org <> | 2005-07-30 07:41:09 +0000 |
---|---|---|
committer | myk%mozilla.org <> | 2005-07-30 07:41:09 +0000 |
commit | f55027e7a07f4cb3f74cd6c42e710e794564df3c (patch) | |
tree | b1862ec2fc0966880f67691bc9e2fd81972c1d1f /skins | |
parent | ab199bf568703d0c287d0f21ce1816e44183aa02 (diff) | |
download | bugs-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar bugs-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar.gz bugs-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar.bz2 bugs-f55027e7a07f4cb3f74cd6c42e710e794564df3c.tar.xz bugs-f55027e7a07f4cb3f74cd6c42e710e794564df3c.zip |
Fix for bug 302702: refactors tabs code into shared file so not only prefs and search but also other pages can use it
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index f9ac7c96d..ab3eabf10 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -313,21 +313,24 @@ body padding: 1em 0; } -.selected_tab +td.tab { - background: #fff; - border: 1px solid black; + background: #eee; + text-align: center; + border-style: solid; + border-color: black; + border-width: 0px 0px 2px 0px; } - -.unselected_tab + +td.tab.selected { - background: #eee; - border: 1px solid black; + background: white; + border-width: 2px 2px 0px 2px; } -.spacer +td.tab.spacer { - border: 1px solid black; + background: white; } table#flags th, table#flags td { vertical-align: baseline; text-align: left; } |