-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUtil.css
More file actions
101 lines (92 loc) · 1.31 KB
/
Util.css
File metadata and controls
101 lines (92 loc) · 1.31 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
.nocontain {
contain: none;
}
.hide {
display: none !important;
}
@media (pointer: fine) and (hover: hover) {
.touch-only {
display: none !important;
}
}
@media not all and (pointer: fine) and (hover: hover) {
.mouse-only {
display: none !important;
}
}
.block {
display: block;
}
.hflex {
display: flex;
flex-direction: row;
align-items: center;
}
.vflex {
display: flex;
flex-direction: column;
}
.width0 {
width: 0
}
.min-width-0 {
min-width: 0;
}
.flex-grow {
flex: 1 0 0;
}
.hscrollable {
overflow-x: auto;
}
.vscrollable {
overflow-y: auto;
}
.vnoscroll {
overflow-y: hidden;
}
.hscrollable > *,
.vscrollable > * {
flex-shrink: 0;
}
.flex-wrap {
flex-wrap: wrap;
}
.shrink-clip-x {
min-width: 0;
overflow-x: hidden;
}
.shrink-clip-y {
min-height: 0;
overflow-y: hidden;
}
.top {
top: 0;
}
.left {
left: 0;
}
.bottom {
bottom: 0;
}
.right {
right: 0;
}
.justify-start,
.button-list > button,
.button-list > .label-button span,
.button-list button:first-child {
justify-content: start;
}
.justify-end {
justify-content: end;
}
.align-start {
align-items: start;
}
.overflow-content {
overflow: hidden;
text-overflow: ellipsis;
}
.no-pointer-events {
pointer-events: none;
}