-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathwindow.css
More file actions
114 lines (95 loc) · 1.51 KB
/
Copy pathwindow.css
File metadata and controls
114 lines (95 loc) · 1.51 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
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
.window {
border: 1px solid #000;
position: absolute;
display: flex;
flex-direction: column;
overflow: hidden;
}
.window.active {
z-index: 9;
}
.window-top {
flex: 0 0 8px;
display: flex;
background: #ddd;
}
.window-middle {
flex: 1 1 1px;
display: flex;
background: #fff;
min-height: 0;
}
.window-top-middle {
flex: 0 0 25px;
display: flex;
background: #ddd;
}
.window-top-nav {
display: flex;
background: #fff;
}
.window-top-nav .w-resize.top-resize, .window-top-nav .e-resize.top-resize {
border: 0;
}
.nav-bar {
flex: 1 1 1px;
display: flex;
flex-wrap: wrap;
}
.window-bottom {
flex: 0 0 8px;
display: flex;
background: #fff;
}
.w-resize.top-resize {
border-bottom: 1px solid #000000;
}
.e-resize.top-resize {
border-bottom: 1px solid #000000;
}
.nw-resize, .se-resize {
flex: 0 0 8px;
height: 8px;
cursor: nwse-resize;
}
.n-resize, .s-resize {
flex: 1 1 1px;
height: 8px;
cursor: ns-resize;
}
.ne-resize, .sw-resize {
flex: 0 0 8px;
height: 8px;
cursor: nesw-resize;
}
.w-resize, .e-resize {
flex: 0 0 8px;
cursor: ew-resize;
}
.title-bar {
width: 100%;
flex: 1 1 1px;
display: flex;
border-bottom: 1px solid #000000;
cursor: move;
}
.close {
flex: 0 0 12px;
background: red;
height: 12px;
margin-top: 2px;
cursor: pointer;
order: 0;
}
.title {
flex: 1 1 1px;
margin: 0 10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
user-select: none;
}
.content {
flex: 1 1 1px;
overflow-y: auto;
}