OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 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 * { | 7 * { |
8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 padding: 1px; | 180 padding: 1px; |
181 margin: -1px; | 181 margin: -1px; |
182 background-color: rgba(255, 127, 0, 0.8); | 182 background-color: rgba(255, 127, 0, 0.8); |
183 } | 183 } |
184 | 184 |
185 .dimmed { | 185 .dimmed { |
186 opacity: 0.6; | 186 opacity: 0.6; |
187 } | 187 } |
188 | 188 |
189 .editing { | 189 .editing { |
190 -webkit-user-select: text; | |
191 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), | 190 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), |
192 0 2px 4px rgba(0, 0, 0, 0.2), | 191 0 2px 4px rgba(0, 0, 0, 0.2), |
193 0 2px 6px rgba(0, 0, 0, 0.1); | 192 0 2px 6px rgba(0, 0, 0, 0.1); |
194 background-color: white; | 193 background-color: white; |
195 -webkit-user-modify: read-write-plaintext-only; | |
196 text-overflow: clip !important; | 194 text-overflow: clip !important; |
197 padding-left: 2px; | 195 padding-left: 2px; |
198 margin-left: -2px; | 196 margin-left: -2px; |
199 padding-right: 2px; | 197 padding-right: 2px; |
200 margin-right: -2px; | 198 margin-right: -2px; |
201 margin-bottom: -1px; | 199 margin-bottom: -1px; |
202 padding-bottom: 1px; | 200 padding-bottom: 1px; |
203 opacity: 1.0 !important; | 201 opacity: 1.0 !important; |
204 } | 202 } |
205 | 203 |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); | 373 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima
ges/largeIcons_2x.png) 2x); |
376 -webkit-mask-position: var(--spritesheet-position); | 374 -webkit-mask-position: var(--spritesheet-position); |
377 background: white !important; | 375 background: white !important; |
378 } | 376 } |
379 | 377 |
380 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { | 378 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit
e-icons.spritesheet-mediumicons { |
381 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); | 379 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im
ages/mediumIcons_2x.png) 2x); |
382 -webkit-mask-position: var(--spritesheet-position); | 380 -webkit-mask-position: var(--spritesheet-position); |
383 background: white !important; | 381 background: white !important; |
384 } | 382 } |
OLD | NEW |