
brewt at bricolage
Apr 1, 2009, 2:02 AM
Post #1 of 1
(463 views)
Permalink
|
|
[8533] Fixed rendering issues with the action icons on the
|
|
Revision: 8533 Author: brewt Date: 2009-04-01 02:01:59 -0700 (Wed, 01 Apr 2009) ViewCVS: http://viewsvn.bricolage.cc/?rev=8533&view=rev Log Message: ----------- Fixed rendering issues with the action icons on the workspace/desk pages in IE6/7. Modified Paths: -------------- bricolage/trunk/comp/media/css/style.css bricolage/trunk/lib/Bric/Changes.pod Modified: bricolage/trunk/comp/media/css/style.css =================================================================== --- bricolage/trunk/comp/media/css/style.css 2009-04-01 03:02:55 UTC (rev 8532) +++ bricolage/trunk/comp/media/css/style.css 2009-04-01 09:01:59 UTC (rev 8533) @@ -305,6 +305,8 @@ position: absolute; max-width: 240px; width: auto; +/* The top of actions overlaps the title line in IE7 */ + *margin-top: 1px; } .desk .item .actions ul { margin: 5px 0; @@ -322,8 +324,12 @@ line-height: 1em; float: left; margin: .3em .4em; +/* Too much space between buttons in IE6/7 */ + *margin: 0; max-width: 4em; width: auto; +/* IE6 doesn't support max-width and doesn't like width set to auto */ + _width: 4em; overflow: visible; } @@ -360,6 +366,8 @@ margin-left: auto; margin-right: auto; margin-top: -5px; +/* Taking things too far up for IE6, cutting off the icons */ + _margin-top: -2px; } .desk .item .actions ul li.inactive { color: #999; } .desk .item .actions ul.action { text-align: right; } Modified: bricolage/trunk/lib/Bric/Changes.pod =================================================================== --- bricolage/trunk/lib/Bric/Changes.pod 2009-04-01 03:02:55 UTC (rev 8532) +++ bricolage/trunk/lib/Bric/Changes.pod 2009-04-01 09:01:59 UTC (rev 8533) @@ -412,6 +412,11 @@ Fixed Workspace link spacing and the opening/closing of the navigation in IE6. [Adrian Yee] +=item * + +Fixed rendering issues with the action icons on the workspace/desk pages in +IE6/7. [Adrian Yee] + =back =======
|