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 .tab-switcher-view { | 6 .tab-switcher-view { |
7 border-right: 1px solid #aaa; | 7 border-right: 1px solid #aaa; |
8 display: inline-block; | 8 display: inline-block; |
9 font-family: sans-serif; | |
10 } | 9 } |
11 | 10 |
12 .tab-switcher-view { | 11 .tab-switcher-view { |
13 background: #eee; | 12 background: #eee; |
14 overflow-x: hidden; | 13 overflow-x: hidden; |
15 overflow-y: auto; | 14 overflow-y: auto; |
16 } | 15 } |
17 | 16 |
18 .tab-switcher-view a { | 17 .tab-switcher-view a { |
19 display: block; | 18 display: block; |
20 margin-top: 2px; | 19 margin-top: 0.15em; |
21 padding: 5px 10px 3px 10px; | 20 padding: 0.25em 0.5em 0.25em 0.5em; |
22 text-decoration: none; | 21 text-decoration: none; |
23 } | 22 } |
24 | 23 |
25 .tab-switcher-view a:hover, | 24 .tab-switcher-view a:hover, |
26 .tab-switcher-view .selected { | 25 .tab-switcher-view .selected { |
27 background: white; | 26 background: white; |
28 } | 27 } |
29 | 28 |
30 | 29 |
31 .tab-switcher-view a:visited, | 30 .tab-switcher-view a:visited, |
32 .tab-switcher-view a { | 31 .tab-switcher-view a { |
33 color: black; | 32 color: black; |
34 } | 33 } |
35 | 34 |
36 .tab-switcher-view a.selected { | 35 .tab-switcher-view a.selected { |
37 color: rgb(221, 75, 57); | 36 color: rgb(221, 75, 57); |
38 font-weight: bold; | 37 font-weight: bold; |
39 } | 38 } |
OLD | NEW |