summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/itmill5/window/window.css
blob: 5cee309ae0e565750d3fa76a8e2f6429bc26c1df (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.v-window {
	color: #464f52;
	font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
	font-size: 13px;
	line-height: 18px;
	background: transparent url(img/bottom-left.png) no-repeat left bottom;
}
.v-window-wrap {
	background: transparent url(img/top-left.png) no-repeat;
}
.v-window-outerheader {
	height: 23px;
	margin-left: 9px;
	padding: 15px 40px 11px 12px;
	background: transparent url(img/top-right.png) no-repeat right top;
}
.v-window-header {
	font-size: 18px;
	line-height: 1.2;
	font-weight: normal;
	letter-spacing: -0.03em;
	color: #f14c1a;
	text-shadow: 0 1px 0 #fff;
	/* This element is 100% wide in IE6 */
}
.v-window-contents {
	background: #fff;
	border: 2px solid #acb2b3;
	border-top: none;
	border-bottom: none;
}
.v-window-footer {
	height: 8px;
	margin-left: 9px;
	background: transparent url(img/bottom-right.png) no-repeat right top;  
}
.v-ie7 .v-window-footer {
	position: relative;
}
.v-window-resizebox {
	position: absolute; /* Needed to position the element over ScrollPanel, which is relatively positioned */
	right: 5px;
	width: 10px;
	height: 10px;
	margin-top: -7px;
	background: transparent url(img/resize.png);
}
.v-window-resizebox-disabled {
	background: transparent;
	display: block;
}
.v-window-closebox {
	position: absolute;
	top: 21px;
	right: 24px;
	width: 12px;
	height: 12px;
	background: transparent url(img/close.png);
}
.v-window-closebox:hover {
	background-position: 0 -12px;
}
.v-window-modalitycurtain {
	background: #fff;
}
/* Shadow for window */
.v-shadow-window .top-left {
    top: -13px;             left: -20px;
    width: 39px;         height: 39px;
    background: transparent url(img/shadow/top-left.png);
}
.v-shadow-window .top {
    top: -13px;             left: 19px;
    height: 39px;
    right: 19px;
    background: transparent url(img/shadow/top.png);
}
.v-shadow-window .top-right {
    top: -13px;             right: -20px;
    width: 39px;         height: 39px;
    background: transparent url(img/shadow/top-right.png);
}
.v-shadow-window .left {
    top: 26px;           left: -20px;
    width: 39px;
    bottom: 12px;
    background: transparent url(img/shadow/left.png);
}
.v-shadow-window .center {
    top: 26px;           left: 19px;
    bottom: 12px;        right: 19px;
    background: transparent url(img/shadow/center.png);
}
.v-shadow-window .right {
    top: 26px;           right: -20px;
    width: 39px;
    bottom: 12px;
    background: transparent url(img/shadow/right.png);
}
.v-shadow-window .bottom-left {
    bottom: -27px;           left: -20px;
    width: 39px;          height: 39px;
    background: transparent url(img/shadow/bottom-left.png);
}
.v-shadow-window .bottom {
    bottom: -27px;           left: 19px;
    right: 19px;          height: 39px;
    background: transparent url(img/shadow/bottom.png);
}
.v-shadow-window .bottom-right {
    bottom: -27px;           right: -20px;
    width: 39px;          height: 39px;
    background: transparent url(img/shadow/bottom-right.png);
}