Home | History | Annotate | Download | only in tracing
      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 .timeline * {
      6   -webkit-user-select: none;
      7   cursor: default;
      8 }
      9 
     10 .timeline-drag-box {
     11   background-color: rgba(0, 0, 255, 0.25);
     12   border: 1px solid rgb(0, 0, 96);
     13   font-size: 75%;
     14   position: fixed;
     15 }
     16 
     17 .timeline-thread-track {
     18   -webkit-box-orient: vertical;
     19   display: -webkit-box;
     20   padding: 1px 0;
     21   position: relative;
     22 }
     23 
     24 .timeline-track-button {
     25   background-color: rgba(255, 255, 255, 0.5);
     26   border: 1px solid rgba(0, 0, 0, 0.1);
     27   color: rgba(0,0,0,0.2);
     28   font-size: 10px;
     29   height: 12px;
     30   text-align: center;
     31   width: 12px;
     32 }
     33 
     34 .timeline-track-button:hover {
     35   background-color: rgba(255, 255, 255, 1.0);
     36   border: 1px solid rgba(0, 0, 0, 0.5);
     37   border-radius: 25%;
     38   box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
     39   color: rgba(0, 0, 0, 1);
     40 }
     41 
     42 .timeline-track-close-button {
     43   left: 0;
     44   position: absolute;
     45   top: 0;
     46 }
     47 
     48 .timeline-track-collapse-button {
     49   left: 15px;
     50   position: absolute;
     51   top: 0;
     52 }
     53 
     54 .timeline-thread-track:not(:first-child) {
     55   border-top: 1px solid #D0D0D0;
     56 }
     57 
     58 .timeline-canvas-based-track {
     59   -webkit-box-align: stretch;
     60   -webkit-box-orient: horizontal;
     61   background-color: white;
     62   display: -webkit-box;
     63   margin: 0;
     64   padding: 0 5px 0 0;
     65 }
     66 
     67 .timeline-canvas-based-track-title {
     68   overflow: hidden;
     69   padding-right: 5px;
     70   text-align: right;
     71   text-overflow: ellipsis;
     72   white-space: nowrap;
     73 }
     74 
     75 .timeline-canvas-based-track-canvas-container {
     76   -webkit-box-flex: 1;
     77   width: 100%;
     78 }
     79 
     80 .timeline-canvas-based-track-canvas {
     81   -webkit-box-flex: 1;
     82   display: block;
     83   height: 100%;
     84   width: 100%;
     85 }
     86 
     87 .timeline-viewport-track {
     88   height: 12px;
     89 }
     90 
     91 .timeline-slice-track {
     92   height: 18px;
     93 }
     94 
     95 .timeline-counter-track {
     96   height: 30px;
     97   position: relative;
     98 }
     99