1/* 2Copyright (c) 2011 The Chromium Authors. All rights reserved. 3Use of this source code is governed by a BSD-style license that can be 4found in the LICENSE file. 5*/ 6.timeline { 7 -webkit-user-select: none; 8} 9 10.timeline-drag-box { 11 position: fixed; 12 background-color: rgba(0, 0, 255, 0.25); 13 border: 1px solid rgb(0, 0, 96); 14 font-size: 75%; 15} 16 17.timeline-thread-track { 18 display: -webkit-box; 19 -webkit-box-orient: vertical; 20 padding-top: 1px; 21 padding-bottom: 1px; 22} 23 24.timeline-thread-track:not(:first-child) { 25 border-top: 1px solid #D0D0D0; 26} 27 28.timeline-slice-track { 29 display: -webkit-box; 30 -webkit-box-orient: horizontal; 31 -webkit-box-align: stretch; 32 background-color: white; 33 padding-right: 5px; 34 margin: 0; 35 padding: 0; 36 height: 18px; 37} 38 39.timeline-slice-track-title { 40 text-align: right; 41 overflow: visible; 42 width: 150px; 43 padding-right: 5px; 44} 45 46.timeline-slice-track-canvas-container { 47 -webkit-box-flex: 1; 48 width: 100%; 49} 50 51.timeline-slice-track-canvas { 52 -webkit-box-flex: 1; 53 width: 100%; 54 height: 100%; 55} 56