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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 } | 297 } |
298 | 298 |
299 ol:hover > li > .elements-tree-shortcut-link { | 299 ol:hover > li > .elements-tree-shortcut-link { |
300 display: initial; | 300 display: initial; |
301 } | 301 } |
302 | 302 |
303 .elements-tree-shortcut-link { | 303 .elements-tree-shortcut-link { |
304 color: rgb(87, 87, 87); | 304 color: rgb(87, 87, 87); |
305 display: none; | 305 display: none; |
306 } | 306 } |
| 307 |
| 308 ol:focus li.selected .webkit-html-tag { |
| 309 color: #a5a5a5; |
| 310 } |
| 311 |
| 312 ol:focus li.selected .webkit-html-tag-name, |
| 313 ol:focus li.selected .webkit-html-close-tag-name, |
| 314 ol:focus li.selected .webkit-html-attribute-value, |
| 315 ol:focus li.selected .webkit-html-external-link, |
| 316 ol:focus li.selected .webkit-html-resource-link { |
| 317 color: white; |
| 318 } |
| 319 |
| 320 ol:focus li.selected .webkit-html-attribute-name { |
| 321 color: #ccc; |
| 322 } |
OLD | NEW |