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 
      6 .track-button {
      7   background-color: rgba(255, 255, 255, 0.5);
      8   border: 1px solid rgba(0, 0, 0, 0.1);
      9   color: rgba(0,0,0,0.2);
     10   font-size: 10px;
     11   height: 12px;
     12   text-align: center;
     13   width: 12px;
     14 }
     15 
     16 .track-button:hover {
     17   background-color: rgba(255, 255, 255, 1.0);
     18   border: 1px solid rgba(0, 0, 0, 0.5);
     19   box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
     20   color: rgba(0, 0, 0, 1);
     21 }
     22 
     23 .track-close-button {
     24   left: 2px;
     25   position: absolute;
     26   top: 2px;
     27 }
     28 
     29 .track-collapse-button {
     30   left: 3px;
     31   position: absolute;
     32   top: 2px;
     33 }
     34