OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #timeline-view-selection-div { |
| 7 display: inline-block; |
| 8 overflow-y: auto; |
| 9 } |
| 10 |
| 11 #timeline-view-selection-toggle { |
| 12 background-color: #fff; |
| 13 background-image: url(select.png); |
| 14 border: none; |
| 15 height: 8px; |
| 16 padding: none; |
| 17 width: 19px; |
| 18 } |
| 19 |
| 20 .timeline-view-rotateleft { |
| 21 -webkit-transform: rotate(90deg); |
| 22 } |
| 23 |
| 24 .timeline-view-rotateright { |
| 25 -webkit-transform: rotate(270deg); |
| 26 } |
| 27 |
| 28 #timeline-view-selection-div ul { |
| 29 margin-top: 0; |
| 30 padding-left: 10px; |
| 31 } |
| 32 |
| 33 #timeline-view-selection-div li { |
| 34 list-style: none; |
| 35 white-space: nowrap; |
| 36 } |
| 37 |
| 38 .timeline-view-text { |
| 39 color: black; |
| 40 } |
| 41 |
| 42 #timeline-view-open-sockets { |
| 43 color: rgb(170, 0, 170); |
| 44 } |
| 45 |
| 46 #timeline-view-in-use-sockets { |
| 47 color: rgb(255, 51, 204); |
| 48 } |
| 49 |
| 50 #timeline-view-url-requests { |
| 51 color: black; |
| 52 } |
| 53 |
| 54 #timeline-view-dns-jobs { |
| 55 color: rgb(150, 20, 29); |
| 56 } |
| 57 |
| 58 #timeline-view-bytes-received { |
| 59 color: rgb(0, 187, 0); |
| 60 } |
| 61 |
| 62 #timeline-view-bytes-sent { |
| 63 color: red; |
| 64 } |
| 65 |
| 66 #timeline-view-disk-cache-bytes-read { |
| 67 color: rgb(0, 0, 255); |
| 68 } |
| 69 |
| 70 #timeline-view-disk-cache-bytes-written { |
| 71 color: #999; |
| 72 } |
| 73 |
| 74 /* Need the id in this rule to override the above color rules. */ |
| 75 #timeline-view-selection-div .timeline-view-hidden { |
| 76 color: white; |
| 77 } |
| 78 |
| 79 #timeline-view-graph-div { |
| 80 background-color: white; |
| 81 } |
| 82 |
| 83 #timeline-view-graph-canvas { |
| 84 cursor: pointer; |
| 85 padding: 10px 10px 2px; |
| 86 } |
| 87 |
| 88 #timeline-view-scrollbar-div { |
| 89 overflow-x: scroll; |
| 90 overflow-y: hidden; |
| 91 } |
| 92 |
| 93 #timeline-view-scrollbar-inner-div { |
| 94 height: 1px; |
| 95 } |
| 96 |
OLD | NEW |