| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 ol li.selected:focus .webkit-html-attribute-name { | 317 ol li.selected:focus .webkit-html-attribute-name { |
| 318 color: #ccc; | 318 color: #ccc; |
| 319 } | 319 } |
| 320 | 320 |
| 321 .elements-disclosure .gutter-container { | 321 .elements-disclosure .gutter-container { |
| 322 position: absolute; | 322 position: absolute; |
| 323 top: 0; | 323 top: 0; |
| 324 left: 0; | 324 left: 0; |
| 325 cursor: pointer; | 325 cursor: pointer; |
| 326 width: 15px; |
| 327 height: 15px; |
| 326 } | 328 } |
| 327 | 329 |
| 328 .gutter-menu-icon { | 330 .gutter-menu-icon { |
| 329 display: none; | 331 display: none; |
| 330 transform: rotate(-90deg) scale(0.8); | 332 transform: rotate(-90deg) scale(0.8); |
| 331 background-color: white; | 333 background-color: white; |
| 332 position: relative; | 334 position: relative; |
| 333 left: -7px; | 335 left: -7px; |
| 334 top: -3px; | 336 top: -3px; |
| 335 } | 337 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 354 border-color: hsla(0,0%,0%,0.1); | 356 border-color: hsla(0,0%,0%,0.1); |
| 355 } | 357 } |
| 356 | 358 |
| 357 .elements-tree-outline ol.shadow-root { | 359 .elements-tree-outline ol.shadow-root { |
| 358 border-color: hsla(0,0%,80%,1); | 360 border-color: hsla(0,0%,80%,1); |
| 359 } | 361 } |
| 360 | 362 |
| 361 li.selected:not(.always-parent) + ol.children { | 363 li.selected:not(.always-parent) + ol.children { |
| 362 border-color: hsla(216,68%,80%,1) !important; | 364 border-color: hsla(216,68%,80%,1) !important; |
| 363 } | 365 } |
| OLD | NEW |