blob: 262f5c493303ccc23918576038c0254ded74df8c (
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
62
63
64
65
66
67
68
69
70
71
72
|
ul.tabbar{
background-color: transparent;
padding: 0px;
margin: 0px;
list-style-type: none;
height:20px;
}
ul.tabbar > li{
background-image: -moz-linear-gradient(top center, white, #D8D8D8);
border-radius: 5px 5px 0px 0px;
padding: 5px;
margin: 0px;
margin-right: 1px;
height: 20px;
float: left;
display: block;
margin-top: 0px;
width: 200px;
overflow: hidden;
color: #2D2D2D;
}
ul.tabbar > li.selected{
background-image:none;
background-color: #3765BB;
box-shadow: 2px -2px 2px #434343;
color: white;
}
ul.tabbar > li:hover{
color: #3765BB;
cursor: pointer;
}
ul.tabbar > li.selected:hover{
color: #2D2D2D;
}
ul.tabbar > li > span.tab-close{
display: block;
width: 15px;
height: 15px;
float: right;
margin-left: 5px;
margin-top: 2px;
background-image: url("images/cross.png");
}
ul.tabbar > li:hover > span.tab-close{
background-image: url("images/cross2.png");
}
ul.tabbar > li > a{
color: inherit;
}
ul.tabbar > li > a:hover{
text-decoration: none;
}
ul.tabbar > li > a:focus{
border: none;
}
.tab{
padding: 10px;
height: 100%;
display: none;
background-color: white;
box-shadow: 5px 5px 5px 0px #434343;
}
|