-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeneral.css
98 lines (98 loc) · 2.31 KB
/
general.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
96
97
98
/* Generic list */
.vertical-list {
overflow: hidden;
overflow-y: scroll;
background-color: var(--ui-background1);
border: var(--ui-border1);
border-radius: 2px;
}
.vertical-list .vertical-list-item {
color: var(--ui-text1);
}
.vertical-list .vertical-list-item.selected {
color: var(--files-selected-color);
background-color: var(--files-selected-background);
border: var(--files-selected-border);
border-radius: 2px;
}
/* Absolute position */
.abs {
position: absolute;
}
/* Relative position */
.rel {
position: relative;
}
/* Float left */
.flt {
float: left;
}
/* Float right */
.frt {
float: right;
}
/* Dialog content width */
.dialog-cw {
width: calc(100% - 64px);
}
/* Dialog left/top */
.dialog-lt {
left: 32px;
top: 64px;
}
/* Dialog left */
.dialog-l {
left: 32px;
}
/* Dialog right */
.dialog-r {
right: 32px;
}
/* Dialog top */
.dialog-t {
top: 64px;
}
/* Dialog bottom */
.dialog-b {
bottom: 80px;
}
/* Max width */
.max-w {
width: 100%;
}
/* Third width */
.third-w {
width: 33.333333333%;
}
/* Max height */
.max-h {
height: 100%;
}
/* Box */
.ui1-box {
background-color: var(--ui-background1);
border: var(--ui-border1);
border-radius: 2px;
color: var(--ui-text1);
}
.ui1-box.vscroll.pad,
.ui1-box.hscroll.pad {
padding: 8px;
}
/* Scroll */
.vscroll,
.hscroll {
overflow: hidden;
}
.vscroll {
overflow-y: scroll;
}
.hscroll {
overflow-x: scroll;
}
/* No select */
.no-select {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}