blob: 0faf9723a2fdfd2b534e635e97828af4cc096a34 (
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
|
.i-tabsheet-spacertd div {
border-color: #bfbfbf;
border-left: none;
}
.i-tabsheet-tabitem {
border: none;
border-bottom: 1px solid #bfbfbf;
color: #4d748f;
padding: 0;
}
.i-tabsheet-tabitem .i-caption {
padding: 5px 16px;
}
.i-tabsheet-tabitem-selected {
border: 1px solid #bfbfbf;
border-bottom: none;
color: #222;
}
.i-tabsheet-tabitem-selected .i-caption {
padding: 4px 15px 6px 15px;
}
.i-tabsheet-content {
border: none;
}
.i-tabsheet-deco {
height: 0;
}
.i-tabsheet-tabs .i-icon,
.i-tabsheet-tabs .i-captiontext,
.i-tabsheet-tabs .i-errorindicator {
display: inline;
float: none;
}
.i-sa .i-tabsheet-tabs .i-captiontext {
display: inline-block;
}
.i-tabsheet-tabs .i-icon {
width: 16px !important;
height: 16px !important;
}
.i-tabsheet-tabs .i-errorindicator {
display: inline-block;
width: 5px;
height: 16px;
background: transparent url(../../default/icons/16/error.png) no-repeat -1px 50%;
}
.i-ff2 .i-tabsheet-tabs .i-icon,
.i-ff2 .i-tabsheet-tabs .i-errorindicator {
display: -moz-inline-stack;
}
.i-ie6 .i-tabsheet-tabs .i-errorindicator {
background-image: url(../../default/icons/16/error.gif);
}
.i-ie .i-tabsheet-tabs .i-errorindicator {
zoom: 1;
display: inline;
}
/* Tabsheet on blue background */
.blue .i-tabsheet-spacertd div,
.blue .i-tabsheet-tabitem,
.blue .i-tabsheet-tabitem-selected {
border-color: #7c8a91;
}
|