blob: f1a6b5e52970611a71402485d3f0496b138de947 (
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
|
@mixin chameleon-window {
.v-window-closebox {
width: 14px;
height: 15px;
overflow: hidden;
text-indent: -50px;
background: transparent url(../../img/close-btn.png) no-repeat;
vertical-align: middle;
margin: 0;
top: .3em;
right: .4em;
z-index: 2;
}
.v-window-closebox:hover {
background-position: 0 -25px;
}
.v-window-closebox:active {
background-position: 0 -50px;
}
.v-window {
background-image: none;
}
.v-window-wrap {
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
background-image: url(../../img/grad-light-top.png);
background-repeat: repeat-x;
}
.v-window-outerheader {
padding: .2em 1.7em .5em 1.2em;
height: auto;
text-align: center;
}
.v-window-header {
font-weight: normal;
}
.v-window-footer {
height: 0;
position: static;
}
.v-window-resizebox {
background: transparent url(../../img/resize.png) no-repeat;
width: 14px;
height: 14px;
bottom: 0;
}
}
|