OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 #timeline-view-selection-div { | 6 #timeline-view-selection-div { |
7 display: inline-block; | 7 display: inline-block; |
8 overflow-y: auto; | 8 overflow-y: auto; |
9 } | 9 } |
10 | 10 |
11 #timeline-view-selection-toggle { | 11 #timeline-view-selection-toggle { |
12 cursor: pointer; | 12 background-color: #fff; |
| 13 background-image: url(chrome://resources/images/select.png); |
| 14 border: none; |
| 15 height: 8px; |
| 16 padding: none; |
| 17 width: 19px; |
13 } | 18 } |
14 | 19 |
15 .timeline-view-rotateleft { | 20 .timeline-view-rotateleft { |
16 -webkit-transform: rotate(90deg); | 21 -webkit-transform: rotate(90deg); |
17 } | 22 } |
18 | 23 |
19 .timeline-view-rotateright { | 24 .timeline-view-rotateright { |
20 -webkit-transform: rotate(270deg); | 25 -webkit-transform: rotate(270deg); |
21 } | 26 } |
22 | 27 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 } | 90 } |
86 | 91 |
87 #timeline-view-scrollbar-div { | 92 #timeline-view-scrollbar-div { |
88 overflow-x: scroll; | 93 overflow-x: scroll; |
89 overflow-y: hidden; | 94 overflow-y: hidden; |
90 } | 95 } |
91 | 96 |
92 #timeline-view-scrollbar-inner-div { | 97 #timeline-view-scrollbar-inner-div { |
93 height: 1px; | 98 height: 1px; |
94 } | 99 } |
OLD | NEW |