-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (72 loc) · 1.46 KB
/
styles.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url(./custom.css);
@import url(./assets/icons/pen.svg);
.w-avail {
width: -webkit-fill-available;
width: -moz-available;
}
.h-avail {
height: -webkit-fill-available;
height: -moz-available;
}
input.no-spinner::-webkit-inner-spin-button,
input.no-spinner::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.scrollbar-thumb::-webkit-scrollbar-thumb {
width: 8px;
border-radius: 3px;
background: rgb(200, 223, 245, 0.4);
}
.scrollbar-thumb::-webkit-scrollbar {
width: 8px;
}
.collapsed {
height: 0;
display: none;
}
.scrollbar-thumb::-webkit-scrollbar-track {
width: 8px;
border-radius: 3px;
}
.cursor-pencil {
cursor:
url(./assets/icons/pen.svg) -15 15,
default;
}
.cursor-select-area {
cursor:
url(./assets/icons/select-area.svg) 0 0,
default;
}
.icon-select-area::before {
content: url(./assets/icons/select-area.svg);
}
.label-height {
max-height: calc(100% - 15px);
}
.minimize::before {
font-size: 16px;
content: "\1F5D5";
}
.window::before {
font-size: 14px;
content: "\1F5D6";
}
.close::before {
font-size: 16px;
content: "\2715";
}
.seekbar {
width: calc(100% - 100px);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.panel-height {
max-height: calc(100% - 150px);
}
.seekbar-thumb:hover {
/* min-height: 16px; */
}