blob: f034d7503ff2278514f9a3f63c2d1f57334f10c4 (
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
|
.v-window {
background: transparent;
}
.v-window-wrap {
border: 1px solid #c8c9ca;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background: #fff url(top-left.png) no-repeat;
}
.v-window-outerheader {
height: 38px;
margin-left: 9px;
padding: 10px 40px 12px 2px;
background: transparent url(top-right.png) no-repeat right top;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.v-window-header {
color: #000;
font-size: 12px;
text-shadow: 1px 1px #fff;
}
.v-window-contents {
padding: 0 5px 0 5px;
}
.v-window-footer {
height: 5px;
overflow: visible;
}
.v-window div.v-window-footer-noresize {
height: 5px;
}
.v-window-closebox {
background: url(closebutton_sprites.png) no-repeat scroll 0 0 transparent;
position: absolute;
width: 24px;
height: 24px;
right: 9px;
top: 8px;
}
.v-window-closebox:hover {
background-position: 0 -24px;
}
.v-window-closebox:active {
background-position: 0 -48px;
}
.v-window-resizebox {
background: transparent url(/html/themes/classic/images/aui/icon_sprite.png) no-repeat scroll -69px -229px;
width: 10px;
height: 10px;
bottom: 0;
}
|