Repository : ssh://darcs.haskell.org//srv/darcs/haddock On branch : development
http://hackage.haskell.org/trac/ghc/changeset/089b087c2863bed63302a36591e5c4678b29b466 >--------------------------------------------------------------- commit 089b087c2863bed63302a36591e5c4678b29b466 Author: David Terei <[email protected]> Date: Thu Aug 18 17:14:15 2011 -0700 Fix CSS issue with info table not being contained in module header >--------------------------------------------------------------- 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 1287ac5..d6b58d2 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; } _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
