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 .elements-disclosure { | 7 .elements-disclosure { |
8 width: 100%; | 8 width: 100%; |
9 display: inline-block; | 9 display: inline-block; |
10 line-height: normal; | 10 line-height: normal; |
(...skipping 10 matching lines...) Expand all Loading... | |
21 } | 21 } |
22 | 22 |
23 .elements-disclosure li.parent { | 23 .elements-disclosure li.parent { |
24 /** Keep it in sync with ElementsTreeElements.updateDecorators **/ | 24 /** Keep it in sync with ElementsTreeElements.updateDecorators **/ |
25 margin-left: -13px; | 25 margin-left: -13px; |
26 } | 26 } |
27 | 27 |
28 .elements-disclosure li.selected:after { | 28 .elements-disclosure li.selected:after { |
29 font-style: italic; | 29 font-style: italic; |
30 content: " == $0"; | 30 content: " == $0"; |
31 color: #555; | 31 color: black; |
32 opacity: 0.6; | |
dgozman
2016/01/30 16:36:39
That's another patch.
pfeldman
2016/01/31 16:04:13
Ouch.
| |
32 } | 33 } |
33 | 34 |
34 .elements-disclosure ol:focus li.selected:after { | 35 .elements-disclosure ol:focus li.selected:after { |
35 color: white; | 36 color: white; |
36 } | 37 } |
37 | 38 |
38 .elements-disclosure li.parent::before { | 39 .elements-disclosure li.parent::before { |
39 box-sizing: border-box; | 40 box-sizing: border-box; |
40 } | 41 } |
41 | 42 |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
339 -webkit-mask-size: 352px 168px; | 340 -webkit-mask-size: 352px 168px; |
340 background-color: white; | 341 background-color: white; |
341 cursor: pointer; | 342 cursor: pointer; |
342 } | 343 } |
343 | 344 |
344 @media (-webkit-min-device-pixel-ratio: 1.5) { | 345 @media (-webkit-min-device-pixel-ratio: 1.5) { |
345 .elements-disclosure li.selected .gutter-container:not(.has-decorations) { | 346 .elements-disclosure li.selected .gutter-container:not(.has-decorations) { |
346 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 347 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
347 } | 348 } |
348 } /* media */ | 349 } /* media */ |
OLD | NEW |