Search and Top Navigation
#6903 closed bug (fixed)
Opened January 26, 2011 11:54PM UTC
Closed February 04, 2011 08:30PM UTC
Text in "Build custom download" button wraps in Linux browsers
Reported by: | Xavi | Owned by: | jquery-infrastructure |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.10 |
Component: | [meta] ui.site | Version: | 1.8.8 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The "Build custom download" button on the homepage wraps in Linux browsers. See image:
[[Image(https://dl.dropbox.com/u/7463684/jquery-ui-wrap.png)]]
Here's a diff of the changes I made to http://static.jquery.com/ui/css/base2.css to this fix this issue locally:
#!diff 605c605 < #home-download { float:right; width:220px; } --- > #home-download { float:right; text-align: center; } 607,608c607,608 < #home-download ul { clear:left; padding:10px 0 0 18px; } < #home-download li { float:left; font-size:1.1em; padding:0 1em 0 0; } --- > #home-download ul { clear:left; padding:10px 0 0; } > #home-download li { font-size:1.1em; }
A version of base2.css with the changes above can be found here: http://dl.dropbox.com/u/7463684/base2.css
If you want to see these changes in action (sans the images) run this bit of javascript on the home page:
#!js $("link[type=text/css]").attr("href", "http://dl.dropbox.com/u/7463684/base2.css")