OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Copyright (c) 2011 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 #timeline-view-selection-div { |
| 8 overflow-x: hidden; |
| 9 overflow-y: auto; |
| 10 } |
| 11 |
| 12 #timeline-view-selection-div li { |
| 13 list-style: none; |
| 14 white-space: nowrap; |
| 15 } |
| 16 |
| 17 .timeline-view-text { |
| 18 color: black; |
| 19 } |
| 20 |
| 21 #timeline-view-open-sockets { |
| 22 color: #A0A; |
| 23 } |
| 24 |
| 25 #timeline-view-in-use-sockets { |
| 26 color: #F3C; |
| 27 } |
| 28 |
| 29 #timeline-view-url-requests { |
| 30 color: black; |
| 31 } |
| 32 |
| 33 #timeline-view-dns-requests { |
| 34 color: #6BB; |
| 35 } |
| 36 |
| 37 #timeline-view-bytes-received { |
| 38 color: #0B0; |
| 39 } |
| 40 |
| 41 #timeline-view-bytes-sent { |
| 42 color: red; |
| 43 } |
| 44 |
| 45 #timeline-view-disk-cache-bytes-read { |
| 46 color: #00F; |
| 47 } |
| 48 |
| 49 #timeline-view-disk-cache-bytes-written { |
| 50 color: #999; |
| 51 } |
| 52 |
| 53 /* Need the id in this rule to override the above color rules. */ |
| 54 #timeline-view-selection-div .timeline-view-hidden { |
| 55 color: white; |
| 56 } |
| 57 |
| 58 #timeline-view-graph-div { |
| 59 background-color: white; |
| 60 } |
| 61 |
| 62 #timeline-view-graph-canvas { |
| 63 padding: 10px 10px 2px 10px; |
| 64 cursor: pointer; |
| 65 } |
| 66 |
| 67 #timeline-view-scrollbar-div { |
| 68 overflow-y: hidden; |
| 69 overflow-x: scroll; |
| 70 } |
| 71 |
| 72 #timeline-view-scrollbar-inner-div { |
| 73 height: 1px; |
| 74 } |
OLD | NEW |