diff options
author | David Terei <davidterei@gmail.com> | 2011-08-18 17:14:15 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-10-12 14:07:07 -0700 |
commit | 089b087c2863bed63302a36591e5c4678b29b466 (patch) | |
tree | d95a146887df25e77d82a8b5fb37a0580355f283 /html | |
parent | 0c16f3b04aadd0cc22fedbf123bae6369d1c445e (diff) |
Fix CSS issue with info table not being contained in module header
Diffstat (limited to 'html')
-rw-r--r-- | html/Classic.theme/xhaddock.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/html/Classic.theme/xhaddock.css b/html/Classic.theme/xhaddock.css index 1287ac53..d6b58d22 100644 --- a/html/Classic.theme/xhaddock.css +++ b/html/Classic.theme/xhaddock.css @@ -156,6 +156,12 @@ div#style-menu-holder { } #module-header { + overflow: hidden; /* makes sure info float is properly contained */ + display: inline-block; /* triggers hasLayout in IE*/ +} + +#module-header { + display: block; /* back to block */ background-color: #0077dd; padding: 5px; } |