-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.css
More file actions
74 lines (61 loc) · 1.12 KB
/
window.css
File metadata and controls
74 lines (61 loc) · 1.12 KB
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
.window {
position: absolute;
box-shadow: 0 0 5pt 1pt #888;
background-color: #eee;
border: 2px solid #ccc;
cursor: default;
z-index: 2;
/* resize: both; */
/* min-width: 50px; */
/* min-height: 50px; */
/* overflow: auto; */
}
.window .content.visible {
display: block;
}
/* .window.resizable { */
/* resize: both; */
/* overflow: hidden; */
/* } */
.window > .bar {
height: 1.1em;
font-size: 0.9em;
padding: 2px;
color: #fff;
background-color: #00a;
display: flex;
align-items:center;
cursor: move;
}
.window > .bar .btn {
height: 1em;
cursor: pointer;
}
.window > .bar > .plus {
display: block;
}
.window > .bar > .minus {
display: none;
}
.window > .bar > .name {
padding-left: 4px;
padding-right: 4px;
}
.window > .content {
display: none;
margin: 4px;
padding: 4px;
background-color: #eee;
/* resize: both; */
/* overflow: auto; */
}
.window .resizer {
height: 12px;
position: absolute;
right: 0px;
bottom: 0px;
cursor: se-resize;
}
.window.dialog {
display: none;
}