| OLD | NEW |
| 1 /* TODO(csilv): Re-order, rename selectors according to style guide. */ | 1 /* TODO(csilv): Re-order, rename selectors according to style guide. */ |
| 2 | 2 |
| 3 /* This is necessary because the fix for correctly wrapping labels | 3 /* This is necessary because the fix for correctly wrapping labels |
| 4 * (crbug.com/109334) requires labels to be display: block; however, this label | 4 * (crbug.com/109334) requires labels to be display: block; however, this label |
| 5 * has a button inline after it. | 5 * has a button inline after it. |
| 6 */ | 6 */ |
| 7 #home-page-label { | 7 #home-page-label { |
| 8 display: inline; | 8 display: inline; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 } | 119 } |
| 120 | 120 |
| 121 #enable-auto-login-checkbox { | 121 #enable-auto-login-checkbox { |
| 122 margin-top: 10px; | 122 margin-top: 10px; |
| 123 } | 123 } |
| 124 | 124 |
| 125 #mac-passwords-warning, | 125 #mac-passwords-warning, |
| 126 #manage-data-group { | 126 #manage-data-group { |
| 127 margin-top: 10px; | 127 margin-top: 10px; |
| 128 } | 128 } |
| 129 |
| 130 #pointer-sensitivity-more { |
| 131 float: right; |
| 132 } |
| 133 |
| 134 html[dir=rtl] #pointer-sensitivity-more { |
| 135 float: left; |
| 136 } |
| 137 |
| 138 #pointer-value, |
| 139 #slider-control { |
| 140 display: inline-block; |
| 141 vertical-align: top; |
| 142 } |
| OLD | NEW |