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   background-color: #fff;
     13   background-image: url(chrome://resources/images/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-requests {
     55   color: rgb(102, 187, 187);
     56 }
     57 
     58 #timeline-view-dns-jobs {
     59   color: rgb(150, 20, 29);
     60 }
     61 
     62 #timeline-view-bytes-received {
     63   color: rgb(0, 187, 0);
     64 }
     65 
     66 #timeline-view-bytes-sent {
     67   color: red;
     68 }
     69 
     70 #timeline-view-disk-cache-bytes-read {
     71   color: rgb(0, 0, 255);
     72 }
     73 
     74 #timeline-view-disk-cache-bytes-written {
     75   color: #999;
     76 }
     77 
     78 /* Need the id in this rule to override the above color rules. */
     79 #timeline-view-selection-div .timeline-view-hidden {
     80   color: white;
     81 }
     82 
     83 #timeline-view-graph-div {
     84   background-color: white;
     85 }
     86 
     87 #timeline-view-graph-canvas {
     88   cursor: pointer;
     89   padding: 10px 10px 2px;
     90 }
     91 
     92 #timeline-view-scrollbar-div {
     93   overflow-x: scroll;
     94   overflow-y: hidden;
     95 }
     96 
     97 #timeline-view-scrollbar-inner-div {
     98   height: 1px;
     99 }
    100