Chromium Code Reviews| Index: chrome/browser/resources/shared/css/checkbox.css |
| diff --git a/chrome/browser/resources/shared/css/checkbox.css b/chrome/browser/resources/shared/css/checkbox.css |
| index b441be30d9b2bf9cabdc7f16e6d085131f83ea98..16f573cb8d5834432d9d2dcf2d9886c7968d640b 100644 |
| --- a/chrome/browser/resources/shared/css/checkbox.css |
| +++ b/chrome/browser/resources/shared/css/checkbox.css |
| @@ -119,13 +119,15 @@ input[type='radio']:active:checked::before { |
| .checkbox label, |
| .radio label { |
| - display: -webkit-box; |
| + /* The extra 100px expands the clickable area past the end of the text. */ |
| + -webkit-padding-end: 100px; |
|
csilv
2012/01/31 23:56:40
I'd be more comfortable without this or a smaller
Evan Stade
2012/02/01 01:09:33
the justification is in the cl description. This m
|
| + /* Don't expand horizontally: http://crbug.com/112091 */ |
| + display: -webkit-inline-box; |
| } |
| -/* Make sure long spans wrap at the same place they start. */ |
| +/* Make sure long spans wrap at the same horizontal position they start. */ |
| .checkbox label input ~ span, |
| .radio label input ~ span { |
| - -webkit-box-flex: 1; |
| -webkit-margin-start: 0.4em; |
| display: block; |
| } |