diff options
author | Bram Pitoyo <bram@mozilla.com> | 2013-06-24 08:21:46 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-06-24 08:21:46 +0200 |
commit | bc6e17ee7addd48eb127f26e50dd4378e193f0ba (patch) | |
tree | f74e4069ae2cea2605c9da84929670ea899a957e /skins/contrib | |
parent | 86361165fa3b7850de14fc968699d01453a27213 (diff) | |
download | bugzilla-bc6e17ee7addd48eb127f26e50dd4378e193f0ba.tar.gz bugzilla-bc6e17ee7addd48eb127f26e50dd4378e193f0ba.tar.xz |
Bug 885321: fix the tabs on the mozilla skin
Diffstat (limited to 'skins/contrib')
-rw-r--r-- | skins/contrib/Mozilla/global.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/skins/contrib/Mozilla/global.css b/skins/contrib/Mozilla/global.css index 5e2044188..7af4af9ea 100644 --- a/skins/contrib/Mozilla/global.css +++ b/skins/contrib/Mozilla/global.css @@ -561,10 +561,40 @@ table.edit_form hr { font-weight: normal; } +/* tabs */ + +table.tabs { + border-collapse: separate; + border-spacing: 1em 0; +} + +.tabs td { + background: rgba(255,255,255,0.5); + padding: 1em; + text-align: center; + border-style: none; + font-size: 12px; + text-transform: uppercase; +} + +.tabs td.selected { + background: white; + font-weight: 700; +} + .tabs td.spacer { background: transparent; } +.tabs a { + color: #333; +} + +.tabbody { + background: white; + padding: 1em 2em; +} + /* Smaller than standard 990 (devices and browsers) */ @media only screen and (max-width: 989px) { #header .links { |