Skip to content

Commit

Permalink
[#1788] minornavigation menu incorrectly showed vertically instead of…
Browse files Browse the repository at this point in the history
… horizontally because of missing support for inline-block in IE <= 7, fixed with a css workaround.
  • Loading branch information
zydio committed Feb 24, 2012
1 parent c102a46 commit 7af8c36
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ckan/public/css/style.css
Expand Up @@ -264,6 +264,11 @@ img.gravatar {
}
#minornavigation li {
display: inline-block;
/* IE6-IE7 fix to get something like inline-block, which is not supported
on those browser. Ref:
http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/ */
zoom: 1;
*display: inline;
margin-right: 3px;
padding: 5px 11px 5px 9px;

Expand Down

0 comments on commit 7af8c36

Please sign in to comment.