blob: 5600beee56dbf696432a00fe86111959a00d4a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.tab-switcher-view {
font-family: sans-serif;
}
.tab-switcher-view ul {
list-style: none;
padding: 0;
margin: 0;
}
.tab-switcher-view {
border-bottom: 1px solid #555;
background: #aaa;
overflow: hidden;
}
.tab-switcher-view li {
float: left;
-webkit-margin-start: 5px;
}
html[dir=rtl] .tab-switcher-view li {
float: right;
}
.tab-switcher-view a {
text-decoration: none;
text-align: center;
display: inline-block;
margin-top: 4px;
padding: 5px 10px 3px 10px;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
background-clip: border-box;
background: #ccc;
}
.tab-switcher-view a:hover {
background: #eee;
}
.tab-switcher-view a:visited,
.tab-switcher-view a {
color: blue;
}
.tab-switcher-view .selected {
background: white;
}
.tab-switcher-view a.selected {
position: relative;
top: 3px;
color: black;
}
|