Opened 12 years ago
Closed 12 years ago
#6903 closed bug (fixed)
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:
Here's a diff of the changes I made to http://static.jquery.com/ui/css/base2.css to this fix this issue locally:
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:
$("link[type=text/css]").attr("href", "http://dl.dropbox.com/u/7463684/base2.css")
Change History (2)
comment:1 Changed 12 years ago by
Component: | ui.core → [meta] ui.site |
---|---|
Owner: | set to jquery-infrastructure |
comment:2 Changed 12 years ago by
Milestone: | 1.9 → 1.8.10 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed (and live). Thanks.