blob: bfed4242f4aebdcf6e4968a9631a251a10cfded0 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
.v-panel {
background: transparent url(img/top-left.png) no-repeat;
}
.v-panel-caption .v-errorindicator {
padding-right: 20px;
background: transparent url(../icons/16/error.png) no-repeat bottom center;
}
.v-panel-caption,
.v-panel-caption-light {
font-size: 18px;
line-height: 18px;
font-weight: normal;
letter-spacing: -0.03em;
color: #f14c1a;
height: 18px;
padding: 15px 18px 14px 8px;
margin-left: 10px;
background: transparent url(img/top-right.png) no-repeat right top;
}
.v-panel-nocaption {
height: 9px;
margin-left: 10px;
background: transparent url(img/top-right.png) no-repeat right top;
}
.v-panel-content {
border: 1px solid #babfc0;
border-bottom: 1px solid #dee2e3;
background-color: #fff;
}
.v-panel-deco {
height: 9px;
background: transparent url(img/bottom-right.png) repeat-x right top;
margin-left: 9px;
}
.v-panel-deco:before {
display: block;
content: "";
width: 9px;
height: 9px;
margin-left: -9px;
background: transparent url(img/bottom-left.png) no-repeat;
}
/* Light panel style */
.v-panel-light,
.v-panel-caption-light {
background: transparent;
}
.v-panel-nocaption-light {
background: transparent;
height: 0;
margin: 0;
}
.v-panel-content-light {
border: none;
border-top: 1px solid #babfc0;
background: transparent;
}
.v-panel-deco-light {
height: 0;
overflow: hidden;
}
/* IE specific rules */
.v-ie6 .v-panel {
background: transparent;
}
.v-ie6 .v-panel-caption {
border: 1px solid #babfc0;
border-bottom: none;
background: #fff;
margin: 0;
padding-left: 18px
}
.v-ie6 .v-panel-nocaption {
border: none;
background: transparent;
margin: 0;
height: 0;
}
.v-ie6 .v-panel-caption-light {
border: none;
background: transparent;
}
.v-ie6 .v-panel-content,
.v-ie7 .v-panel-content,
.v-ie8 .v-panel-content {
border-bottom: 1px solid #babfc0;
}
.v-ie6 .v-panel-content-light,
.v-ie7 .v-panel-content-light,
.v-ie8 .v-panel-content-light {
border-bottom: none;
}
.v-ie6 .v-panel-deco,
.v-ie7 .v-panel-deco,
.v-ie8 .v-panel-deco {
height: 0;
overflow: hidden;
}
|