-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindow.css
75 lines (62 loc) · 1.16 KB
/
Window.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
div.window {
background: #888;
position: absolute;
cursor: default;
padding: 2px; /* Visible sizers width */
user-select: none;
-moz-user-select: none;
box-sizing: border-box;
min-width: 200px;
min-height: 100px;
width: 400px;
height: 200px;
}
div.window div.bar {
position: relative;
background: #aaa;
text-align: center;
padding: 2px;
}
div.window div.area {
position: relative;
display: block;
box-sizing: border-box;
/* min-width: 200px; */
/* min-height: 100px; */
/* width: 400px; */
/* height: 200px; */
background: #ddd;
}
div.window td {
padding: 0;
}
div.window .sizer-nw {
width: 12px;
height: 12px;
cursor: nw-resize;
}
div.window .sizer-n {
cursor: n-resize;
}
div.window .sizer-ne {
width: 12px;
cursor: ne-resize;
}
div.window .sizer-w {
cursor: w-resize;
}
div.window .sizer-e {
cursor: e-resize;
}
div.window .sizer-sw {
width: 12px;
height: 12px;
cursor: sw-resize;
}
div.window .sizer-s {
cursor: s-resize;
}
div.window .sizer-se {
width: 12px;
cursor: se-resize;
}