-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (58 loc) · 1.12 KB
/
index.css
File metadata and controls
69 lines (58 loc) · 1.12 KB
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
62
63
64
65
66
67
68
69
/* alice.tab 样式模块 */
@charset "utf-8";
.ui-tab {
margin: 0;
padding: 0;
}
.ui-tab ul {
list-style: none;
margin: 0;
padding: 0;
}
.ui-tab li {
list-style: none;
vertical-align: top;
position: relative;
top: 1px;
}
.ui-tab-items {
border-bottom: 1px solid #E5E5E5;
font-size: 14px;
}
.ui-tab-item {
display: inline-block;
display: inline\0; /* fix https://github.com/aliceui/tab/issues/1 */
*display: inline;
*zoom: 1;
*margin-right: 4px;
}
.ui-tab-item a {
border-radius: 3px 3px 0 0;
background: #fff;
line-height: 32px;
height: 32px;
padding: 0 10px;
border: 1px solid #E5E5E5;
border-bottom: none;
color: #4D4D4D;
display: inline-block;
*display: inline;
*zoom: 1;
transition: background-color 0.4s ease-out, color 0.4s ease-out;
}
.ui-tab-item a,
.ui-tab-item a:hover,
.ui-tab-item a:active {
color: #4D4D4D;
}
.ui-tab-item-current a {
font-weight: bold;
height: 33px;
}
.ui-tab-item a:hover {
background: #f6f6f6;
text-decoration: none;
}
.ui-tab-item-current a:hover {
background: #fff;
}