OLD | NEW |
(Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .request-headers-view { |
| 8 display: none; |
| 9 margin: 6px; |
| 10 -webkit-user-select: text; |
| 11 position: absolute; |
| 12 top: 0; |
| 13 left: 0; |
| 14 right: 0; |
| 15 bottom: 0; |
| 16 overflow: auto; |
| 17 } |
| 18 |
| 19 .request-headers-view.visible { |
| 20 display: block; |
| 21 } |
| 22 |
| 23 .request-headers-view .outline-disclosure > .parent { |
| 24 -webkit-user-select: none; |
| 25 font-weight: bold; |
| 26 } |
| 27 |
| 28 .request-headers-view .outline-disclosure > .parent > .section { |
| 29 font-weight: normal; |
| 30 } |
| 31 |
| 32 .request-headers-view .outline-disclosure .children li { |
| 33 white-space: nowrap; |
| 34 } |
| 35 |
| 36 .request-headers-view .outline-disclosure .caution { |
| 37 margin-left: 4px; |
| 38 display: inline-block; |
| 39 font-weight: bold; |
| 40 } |
| 41 |
| 42 .request-headers-view .outline-disclosure li.expanded .header-count { |
| 43 display: none; |
| 44 } |
| 45 |
| 46 .request-headers-view .outline-disclosure li .header-toggle { |
| 47 display: none; |
| 48 } |
| 49 |
| 50 .request-headers-view .outline-disclosure li .status-from-cache { |
| 51 color: gray; |
| 52 } |
| 53 |
| 54 .request-headers-view .outline-disclosure li.expanded .header-toggle { |
| 55 display: inline; |
| 56 margin-left: 30px; |
| 57 font-weight: normal; |
| 58 color: rgb(45%, 45%, 45%); |
| 59 } |
| 60 |
| 61 .request-headers-view .outline-disclosure li .header-toggle:hover { |
| 62 color: rgb(20%, 20%, 45%); |
| 63 cursor: pointer; |
| 64 } |
| 65 |
| 66 .request-headers-view .outline-disclosure .header-name { |
| 67 color: rgb(33%, 33%, 33%); |
| 68 display: inline-block; |
| 69 margin-right: 0.5em; |
| 70 font-weight: bold; |
| 71 vertical-align: top; |
| 72 white-space: pre-wrap; |
| 73 } |
| 74 |
| 75 .request-headers-view .outline-disclosure .header-value { |
| 76 display: inline; |
| 77 margin-right: 1em; |
| 78 white-space: pre-wrap; |
| 79 word-break: break-all; |
| 80 margin-top: 1px; |
| 81 } |
OLD | NEW |