-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextras.css
More file actions
197 lines (168 loc) · 5.47 KB
/
Copy pathextras.css
File metadata and controls
197 lines (168 loc) · 5.47 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
This css contains some excerpts that can be used with the NeuBorder theme.
*/
/* ================================================================= */
/* ??. Custom Fonts */
/* ================================================================= */
/*
body {
--font-interface: "Mona-Sans";
--font-text: "Mona-Sans", "Arial";
--font-monospace: "Hack";
}
*/
/* ================================================================= */
/* ??. Custom window borders */
/* ================================================================= */
/* Bottom window border --
body:not(.is-mobile) .horizontal-main-container {
padding-bottom: 24px;
}
/* Bottom window border (2) --
body:not(.is-mobile).is-popout-window .horizontal-main-container {
padding-bottom: 16px;
}
/* Defines right border --
body:not(.is-mobile) .workspace {
margin-right: 16px;
position: relative;
overflow: visible;
}
/* Defines popout window borders --
.is-popout-window .workspace {
margin-right: 16px;
margin-left: 16px;
}
/* Extra spacing for window controls --
.mod-windows,
.mod-linux {
--frame-right-space: 110px;
}
/* Status bar tweaks (So it can fit in the new bottom border)--
body {
--status-bar-background: transparent;
--status-bar-border-color: transparent;
--status-bar-border-width: 0;
}
.status-bar {
border-radius: 0px;
box-shadow: none;
border-width: 0px;;
right: 0rem;
bottom: 0rem;
padding: 0 16px 0 0;
width: calc(100% - 44px);
min-height: 16px;
}
.status-bar-item.mod-clickable:hover {
color: var(--status-bar-text-color);
}
.status-bar-item {
height: 24px;
}
*/
/* ================================================================= */
/* ??. Neumorphic Vault switcher drawer */
/* ================================================================= */
/*
.workspace-drawer-vault-switcher,
.workspace-drawer-vault-actions .clickable-icon {
color: var(--nav-item-color);
background-color: var(--button-color-1);
box-shadow: var(--shadow);
border-radius: var(--button-radius-medium);
height: 35px;
width: 35px;
margin-left: 7px;
margin-bottom: 10px;
margin-top: 10px;
}
.workspace-drawer-vault-switcher:hover,
.workspace-drawer-vault-actions .clickable-icon:hover {
box-shadow: var(--shadow-hover);
}
.workspace-drawer-vault-switcher:active,
.workspace-drawer-vault-switcher.has-active-menu,
.workspace-drawer-vault-actions .clickable-icon:active {
box-shadow: var(--shadow-active);
}
.workspace-drawer-vault-actions {
margin-right: 7px;
}
*/
/* ================================================================= */
/* ??. Legacy dark coloring (from before the 2026-04-10 change) */
/* ================================================================= */
/*
.theme-dark {
color-scheme: dark;
--background-base: #2b2b2b;
--background: var(--background-base);
--background-primary: var(--background-base);
--background-primary-alt: #252525;
--background-secondary: var(--background-base);
--background-tertiary: hsl(var(--accent-h), 40%, 25%);
--shadow:
5px 5px 10px rgba(0, 0, 0, 0.5),
-5px -5px 10px rgba(255, 255, 255, 0.06);
--shadow-hover:
inset 3px 3px 3px rgba(0, 0, 0, 0.5),
inset -3px -3px 3px rgba(255, 255, 255, 0.06);
--shadow-active:
inset 3px 3px 3px rgba(0, 0, 0, 0.7),
inset -3px -3px 3px rgba(255, 255, 255, 0.04);
--shadow-selected:
inset 3px 3px 3px rgba(0, 0, 0, 0.6);
--shadow-scrollbar:
inset 4px 4px 8px rgba(0, 0, 0, 0.5),
inset -4px -4px 8px rgba(255, 255, 255, 0.06);
--shadow-s:
0px 1px 2px rgba(0, 0, 0, 0.3),
0px 3px 6px rgba(0, 0, 0, .4);
--shadow-l:
0px 4px 10px rgba(0, 0, 0, 0.4),
0px 10px 30px rgba(0, 0, 0, 0.5);
--text-normal: #dcdcdc;
--text-muted: #999999;
--text-faint: #666666;
--text-error: #ff6666;
--text-error-hover: #ff9999;
--text-matched: #2ecc71;
--accent-h: 232;
--accent-s: 70%;
--accent-l: 70%;
--interactive-accent:
hsl(var(--accent-h),
var(--accent-s),
var(--accent-l));
--interactive-accent-hover:
hsl(var(--accent-h),
var(--accent-s),
calc(var(--accent-l) + 5%));
--interactive-normal: var(--background-base);
--interactive-hover: #323232;
--button-color-1: var(--background-base);
--background-modifier-border: rgba(0, 0, 0, 0.3);
--background-modifier-border-focus: rgba(255, 255, 255, 0.1);
--background-modifier-border-hover: rgba(255, 255, 255, 0.1);
--background-modifier-box-shadow: rgba(0, 0, 0, 0.5);
--background-modifier-cover: rgba(0, 0, 0, 0.6);
--background-modifier-form-field: rgba(0, 0, 0, 0.2);
--color-base-00: #1a1a1a;
--color-base-05: #202020;
--color-base-10: #252525;
--color-base-20: #2b2b2b;
--color-base-25: #333333;
--color-base-30: #3b3b3b;
--color-base-35: #444444;
--color-base-40: #555555;
--color-base-50: #666666;
--color-base-60: #777777;
--color-base-70: #888888;
--color-base-80: #aaaaaa;
--color-base-90: #cccccc;
--color-base-100: #ffffff;
--nav-item-color: var(--text-normal);
--blockquote-background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.12' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}
*/