#5787 closed bug (worksforme)
Google Chrome radio buttonset() with large fonts displays poorly
Reported by: | joshua.ganes | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.button | Version: | 1.8.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Google Chrome does not render a radio button button set properly when the font size is sufficiently large. Instead of nicely formatted buttons in a group, we see the circular portion of the native radio button control peeking out the side of the button group.
See http://jqueryui.com/demos/button/radio.html with the text size increased 3 to 4 times.
Change History (5)
comment:1 follow-up: 2 Changed 13 years ago by
comment:2 Changed 13 years ago by
- Math.pow(1.2,6) = 2.9859839999999993
- Math.pow(2,27) / 3 = 44739242.666666664
.ui-helper-hidden-accessible { position: absolute; left: -44739242px; }
may work.
comment:3 Changed 13 years ago by
I tried this without success. As a workaround, I've made a custom css rule for "ui-buttonset input" for my own site.
comment:4 Changed 11 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Worksforme, Chrome got a long way: http://bassistance.de/i/b7ea57.png
Note: See
TracTickets for help on using
tickets.
in jquery.ui.core.css,
in Google Chrome / Developer Tools / Computed Style, you can find the 'left' value.
because 1.44e+008 >= Math.pow(2, 27) ?