-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjquery.windows-engine.css
112 lines (100 loc) · 1.92 KB
/
jquery.windows-engine.css
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
.window-container
{
width:350px;
position:absolute;
left:350;
top:200;
font-size:13px;
font-family:verdana;
}
.window-titleBar
{
height:23px;
margin:0 9px 0 9px;
text-align:center;
}
.window-titleBar-content
{
height:23px;
text-align:center;
padding-top:5px;
background: transparent url(default/top_mid.gif) repeat-x;
cursor: move;
}
.window-titleBar-leftCorner
{
background: transparent url(default/top_left.gif) no-repeat;
width:9px;
height:23px;
position: absolute;
left: 0px;
top: 0px;
}
.window-titleBar-rightCorner
{
background: transparent url(default/top_right.gif) no-repeat;
width:9px;
height:23px;
position: absolute;
right: 0px;
top: 0px;
}
.window-minimizeButton
{
width: 14px;
height: 14px;
background: transparent url(default/minimize.gif) no-repeat 0 0;
position: absolute;
left: 35px;
top: 5px;
cursor: pointer;
}
.window-maximizeButton
{
width: 14px;
height: 14px;
background: transparent url(default/maximize.gif) no-repeat 0 0;
position: absolute;
left: 55px;
top: 5px;
cursor: pointer;
}
.window-closeButton
{
width: 14px;
height: 14px;
background: transparent url(default/close.gif) no-repeat 0 0;
position: absolute;
left: 15px;
top: 5px;
cursor: pointer;
}
.window-content
{
height:100%;
background-color:#FFFFFF;
font-size:13px;
font-family:verdana;
color:#000000;
border-left:1px solid #AAA;
border-right:1px solid #AAA;
overflow:auto;
}
.window-statusBar
{
height:19px;
position: relative;
border-left:1px solid #AAA;
overflow: hidden;
background: transparent url(default/bottom_mid.gif) repeat-x;
}
.window-resizeIcon
{
width: 9px;
height: 19px;
background: transparent url(default/sizer.gif) no-repeat;
position: absolute;
right: 0px;
bottom: 0px;
cursor: se-resize;
}