Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 :host { | 7 :host { |
| 8 padding: 0; | 8 padding: 0; |
| 9 margin: 0; | 9 margin: 0; |
| 10 display: inline-flex; | 10 display: inline-flex; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 -webkit-mask-size: 352px 168px; | 47 -webkit-mask-size: 352px 168px; |
| 48 -webkit-mask-position: -128px -110px; | 48 -webkit-mask-position: -128px -110px; |
| 49 } | 49 } |
| 50 | 50 |
| 51 @media (-webkit-min-device-pixel-ratio: 1.5) { | 51 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 52 input.dt-checkbox-themed:after { | 52 input.dt-checkbox-themed:after { |
| 53 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 53 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 54 } | 54 } |
| 55 | 55 |
| 56 } /* media */ | 56 } /* media */ |
| 57 | |
| 58 ::content .dt-checkbox-text { | |
|
lushnikov
2016/04/20 23:50:33
this rule affects a lot of checkboxes in the front
luoe
2016/04/22 00:44:50
Done.
| |
| 59 font-size: 13px; | |
| 60 margin-left: 6px; | |
| 61 } | |
| 62 | |
| 63 ::content .dt-checkbox-subtitle { | |
| 64 font-size: 12px; | |
|
lushnikov
2016/04/20 23:50:33
i'd strip this down to color: gray and margin-top
luoe
2016/04/22 00:44:50
I cut it down to just color: gray. Margins may va
| |
| 65 color: gray; | |
| 66 margin-top: 4px; | |
| 67 } | |
| OLD | NEW |