Home | History | Annotate | Download | only in tracks
      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 .canvas-based-track {
      6   -webkit-box-align: stretch;
      7   -webkit-box-orient: horizontal;
      8   background-color: white;
      9   display: -webkit-box;
     10   margin: 0;
     11   padding: 0 5px 0 0;
     12 }
     13 
     14 .canvas-based-track-title {
     15   background-color: #d6dde5;
     16   border-right: 1px solid #8e8e8e;
     17   overflow: hidden;
     18   padding-right: 5px;
     19   padding-left: 18px;
     20   text-align: left;
     21   text-overflow: ellipsis;
     22   white-space: nowrap;
     23 }
     24 
     25 .canvas-based-track-canvas-container {
     26   -webkit-box-flex: 1;
     27   width: 100%;
     28 }
     29 
     30 .canvas-based-track-canvas {
     31   -webkit-box-flex: 1;
     32   display: block;
     33 }
     34