-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
122 lines (101 loc) · 2.35 KB
/
Copy pathglobal.css
File metadata and controls
122 lines (101 loc) · 2.35 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
114
115
116
117
118
119
120
121
122
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
--gray-4: #2a2e3b;
--gray-3: #474c59;
--gray-2: #636976;
--gray-1: #828794;
--accent-4: #d55268;
--accent-3: #dc707c;
--accent-2: #e48991;
--accent-1: #eaa3a7;
--accent-0: #e6ccce;
--white-4: #f4f2ef;
--white-3: #ebe8e6;
--white-2: #e3dedd;
--white-1: #d9d3d2;
}
.solid .ulink a {
text-decoration: underline;
}
.solid {
--titlebar-height: 0px;
}
.solid .grow-wrap {
/* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
display: grid;
}
.solid .grow-wrap::after {
/* Note the weird space! Needed to preventy jumpy behavior */
content: attr(data-replicated-value) " ";
/* This is how textarea text behaves */
white-space: pre-wrap;
/* Hidden from view, clicks, and screen readers */
visibility: hidden;
}
.solid .grow-wrap > textarea {
/* You could leave this, but after a user resizes, then it ruins the auto sizing */
resize: none;
/* Firefox shows scrollbar on growth, you can hide like this. */
overflow: hidden;
}
.solid .grow-wrap > textarea,
.solid .grow-wrap::after {
/* Identical styling required!! */
padding: 0.5rem;
font: inherit;
/* Place on top of each other */
grid-area: 1 / 1 / 2 / 2;
}
.solid .split-grid {
display: grid;
grid-template-rows: 1fr 10px 1fr;
}
.solid .gutter-row {
grid-column: 1/-1;
cursor: row-resize;
}
.solid .gutter-row-1 {
grid-row: 1;
}
.solid gutter {
background-color: #eee;
background-repeat: no-repeat;
background-position: 50%;
}
.solid .gutter.gutter-vertical {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=");
background-repeat: no-repeat;
background-position: center;
cursor: row-resize;
}
.nav-folder.mod-root
> .nav-folder-children
> .nav-folder
> .nav-folder-title[data-path^="__solid__"]
.nav-folder-title-content {
display: inline-block;
text-transform: uppercase;
font-style: italic;
}
.solid .MuiAvatarGroup-avatar {
height: 1.5rem;
width: 1.5rem;
font-size: small;
}
.solid button,
.solid a {
cursor: pointer;
}
.solid .emoji-mart-scroll {
border-bottom: 0;
margin-bottom: 6px;
}
.solid .emoji-mart-scroll + .emoji-mart-bar {
display: none;
}
.solid textarea,
.solid input {
padding: 0.25rem 0.5rem;
}