| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 -webkit-mask-position: -128px -110px; | 52 -webkit-mask-position: -128px -110px; |
| 53 } | 53 } |
| 54 | 54 |
| 55 @media (-webkit-min-device-pixel-ratio: 1.1) { | 55 @media (-webkit-min-device-pixel-ratio: 1.1) { |
| 56 input.dt-checkbox-themed:after { | 56 input.dt-checkbox-themed:after { |
| 57 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 57 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 58 } | 58 } |
| 59 | 59 |
| 60 } /* media */ | 60 } /* media */ |
| 61 | 61 |
| 62 ::content .dt-checkbox-text { | 62 .dt-checkbox-text { |
| 63 margin-left: 3px; | 63 margin-left: 3px; |
| 64 overflow: hidden; |
| 65 text-overflow: ellipsis; |
| 64 } | 66 } |
| 65 | 67 |
| 66 ::content .dt-checkbox-subtitle { | 68 .dt-checkbox-subtitle { |
| 67 color: gray; | 69 color: gray; |
| 68 } | 70 } |
| OLD | NEW |