blob: 2d12003616a8156d4a74e48833b226b84e74cf08 (
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
|
ul.tabbar{
background-color: #E9E9E9;
border-bottom: 1px solid #9C9C9C;
border-top: 1px solid white;
padding: 0px;
margin: 0px;
list-style-type: none;
height: 35px;
}
ul.tabbar > li{
background-color: #B6B6B6;
padding: 5px;
margin: 0px;
margin-left: 0.5em;
height: 20px;
float: left;
display: block;
margin-top: 4px;
}
ul.tabbar > li.selected{
border-bottom: 1px solid white;
border-left: 1px solid #9C9C9C;
border-top: 1px solid #9C9C9C;
border-right: 1px solid #9C9C9C;
background-color: white;
}
ul.tabbar > li:hover{
background-color: #3058A3;
color: white;
cursor: pointer;
}
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;
}
|