| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 .elements-gutter-decoration.elements-has-decorated-children { | 234 .elements-gutter-decoration.elements-has-decorated-children { |
| 235 opacity: 0.5; | 235 opacity: 0.5; |
| 236 } | 236 } |
| 237 | 237 |
| 238 .add-attribute { | 238 .add-attribute { |
| 239 margin-left: 1px; | 239 margin-left: 1px; |
| 240 margin-right: 1px; | 240 margin-right: 1px; |
| 241 white-space: nowrap; | 241 white-space: nowrap; |
| 242 } | 242 } |
| 243 | 243 |
| 244 .webkit-html-attribute-value a { | |
| 245 cursor: default !important; | |
| 246 } | |
| 247 | |
| 248 .elements-tree-nowrap, .elements-tree-nowrap .li { | 244 .elements-tree-nowrap, .elements-tree-nowrap .li { |
| 249 white-space: pre !important; | 245 white-space: pre !important; |
| 250 } | 246 } |
| 251 | 247 |
| 252 .elements-disclosure .elements-tree-nowrap li { | 248 .elements-disclosure .elements-tree-nowrap li { |
| 253 word-wrap: normal; | 249 word-wrap: normal; |
| 254 } | 250 } |
| 255 | 251 |
| 256 /* DOM update highlight */ | 252 /* DOM update highlight */ |
| 257 @-webkit-keyframes dom-update-highlight-animation { | 253 @-webkit-keyframes dom-update-highlight-animation { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 display: none; | 304 display: none; |
| 309 } | 305 } |
| 310 | 306 |
| 311 ol:focus li.selected .webkit-html-tag { | 307 ol:focus li.selected .webkit-html-tag { |
| 312 color: #a5a5a5; | 308 color: #a5a5a5; |
| 313 } | 309 } |
| 314 | 310 |
| 315 ol:focus li.selected .webkit-html-tag-name, | 311 ol:focus li.selected .webkit-html-tag-name, |
| 316 ol:focus li.selected .webkit-html-close-tag-name, | 312 ol:focus li.selected .webkit-html-close-tag-name, |
| 317 ol:focus li.selected .webkit-html-attribute-value, | 313 ol:focus li.selected .webkit-html-attribute-value, |
| 318 ol:focus li.selected .webkit-html-external-link, | 314 ol:focus li.selected .devtools-link { |
| 319 ol:focus li.selected .webkit-html-resource-link { | |
| 320 color: white; | 315 color: white; |
| 321 } | 316 } |
| 322 | 317 |
| 323 ol:focus li.selected .webkit-html-attribute-name { | 318 ol:focus li.selected .webkit-html-attribute-name { |
| 324 color: #ccc; | 319 color: #ccc; |
| 325 } | 320 } |
| 326 | 321 |
| 327 .elements-disclosure .gutter-container { | 322 .elements-disclosure .gutter-container { |
| 328 position: absolute; | 323 position: absolute; |
| 329 top: 0; | 324 top: 0; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 border-color: hsla(0,0%,0%,0.1); | 359 border-color: hsla(0,0%,0%,0.1); |
| 365 } | 360 } |
| 366 | 361 |
| 367 .elements-tree-outline ol.shadow-root { | 362 .elements-tree-outline ol.shadow-root { |
| 368 border-color: hsla(0,0%,80%,1); | 363 border-color: hsla(0,0%,80%,1); |
| 369 } | 364 } |
| 370 | 365 |
| 371 li.selected:not(.always-parent) + ol.children { | 366 li.selected:not(.always-parent) + ol.children { |
| 372 border-color: hsla(216,68%,80%,1) !important; | 367 border-color: hsla(216,68%,80%,1) !important; |
| 373 } | 368 } |
| OLD | NEW |