blob: 26c2e0e1e7aef790ae1c189087020703d5234efc (
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
|
.overlayWindow-outerDiv {
border-radius: 5px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.overlayWindow-outerDiv,
.overlayView-wrapperDiv {
position: absolute;
z-index: 1;
}
.overlayWindow-titleBar {
flex: 0 1 30px;
background: darkslategray;
color: whitesmoke;
text-align: center;
cursor: move;
}
.overlayWindow-content {
flex: 1 1 auto;
display: flex;
flex-direction: column;
}
.overlayWindow-closeButton {
float: right;
height: 30px;
width: 30px;
}
.overlayWindow-resizeDragger {
background-color: rgb(0, 0, 0);
position: absolute;
right: 0px;
bottom: 0px;
width: 10px;
height: 10px;
cursor: nwse-resize;
}
.overlayView-doc {
z-index: 1;
position: absolute;
}
|