Home | History | Annotate | Download | only in net_internals
      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   cursor: pointer;
     13 }
     14 
     15 .timeline-view-rotateleft {
     16   -webkit-transform: rotate(90deg);
     17 }
     18 
     19 .timeline-view-rotateright {
     20   -webkit-transform: rotate(270deg);
     21 }
     22 
     23 #timeline-view-selection-div ul {
     24   margin-top: 0;
     25   padding-left: 10px;
     26 }
     27 
     28 #timeline-view-selection-div li {
     29   list-style: none;
     30   white-space: nowrap;
     31 }
     32 
     33 .timeline-view-text {
     34   color: black;
     35 }
     36 
     37 #timeline-view-open-sockets {
     38   color: rgb(170, 0, 170);
     39 }
     40 
     41 #timeline-view-in-use-sockets {
     42   color: rgb(255, 51, 204);
     43 }
     44 
     45 #timeline-view-url-requests {
     46   color: black;
     47 }
     48 
     49 #timeline-view-dns-requests {
     50   color: rgb(102, 187, 187);
     51 }
     52 
     53 #timeline-view-dns-jobs {
     54   color: rgb(150, 20, 29);
     55 }
     56 
     57 #timeline-view-bytes-received {
     58   color: rgb(0, 187, 0);
     59 }
     60 
     61 #timeline-view-bytes-sent {
     62   color: red;
     63 }
     64 
     65 #timeline-view-disk-cache-bytes-read {
     66   color: rgb(0, 0, 255);
     67 }
     68 
     69 #timeline-view-disk-cache-bytes-written {
     70   color: #999;
     71 }
     72 
     73 /* Need the id in this rule to override the above color rules. */
     74 #timeline-view-selection-div .timeline-view-hidden {
     75   color: white;
     76 }
     77 
     78 #timeline-view-graph-div {
     79   background-color: white;
     80 }
     81 
     82 #timeline-view-graph-canvas {
     83   cursor: pointer;
     84   padding: 10px 10px 2px;
     85 }
     86 
     87 #timeline-view-scrollbar-div {
     88   overflow-x: scroll;
     89   overflow-y: hidden;
     90 }
     91 
     92 #timeline-view-scrollbar-inner-div {
     93   height: 1px;
     94 }
     95