OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .tree-outline > ol { |
| 8 padding-bottom: 5px; |
| 9 } |
| 10 |
| 11 .tree-outline > .parent { |
| 12 -webkit-user-select: none; |
| 13 font-weight: bold; |
| 14 color: #616161; |
| 15 margin-top: -1px; |
| 16 height: 20px; |
| 17 border-top: solid 1px #e0e0e0; |
| 18 display: flex; |
| 19 align-items: center; |
| 20 } |
| 21 |
| 22 .tree-outline li { |
| 23 display: block; |
| 24 } |
| 25 |
| 26 .tree-outline li:not(.parent) { |
| 27 margin-left: 10px; |
| 28 } |
| 29 |
| 30 .tree-outline li:not(.parent)::before { |
| 31 display: none; |
| 32 } |
| 33 |
| 34 .tree-outline .caution { |
| 35 margin-left: 4px; |
| 36 display: inline-block; |
| 37 font-weight: bold; |
| 38 } |
| 39 |
| 40 .tree-outline li.expanded .header-count { |
| 41 display: none; |
| 42 } |
| 43 |
| 44 .tree-outline li .header-toggle { |
| 45 display: none; |
| 46 } |
| 47 |
| 48 .tree-outline li .status-from-cache { |
| 49 color: gray; |
| 50 } |
| 51 |
| 52 .tree-outline li.expanded .header-toggle { |
| 53 display: inline; |
| 54 margin-left: 30px; |
| 55 font-weight: normal; |
| 56 color: rgb(45%, 45%, 45%); |
| 57 } |
| 58 |
| 59 .tree-outline li .header-toggle:hover { |
| 60 color: rgb(20%, 20%, 45%); |
| 61 cursor: pointer; |
| 62 } |
| 63 |
| 64 .tree-outline .header-name { |
| 65 color: rgb(33%, 33%, 33%); |
| 66 display: inline-block; |
| 67 margin-right: 0.5em; |
| 68 font-weight: bold; |
| 69 vertical-align: top; |
| 70 white-space: pre-wrap; |
| 71 } |
| 72 |
| 73 .tree-outline .header-value { |
| 74 display: inline; |
| 75 margin-right: 1em; |
| 76 white-space: pre-wrap; |
| 77 word-break: break-all; |
| 78 margin-top: 1px; |
| 79 } |
| 80 |
| 81 .tree-outline .empty-request-header { |
| 82 color: rgba(33%, 33%, 33%, 0.5); |
| 83 } |
OLD | NEW |