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