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:06:03 -0700 |
commit | 0844318c820138c55548d63b0747057fce6564c1 (patch) | |
tree | 6f5114cea7aa7bc7ec14cbf0e84e55f016f159e8 | |
parent | 45bcf701d8e99e86f28a966b31654c16a5ae6b42 (diff) |
Fix CSS issue with info table not being contained in module header
-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; } |