forked from max1220/window_manager_library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow_inside_common.css
95 lines (90 loc) · 1.62 KB
/
window_inside_common.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
/* base */
html, body {
box-sizing: border-box !important;
margin: 0 0;
padding: 0 0;
user-select: none;
font-family: sans-serif;
font-size: 12px;
line-height: 14px;
}
/* /base */
/* utils */
.hidden {
display: none;
}
.noselect {
user-select: none;
}
.overflow-ellipsis {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.nowrap {
white-space: nowrap;
}
.left {
float: left;
}
.right {
float: right;
}
.clear {
clear: both;
}
.p0 { padding: 0; }
.p1 { padding: 1px; }
.p2 { padding: 2px; }
.p3 { padding: 3px; }
.p4 { padding: 4px; }
.p5 { padding: 5px; }
.p6 { padding: 6px; }
.p7 { padding: 7px; }
.p8 { padding: 8px; }
.ma { margin: auto; }
.m0 { margin: 0; }
.m1 { margin: 1px; }
.m2 { margin: 2px; }
.m3 { margin: 3px; }
.m4 { margin: 4px; }
.m5 { margin: 5px; }
.m6 { margin: 6px; }
.m7 { margin: 7px; }
.m8 { margin: 8px; }
.background-disabled {
background:
repeating-linear-gradient(90deg, transparent, rgba(0,0,0, 0.15) 0px, rgba(0,0,0, 0.15) 1px, rgba(0,0,0, 0) 1px, rgba(0,0,0, 0) 2px),
repeating-linear-gradient(transparent, rgba(255,255,255, 0.15) 0px, rgba(255,255,255, 0.15) 1px, rgba(255,255,255, 0) 1px, rgba(255,255,255, 0) 2px)
;
}
/* /utils */
/* content-flex */
.window-content-flex {
display: flex;
flex-direction: column;
height: 100vh;
padding: 0 0;
margin: 0 0;
overflow: hidden;
}
.window-content-flex main {
overflow: auto;
flex-grow: 1;
}
/* /content-flex */
/* split-view */
.splitview {
display: flex;
flex-direction: row;
height: 100%;
}
.splitview > * {
height: 100%;
width: 100%;
overflow: auto;
}
.splitview > *:first-child {
resize: horizontal;
}
/* /split-view */