@x-titan/fetcher 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/.obsidian/app.json +7 -0
  2. package/.obsidian/appearance.json +5 -0
  3. package/.obsidian/community-plugins.json +7 -0
  4. package/.obsidian/core-plugins.json +33 -0
  5. package/.obsidian/hotkeys.json +19 -0
  6. package/.obsidian/icons/boxicons.zip +0 -0
  7. package/.obsidian/icons/font-awesome-brands.zip +0 -0
  8. package/.obsidian/icons/font-awesome-regular.zip +0 -0
  9. package/.obsidian/icons/font-awesome-solid.zip +0 -0
  10. package/.obsidian/icons/simple-icons.zip +0 -0
  11. package/.obsidian/plugins/advanced-canvas/main.js +7372 -0
  12. package/.obsidian/plugins/advanced-canvas/manifest.json +11 -0
  13. package/.obsidian/plugins/advanced-canvas/styles.css +508 -0
  14. package/.obsidian/plugins/canvas-mindmap/main.js +8 -0
  15. package/.obsidian/plugins/canvas-mindmap/manifest.json +15 -0
  16. package/.obsidian/plugins/canvas-mindmap/styles.css +29 -0
  17. package/.obsidian/plugins/custom-sidebar-icons/main.js +37831 -0
  18. package/.obsidian/plugins/custom-sidebar-icons/manifest.json +15 -0
  19. package/.obsidian/plugins/custom-sidebar-icons/styles.css +1 -0
  20. package/.obsidian/plugins/iconic/data.json +38 -0
  21. package/.obsidian/plugins/iconic/main.js +9 -0
  22. package/.obsidian/plugins/iconic/manifest.json +10 -0
  23. package/.obsidian/plugins/iconic/styles.css +609 -0
  24. package/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
  25. package/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
  26. package/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
  27. package/.obsidian/plugins/obsidian-icon-folder/data.json +31 -0
  28. package/.obsidian/plugins/obsidian-icon-folder/main.js +7158 -0
  29. package/.obsidian/plugins/obsidian-icon-folder/manifest.json +10 -0
  30. package/.obsidian/plugins/obsidian-icon-folder/styles.css +120 -0
  31. package/.obsidian/plugins/obsidian-kanban/main.js +153 -0
  32. package/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
  33. package/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
  34. package/.obsidian/plugins/table-editor-obsidian/data.json +6 -0
  35. package/.obsidian/plugins/table-editor-obsidian/main.js +236 -0
  36. package/.obsidian/plugins/table-editor-obsidian/manifest.json +17 -0
  37. package/.obsidian/plugins/table-editor-obsidian/styles.css +78 -0
  38. package/.obsidian/snippets/CustomIcon-AutoGen.css +17 -0
  39. package/.obsidian/templates.json +3 -0
  40. package/.obsidian/themes/ASET Simple/.editorconfig +10 -0
  41. package/.obsidian/themes/ASET Simple/.git1/HEAD +1 -0
  42. package/.obsidian/themes/ASET Simple/.git1/config +13 -0
  43. package/.obsidian/themes/ASET Simple/.git1/description +1 -0
  44. package/.obsidian/themes/ASET Simple/.git1/hooks/applypatch-msg.sample +15 -0
  45. package/.obsidian/themes/ASET Simple/.git1/hooks/commit-msg.sample +24 -0
  46. package/.obsidian/themes/ASET Simple/.git1/hooks/fsmonitor-watchman.sample +174 -0
  47. package/.obsidian/themes/ASET Simple/.git1/hooks/post-update.sample +8 -0
  48. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-applypatch.sample +14 -0
  49. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-commit.sample +49 -0
  50. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-merge-commit.sample +13 -0
  51. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-push.sample +53 -0
  52. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-rebase.sample +169 -0
  53. package/.obsidian/themes/ASET Simple/.git1/hooks/pre-receive.sample +24 -0
  54. package/.obsidian/themes/ASET Simple/.git1/hooks/prepare-commit-msg.sample +42 -0
  55. package/.obsidian/themes/ASET Simple/.git1/hooks/push-to-checkout.sample +78 -0
  56. package/.obsidian/themes/ASET Simple/.git1/hooks/sendemail-validate.sample +77 -0
  57. package/.obsidian/themes/ASET Simple/.git1/hooks/update.sample +128 -0
  58. package/.obsidian/themes/ASET Simple/.git1/index +0 -0
  59. package/.obsidian/themes/ASET Simple/.git1/info/exclude +6 -0
  60. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.idx +0 -0
  61. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.pack +0 -0
  62. package/.obsidian/themes/ASET Simple/.git1/objects/pack/pack-37b1d733e37d8c14f634edcfb396cffa341c1de9.rev +0 -0
  63. package/.obsidian/themes/ASET Simple/.git1/packed-refs +2 -0
  64. package/.obsidian/themes/ASET Simple/.git1/refs/heads/master +1 -0
  65. package/.obsidian/themes/ASET Simple/.git1/refs/remotes/origin/HEAD +1 -0
  66. package/.obsidian/themes/ASET Simple/.github/workflows/release-version.yml +50 -0
  67. package/.obsidian/themes/ASET Simple/README.md +95 -0
  68. package/.obsidian/themes/ASET Simple/manifest.json +7 -0
  69. package/.obsidian/themes/ASET Simple/package.json +7 -0
  70. package/.obsidian/themes/ASET Simple/theme.css +164 -0
  71. package/.obsidian/themes/ASET Simple/version-bump.mjs +26 -0
  72. package/.obsidian/themes/ASET Simple/versions.json +3 -0
  73. package/.obsidian/themes/Atom/manifest.json +6 -0
  74. package/.obsidian/themes/Atom/theme.css +339 -0
  75. package/.obsidian/themes/Borealis/manifest.json +7 -0
  76. package/.obsidian/themes/Borealis/theme.css +1164 -0
  77. package/.obsidian/themes/Cupertino/manifest.json +8 -0
  78. package/.obsidian/themes/Cupertino/theme.css +107 -0
  79. package/.obsidian/themes/Flexoki/manifest.json +7 -0
  80. package/.obsidian/themes/Flexoki/theme.css +82 -0
  81. package/.obsidian/themes/Focus/manifest.json +7 -0
  82. package/.obsidian/themes/Focus/theme.css +1047 -0
  83. package/.obsidian/themes/GitHub Theme/manifest.json +7 -0
  84. package/.obsidian/themes/GitHub Theme/theme.css +1245 -0
  85. package/.obsidian/themes/Minimal/manifest.json +8 -0
  86. package/.obsidian/themes/Minimal/theme.css +2223 -0
  87. package/.obsidian/themes/Notation/manifest.json +6 -0
  88. package/.obsidian/themes/Notation/theme.css +831 -0
  89. package/.obsidian/themes/Notation 2/manifest.json +7 -0
  90. package/.obsidian/themes/Notation 2/theme.css +1887 -0
  91. package/.obsidian/themes/Oreo/manifest.json +7 -0
  92. package/.obsidian/themes/Oreo/theme.css +2242 -0
  93. package/.obsidian/themes/Pure/manifest.json +6 -0
  94. package/.obsidian/themes/Pure/theme.css +288 -0
  95. package/.obsidian/themes/Simple/manifest.json +7 -0
  96. package/.obsidian/themes/Simple/theme.css +1005 -0
  97. package/.obsidian/themes/Sodalite/manifest.json +7 -0
  98. package/.obsidian/themes/Sodalite/theme.css +905 -0
  99. package/.obsidian/themes/Things/manifest.json +7 -0
  100. package/.obsidian/themes/Things/theme.css +1628 -0
  101. package/.obsidian/themes/Vanilla AMOLED/manifest.json +7 -0
  102. package/.obsidian/themes/Vanilla AMOLED/theme.css +25 -0
  103. package/.obsidian/themes/Vanilla AMOLED Color/manifest.json +7 -0
  104. package/.obsidian/themes/Vanilla AMOLED Color/theme.css +49 -0
  105. package/.obsidian/themes/Wikipedia/manifest.json +7 -0
  106. package/.obsidian/themes/Wikipedia/theme.css +1134 -0
  107. package/.obsidian/themes/mono black (monochrome, charcoal)/manifest.json +7 -0
  108. package/.obsidian/themes/mono black (monochrome, charcoal)/theme.css +17 -0
  109. package/.obsidian/workspace.json +218 -0
  110. package/LICENCE +21 -0
  111. package/dist/fetcher.d.ts +17 -0
  112. package/dist/fetcher.d.ts.map +1 -0
  113. package/dist/fetcher.js +54 -0
  114. package/dist/fetcher.js.map +1 -0
  115. package/dist/index.d.ts +6 -0
  116. package/dist/index.d.ts.map +1 -0
  117. package/dist/index.js +25 -0
  118. package/dist/index.js.map +1 -0
  119. package/dist/responses.d.ts +6 -0
  120. package/dist/responses.d.ts.map +1 -0
  121. package/dist/responses.js +23 -0
  122. package/dist/responses.js.map +1 -0
  123. package/dist/types.d.ts +9 -0
  124. package/dist/types.d.ts.map +1 -0
  125. package/dist/types.js +3 -0
  126. package/dist/types.js.map +1 -0
  127. package/dist/utils.d.ts +3 -0
  128. package/dist/utils.d.ts.map +1 -0
  129. package/dist/utils.js +9 -0
  130. package/dist/utils.js.map +1 -0
  131. package/nodemon.json +6 -0
  132. package/package.json +38 -0
  133. package/src/fetcher.ts +68 -0
  134. package/src/index.ts +7 -0
  135. package/src/responses.ts +19 -0
  136. package/src/types.ts +15 -0
  137. package/src/utils.ts +9 -0
  138. package/tsconfig.json +49 -0
  139. package/tsup.config.ts +11 -0
@@ -0,0 +1,905 @@
1
+ :root {
2
+ --custom-accent: #8BA4CC;
3
+ --custom-accent-muted: #304F80;
4
+ --custom-accent-muted-transparent: rgba(48, 79, 128, 0.3);
5
+ --custom-accent-muted-selection: rgba(48, 79, 128, 0.99);
6
+ --custom-text-on-accent: #000000;
7
+ --custom-text-muted: #cacaca;
8
+ --custom-text-faint: #909090;
9
+
10
+ /* --mica-base-bg-start: #1B202A;
11
+ --mica-base-bg-end: #1A1F28;
12
+ --mica-content-bg-start: #212834;
13
+ --mica-content-bg-end: #202732;
14
+ --mica-border: #1A1F28; */
15
+
16
+ --mica-base-bg-start: #202028;
17
+ --mica-base-bg-end: #1B2020;
18
+ --mica-content-bg-start: #222832;
19
+ --mica-content-bg-start-transparent: rgba(34, 40, 50, 0.3);
20
+ --mica-content-bg-end: #212223;
21
+ --mica-content-bg-end-transparent: rgba(33, 34, 35, 0.3);
22
+ --mica-border: #1A1F28;
23
+ }
24
+
25
+ /* background */
26
+
27
+ body {
28
+ background: linear-gradient(135deg, var(--mica-base-bg-start), var(--mica-base-bg-end));
29
+
30
+ --file-header-justify: left;
31
+ --file-line-width: 100%;
32
+ }
33
+
34
+ .workspace > .workspace-split {
35
+ padding-bottom: 12px;
36
+ }
37
+
38
+ .workspace-tabs,
39
+ .workspace-ribbon,
40
+ .workspace-ribbon.is-collapsed,
41
+ .workspace-ribbon.mod-left.is-collapsed,
42
+ .workspace-ribbon.mod-right.is-collapsed,
43
+ .titlebar,
44
+ .workspace-tabs .workspace-leaf,
45
+ .workspace-tab-header-container,
46
+ .workspace-tab-container-before,
47
+ .workspace-tab-container-before.is-before-active,
48
+ .workspace-tab-container-before.is-before-active .workspace-tab-header-inner,
49
+ .workspace-tab-container-after,
50
+ .workspace-tab-container-after.is-after-active,
51
+ .workspace-tab-container-after.is-after-active .workspace-tab-header-inner,
52
+ .workspace-tab-header.is-before-active,
53
+ .workspace-tab-header.is-before-active .workspace-tab-header-inner,
54
+ .workspace-tab-header.is-after-active,
55
+ .workspace-tab-header.is-after-active .workspace-tab-header-inner,
56
+ .workspace-leaf .view-header-title-container:after,
57
+ .workspace-leaf.mod-active .view-header-title-container:after,
58
+ .status-bar,
59
+ ::-webkit-scrollbar {
60
+ background: transparent;
61
+ border: 0;
62
+ }
63
+
64
+ /* workspace */
65
+
66
+ .workspace-tab-header-container {
67
+ height: 48px;
68
+ }
69
+
70
+ .workspace-ribbon {
71
+ width: 48px;
72
+ }
73
+
74
+ .side-dock-ribbon {
75
+ flex: 0 0 48px;
76
+ }
77
+
78
+ .workspace-ribbon.mod-right {
79
+ position: absolute;
80
+ right: 0;
81
+ }
82
+
83
+ .workspace-ribbon.is-collapsed {
84
+ border: none !important;
85
+ }
86
+
87
+ .workspace-ribbon-collapse-btn {
88
+ margin-top: -4px;
89
+ }
90
+
91
+ .workspace-tab-header.is-active {
92
+ background: transparent;
93
+ color: white;
94
+ }
95
+
96
+ /* .workspace-tab-header-inner-icon {
97
+ margin-top: 7px;
98
+ } */
99
+
100
+ .workspace-leaf-resize-handle {
101
+ background: transparent;
102
+ }
103
+
104
+ .workspace {
105
+ padding-top: 24px;
106
+ }
107
+
108
+ .workspace-ribbon.mod-left {
109
+ margin-top: 48px;
110
+ }
111
+
112
+ .workspace-split {
113
+ background: linear-gradient(135deg, var(--mica-content-bg-start), var(--mica-content-bg-end));
114
+ background-attachment: fixed;
115
+ }
116
+
117
+ .workspace-split.mod-left-split {
118
+ border-top-left-radius: 8px;
119
+ border-left: 2px solid var(--mica-border);
120
+ border-top: 2px solid var(--mica-border);
121
+ }
122
+
123
+ .workspace-split.mod-left-split.is-collapsed + .workspace-split.mod-root {
124
+ border-top-left-radius: 8px;
125
+ }
126
+
127
+ .workspace-split.mod-root, .workspace-split.mod-right-split {
128
+ border-top: 2px solid var(--mica-border);
129
+ }
130
+
131
+ .workspace-split .workspace-tabs {
132
+ border-bottom: 2px solid var(--mica-border);
133
+ }
134
+
135
+ .workspace-split.mod-root {
136
+ border-left: 2px solid var(--mica-border);
137
+ border-right: 2px solid var(--mica-border);
138
+ }
139
+
140
+ .workspace-split .nav-header {
141
+ height: 48px;
142
+ padding: 4px 6px;
143
+ border-bottom: 2px solid var(--mica-border);
144
+ }
145
+
146
+ .workspace-tab-header-container {
147
+ border-bottom: 2px solid var(--mica-border);
148
+ background: linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.02));
149
+ }
150
+
151
+ .workspace-tabs {
152
+ padding-right: 0;
153
+ }
154
+
155
+ .nav-action-button {
156
+ margin-top: 4px;
157
+ }
158
+
159
+ .workspace-leaf-content .nav-header + * {
160
+ padding: 6px 0;
161
+ }
162
+
163
+ .workspace-tab-container-before {
164
+ width: 6px;
165
+ }
166
+
167
+ /* box-shadow: 0 0 4px 0px rgba(0,0,0,0.2); */
168
+
169
+ .workspace-split.mod-root .view-header {
170
+ border-bottom: 2px solid var(--mica-border) !important;
171
+ }
172
+
173
+ .workspace-split.mod-root .view-content {
174
+ background: transparent;
175
+ }
176
+
177
+ .workspace-split.mod-root > .workspace-leaf .view-header-title-container:after {
178
+ background: transparent !important;
179
+ }
180
+
181
+ .workspace-leaf-content .view-actions {
182
+ margin-right: 12px;
183
+ }
184
+
185
+ .workspace-leaf-content .view-actions .view-action svg {
186
+ margin-top: 4px;
187
+ }
188
+
189
+ body:not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .view-actions .view-action svg {
190
+ margin-top: 8px;
191
+ }
192
+
193
+ .workspace > .workspace-split {
194
+ padding-bottom: 0;
195
+ }
196
+
197
+
198
+ .workspace-leaf-content .view-header {
199
+ background: transparent !important;
200
+ border: none !important;
201
+ }
202
+
203
+ /* scroll */
204
+
205
+ body:not(.native-scrollbars) ::-webkit-scrollbar {
206
+ width: 6px;
207
+ }
208
+
209
+ body:not(.native-scrollbars) .workspace-leaf-content .nav-header + *:hover::-webkit-scrollbar-thumb {
210
+ border: none;
211
+ /* background-color: var(--scrollbar-thumb-bg); */
212
+ }
213
+
214
+ body:not(.native-scrollbars) .workspace-leaf-content .view-content:hover *::-webkit-scrollbar-thumb {
215
+ border: none;
216
+ /* background-color: var(--scrollbar-thumb-bg); */
217
+ }
218
+
219
+ body:not(.native-scrollbars) ::-webkit-scrollbar-thumb {
220
+ border-radius: 0;
221
+ background-clip: content-box;
222
+ border-left: 4px solid transparent;
223
+ /* background-color: var(--mica-border); */
224
+ transition: background-color 0.2s;
225
+ }
226
+
227
+ body:not(.native-scrollbars) .modal-container ::-webkit-scrollbar-thumb {
228
+ /* background-color: white; */
229
+ border: none;
230
+ }
231
+
232
+ /* view header wrangling */
233
+
234
+ .view-header {
235
+ height: 48px;
236
+ max-height: 48px;
237
+ min-height: 48px;
238
+ }
239
+
240
+ .view-header-title-parent {
241
+ display: none;
242
+ }
243
+
244
+ /* mod top buttons */
245
+
246
+ .mod-windows .sidebar-toggle-button.mod-left {
247
+ top: 28px;
248
+ }
249
+
250
+ .mod-macos.is-hidden-frameless:not(.is-popout-window) .sidebar-toggle-button.mod-right {
251
+ position: relative;
252
+ background-color: auto;
253
+ }
254
+
255
+ .workspace-ribbon.mod-left:before {
256
+ display: none;
257
+ }
258
+
259
+ .is-hidden-frameless:not(.is-fullscreen) .titlebar-button-container.mod-right,
260
+ .is-hidden-frameless:not(.is-fullscreen) .titlebar-button-container.mod-left,
261
+ .is-hidden-frameless:not(.is-fullscreen).is-focused .titlebar-button-container.mod-right,
262
+ .is-hidden-frameless:not(.is-fullscreen).is-focused .titlebar-button-container.mod-left {
263
+ background-color: transparent;
264
+ }
265
+
266
+ .titlebar-button {
267
+ height: 24px;
268
+ }
269
+
270
+ /* tabs */
271
+
272
+ .mod-root .workspace-tab-header {
273
+ border-radius: 0;
274
+ }
275
+
276
+ .mod-root .workspace-tab-header-container-inner {
277
+ padding: 0;
278
+ border-radius: 0;
279
+ margin: 0;
280
+ }
281
+
282
+ .mod-root .workspace-tab-header-container-inner::before, .mod-root .workspace-tab-header-container-inner::after,
283
+ .workspace-split.mod-root .workspace-tab-header.is-active::before, .workspace-split.mod-root .workspace-tab-header.is-active::after {
284
+ display: none;
285
+ }
286
+
287
+ .workspace .mod-root .workspace-tab-header-container-inner .workspace-tab-header {
288
+ padding-left: 8px;
289
+ }
290
+
291
+ .workspace-tab-header.is-active {
292
+ box-shadow: none;
293
+ background: var(--mica-base-bg-start);
294
+ }
295
+
296
+ .workspace-tab-header-new-tab {
297
+ margin-left: 8px;
298
+ }
299
+
300
+ /* nav */
301
+
302
+ .nav-header .nav-buttons-container {
303
+ justify-content: flex-start;
304
+ }
305
+
306
+ /* make links slightly lighter + accented */
307
+
308
+ .nav-file-title, .nav-folder-title {
309
+ --text-muted: var(--custom-text-muted);
310
+ }
311
+
312
+ .tree-item-self {
313
+ --text-muted: var(--custom-text-muted);
314
+ --interactive-accent: var(--custom-accent-muted);
315
+ --text-on-accent: var(--custom-text-on-accent);
316
+ }
317
+
318
+ /* file tree */
319
+
320
+ .nav-file-title, .nav-folder-title {
321
+ min-width: calc(100% - 12px);
322
+ border-radius: 0px;
323
+ }
324
+
325
+ .nav-file-title:hover, .nav-folder-title:hover {
326
+
327
+ }
328
+
329
+ .nav-files-container .nav-folder.mod-root {
330
+ padding: 0 4px;
331
+ }
332
+
333
+ body:not(.is-phone) .workspace-leaf.mod-active .tree-item-self.has-focus {
334
+ box-shadow: none;
335
+ }
336
+
337
+ .nav-file-title.is-active {
338
+ margin: 4px 0px;
339
+ background: rgba(255, 255, 255, 0.05);
340
+ border: 1px solid rgba(255, 255, 255, 0.08);
341
+ box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.5);
342
+ font-weight: bold;
343
+ }
344
+
345
+ .nav-file-title.is-active:hover {
346
+ font-weight: bold !important;
347
+ }
348
+
349
+ .nav-file-tag {
350
+ border-radius: 0;
351
+ font-size: 10px;
352
+ padding: 0px 2px;
353
+ color: var(--custom-text-muted);
354
+ }
355
+
356
+ .nav-file-tag::before {
357
+ content: '● ';
358
+ color: #caca00;
359
+ }
360
+
361
+ /* make the buttons slightly lighter + accented */
362
+
363
+ .side-dock-ribbon-action {
364
+ --text-faint: var(--custom-text-faint);
365
+ --text-muted: var(--custom-text-muted);
366
+ }
367
+
368
+ .workspace-tab-header {
369
+ --text-faint: var(--custom-text-faint);
370
+ --text-muted: var(--custom-text-muted);
371
+ }
372
+
373
+ .nav-action-button {
374
+ --text-faint: var(--custom-text-faint);
375
+ --text-muted: var(--custom-text-muted);
376
+ --interactive-accent: var(--custom-accent-muted);
377
+ --text-on-accent: var(--custom-text-on-accent);
378
+ --text-accent: var(--custom-accent-muted);
379
+ }
380
+
381
+ /* change flash animation */
382
+
383
+ .is-flashing {
384
+ mix-blend-mode: normal;
385
+ }
386
+
387
+ .is-flashing.nav-file-title::after {
388
+ content: ' ';
389
+ display: block;
390
+ position: absolute;
391
+ width: 200%;
392
+ height: 100%;
393
+ margin-top: -4px;
394
+ margin-left: -100%;
395
+ margin-right: -100%;
396
+ background: linear-gradient(90deg,
397
+ rgba(255, 255, 255, 0.05) 0%,
398
+ rgba(255, 255, 255, 0.05) 30%,
399
+ rgba(255, 255, 255, 0.3) 50%,
400
+ rgba(255, 255, 255, 0.05) 70%,
401
+ rgba(255, 255, 255, 0.05) 100%);
402
+ animation: flashing 3s infinite;
403
+ animation-timing-function: linear;
404
+ background-size: 200px 100%;
405
+ }
406
+
407
+ @keyframes flashing {
408
+ 0% {
409
+ background-position: 0% 0;
410
+ }
411
+ 100%{
412
+ background-position: 400px 0;
413
+ }
414
+ }
415
+
416
+ /* frame */
417
+
418
+ .mod-windows {
419
+ --frame-right-space: 0;
420
+ }
421
+
422
+ /* sidebar toggle move */
423
+
424
+ .workspace-tabs.mod-top-right-space .workspace-tab-header-container {
425
+ padding-right: 8px !important;
426
+ }
427
+
428
+ /* change note header to match h1 */
429
+
430
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .view-header {
431
+ height: 56px;
432
+ }
433
+
434
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .view-header .view-header-title {
435
+ font-size: 38px;
436
+ line-height: 56px;
437
+ font-family: "Futura Md BT", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
438
+ }
439
+
440
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .view-header .view-header-icon {
441
+ padding-top: 17px;
442
+ width: 48px;
443
+ text-align: center;
444
+ }
445
+
446
+ /* sliding panes fix */
447
+
448
+ .plugin-sliding-panes .workspace-leaf-content[data-type="markdown"] {
449
+ background: linear-gradient(135deg, var(--mica-content-bg-start), var(--mica-content-bg-end));
450
+ background-attachment: fixed;
451
+ }
452
+
453
+ /* change tree header */
454
+
455
+ .nav-folder.mod-root > .nav-folder-title .nav-folder-title-content {
456
+ font-size: 22px;
457
+ padding-bottom: 10px;
458
+ font-family: "Futura Md BT", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
459
+ }
460
+
461
+ /* title bar */
462
+
463
+ .titlebar {
464
+ -webkit-app-region: drag !important;
465
+ }
466
+
467
+ .titlebar .titlebar-text,
468
+ .is-hidden-frameless .titlebar .titlebar-text {
469
+ display: block;
470
+ text-align: left;
471
+ width: auto;
472
+ left: 64px;
473
+ line-height: 24px;
474
+ z-index: 5;
475
+ font-weight: normal;
476
+ padding: 0;
477
+ }
478
+
479
+ .mod-macos .titlebar .titlebar-text {
480
+ left: 136px;
481
+ }
482
+
483
+ .titlebar .titlebar-text::after {
484
+ z-index: 5;
485
+ opacity: 0.5;
486
+ content: " - https://tmz.io/sodalite v0.8.4";
487
+ }
488
+
489
+ /* status bar */
490
+
491
+ .status-bar {
492
+ bottom: auto;
493
+ top: 0;
494
+ right: 136px;
495
+ font-size: 12px;
496
+ }
497
+
498
+ .mod-macos .status-bar {
499
+ right: 0;
500
+ }
501
+
502
+ @media only screen and (max-width: 1280px) {
503
+ .status-bar {
504
+ display: none;
505
+ }
506
+ }
507
+
508
+ /* buttons */
509
+
510
+ button.mod-cta {
511
+ background: var(--custom-accent-muted);
512
+ }
513
+
514
+ button.mod-cta:hover {
515
+ background: var(--custom-accent);
516
+ }
517
+
518
+ /* popups */
519
+
520
+ .suggestion-container, .menu {
521
+ margin-top: 6px;
522
+ border-radius: 8px;
523
+ background:
524
+ rgba(0,0,0,0.3)
525
+ linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.02));
526
+ border: 2px solid var(--mica-border);
527
+ backdrop-filter: blur(12px);
528
+ box-shadow: 0 3.2px 7.2px 0 rgba(0,0,0,.132),0 .6px 1.8px 0 rgba(0,0,0,.108);
529
+ }
530
+
531
+ /* modals */
532
+
533
+ body:not(.is-mobile) .modal-container .modal-bg {
534
+ background-color: rgba(0, 0, 0, .3);
535
+ backdrop-filter: blur(12px);
536
+ }
537
+
538
+ .modal-container .modal {
539
+ background: linear-gradient(135deg, var(--mica-base-bg-start), var(--mica-base-bg-end));
540
+ box-shadow: 0 6.4px 14.4px 0 rgba(0,0,0,.132),0 1.2px 3.6px 0 rgba(0,0,0,.108);
541
+ overflow: visible !important;
542
+ }
543
+
544
+ .modal-container .modal .modal-content {
545
+ padding: 0;
546
+ }
547
+
548
+ .modal-container .modal .modal-title {
549
+ font-family: "Futura Md BT", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
550
+ font-size: 32px;
551
+ }
552
+
553
+ .modal-container .modal .vertical-tab-content {
554
+ background: transparent;
555
+ padding-top: 20px;
556
+ }
557
+
558
+ .modal-container .modal .vertical-tab-header {
559
+ background: transparent;
560
+ padding-top: 0;
561
+ }
562
+
563
+ .modal-container .modal .vertical-tab-content-container {
564
+ background: linear-gradient(135deg, var(--mica-content-bg-start), var(--mica-content-bg-end));
565
+ padding: 0;
566
+ border-left: 2px solid var(--mica-border);
567
+ }
568
+
569
+ .modal-container .modal .vertical-tab-nav-item {
570
+ background: transparent;
571
+ }
572
+
573
+ .modal-container .modal .vertical-tab-nav-item.is-active {
574
+ background: rgba(255, 255, 255, 0.05);
575
+ border: 1px solid rgba(255, 255, 255, 0.08);
576
+ box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.5);
577
+ border-radius: 6px;
578
+ margin: 0 8px;
579
+ font-weight: bold;
580
+ }
581
+
582
+ .modal-container .modal .modal-close-button {
583
+ right: -40px;
584
+ }
585
+
586
+ .modal-container .prompt {
587
+ background: transparent;
588
+ }
589
+
590
+ .modal-container .prompt .suggestion-item.is-selected {
591
+ background: linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.1));
592
+ }
593
+
594
+ /* tooltips */
595
+
596
+ .tooltip {
597
+ background:
598
+ rgba(0,0,0,0.4)
599
+ linear-gradient(160deg, transparent, rgba(255,255,255,0.05));
600
+ backdrop-filter: blur(18px);
601
+ font-size: 1em;
602
+ padding: 6px 12px;
603
+ }
604
+
605
+ .tooltip .tooltip-arrow {
606
+ backdrop-filter: blur(18px);
607
+ border-bottom: 5px solid rgba(0,0,0,0.4);
608
+ }
609
+
610
+ .tooltip.mod-right .tooltip-arrow {
611
+ border-right: 5px solid rgba(0,0,0,0.4);
612
+ }
613
+
614
+ .tooltip.mod-left .tooltip-arrow {
615
+ border-left: 5px solid rgba(0,0,0,0.4);
616
+ }
617
+
618
+ .tooltip.mod-top .tooltip-arrow {
619
+ border-top: 5px solid rgba(0,0,0,0.4);
620
+ }
621
+
622
+ /* notice */
623
+
624
+ .notice-container .notice {
625
+ background:
626
+ var(--custom-accent-muted-transparent)
627
+ linear-gradient(160deg, transparent, rgba(255,255,255,0.05));
628
+ backdrop-filter: blur(18px);
629
+ }
630
+
631
+ /* content */
632
+
633
+ .view-content {
634
+ height: 100%;
635
+ }
636
+
637
+ /* selection */
638
+
639
+ ::selection, .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection, .CodeMirror-selected, .CodeMirror-focused .CodeMirror-selected {
640
+ background: var(--custom-accent-muted-selection);
641
+ color: white;
642
+ }
643
+
644
+ /* scroll-below */
645
+
646
+ body:not(.is-mobile) .workspace-leaf-content > .nav-header,
647
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content > .view-header {
648
+ position: absolute;
649
+ z-index: 90;
650
+ width: 100%;
651
+ backdrop-filter: blur(18px);
652
+ background:
653
+ linear-gradient(135deg, var(--mica-content-bg-start-transparent),
654
+ var(--mica-content-bg-end-transparent)) !important;
655
+ background-attachment: fixed !important;
656
+ }
657
+
658
+ body:not(.is-mobile) .workspace-leaf-content > .nav-header + * {
659
+ padding-top: calc(48px + 6px);
660
+ }
661
+
662
+ body:not(.is-mobile) .workspace-leaf-content > .nav-header + *::-webkit-scrollbar-track {
663
+ margin-top: 48px;
664
+ }
665
+
666
+ body:not(.is-mobile) .workspace-leaf-content[data-type="bookmarks"] .view-content,
667
+ body:not(.is-mobile) .workspace-leaf-content[data-type="outline"] .view-content,
668
+ body:not(.is-mobile) .workspace-leaf-content[data-type="all-properties"] .view-content {
669
+ padding-top: 56px;
670
+ }
671
+
672
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .markdown-preview-sizer {
673
+ padding-top: 56px;
674
+ }
675
+
676
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .markdown-preview-view::-webkit-scrollbar-track {
677
+ margin-top: 56px;
678
+ }
679
+
680
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .CodeMirror-scroll {
681
+ padding-top: 56px;
682
+ }
683
+
684
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .CodeMirror-vscrollbar::-webkit-scrollbar-track {
685
+ margin-top: 56px;
686
+ }
687
+
688
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .cm-scroller {
689
+ padding-top: 56px;
690
+ }
691
+
692
+ body:not(.plugin-sliding-panes):not(.is-mobile) .workspace-leaf-content[data-type="markdown"] .cm-scroller::-webkit-scrollbar-track {
693
+ margin-top: 56px;
694
+ }
695
+
696
+ /* fix search with scroll below */
697
+
698
+ body:not(.is-mobile) .workspace-leaf-content .document-search-container {
699
+ position: absolute;
700
+ top: 64px;
701
+ right: 0;
702
+ background: transparent;
703
+ backdrop-filter: blur(18px);
704
+ background:
705
+ linear-gradient(135deg, var(--mica-content-bg-start-transparent),
706
+ var(--mica-content-bg-end-transparent)) !important;
707
+ background-attachment: fixed !important;
708
+ min-width: 400px;
709
+ padding: 12px;
710
+ border: 1px solid #404040;
711
+ }
712
+
713
+ .document-search-close-button {
714
+ padding: 0;
715
+ margin-top: -4px;
716
+ margin-right: -8px;
717
+ margin-left: 8px;
718
+ }
719
+
720
+ /* graph */
721
+
722
+ .graph-controls {
723
+ border-radius: 0 0 8px 0;
724
+ border: none;
725
+ border-right: 2px solid var(--mica-border);
726
+ border-bottom: 2px solid var(--mica-border);
727
+ top: 0;
728
+ left: 0;
729
+ background: linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.02));
730
+ backdrop-filter: blur(10px);
731
+ }
732
+
733
+ body:not(.is-mobile) .workspace-split.mod-root .graph-controls {
734
+ top: 48px;
735
+ }
736
+
737
+ .graph-controls.is-close {
738
+ background: linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.02));
739
+ width: 48px;
740
+ }
741
+
742
+ .graph-controls .setting-item-name {
743
+ --text-muted: var(--custom-text-muted);
744
+ }
745
+
746
+ body.is-mobile .graph-controls {
747
+ background: linear-gradient(135deg, var(--mica-content-bg-start), var(--mica-content-bg-end));
748
+ background-attachment: fixed;
749
+ backdrop-filter: none;
750
+ }
751
+
752
+ .graph-view.color-line {
753
+ color: #404050;
754
+ }
755
+
756
+ .graph-view.color-line-highlight {
757
+ color: #507090;
758
+ }
759
+
760
+ /* preview frontmatter */
761
+
762
+ .frontmatter-container {
763
+ background: linear-gradient(160deg, transparent, rgba(255, 255, 255, 0.02));
764
+ border-radius: 8px;
765
+ border: 1px solid rgba(255, 255, 255, 0.05);
766
+ margin-bottom: 20px;
767
+ }
768
+
769
+ /* side dock */
770
+
771
+ .side-dock-settings {
772
+ margin-bottom: 0;
773
+ }
774
+
775
+ /* checkboxes */
776
+
777
+ .setting-item-control .checkbox-container.is-enabled {
778
+ background: var(--custom-accent-muted);
779
+ }
780
+
781
+ /* sync icon */
782
+
783
+ .status-bar-item .status-bar-item-icon.sync-status-icon {
784
+ position: relative;
785
+ }
786
+
787
+ .status-bar-item .status-bar-item-icon.sync-status-icon svg {
788
+ width: 21px;
789
+ height: 21px;
790
+ }
791
+
792
+ .status-bar-item .status-bar-item-icon.sync-status-icon::after {
793
+ display: block;
794
+ width: 100%;
795
+ height: 26px;
796
+ position: fixed;
797
+ content: ' ';
798
+ left: 0;
799
+ top: 0;
800
+ z-index: -1;
801
+ pointer-events: none;
802
+ -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
803
+ }
804
+
805
+ /* .status-bar-item .status-bar-item-icon.sync-status-icon.mod-success::after {
806
+ background: linear-gradient(90deg,
807
+ transparent 0%,
808
+ transparent 30%,
809
+ rgba(40, 255, 40, 0.2) 50%,
810
+ transparent 70%,
811
+ transparent 100%);
812
+ animation: sync-flashing-success 5s 1;
813
+ animation-timing-function: linear;
814
+ background-size: 500px 100%;
815
+ } */
816
+
817
+ .status-bar-item .status-bar-item-icon.sync-status-icon.mod-working::after {
818
+ background: linear-gradient(90deg,
819
+ transparent 0%,
820
+ transparent 30%,
821
+ rgba(40, 40, 255, 0.2),
822
+ transparent 70%,
823
+ transparent 100%);
824
+ animation: sync-flashing 5s infinite, sync-fadein 1s 1;
825
+ animation-timing-function: linear;
826
+ background-size: 500px 100%;
827
+ background-repeat: repeat-x;
828
+ }
829
+
830
+ @keyframes sync-flashing {
831
+ 0% {
832
+ background-position: 0% 0;
833
+ }
834
+ 100%{
835
+ background-position: 1000px 0;
836
+ }
837
+ }
838
+
839
+ @keyframes sync-fadein {
840
+ 0% {
841
+ opacity: 0;
842
+ }
843
+ 50% {
844
+ opacity: 0;
845
+ }
846
+ 100%{
847
+ opacity: 1;
848
+ }
849
+ }
850
+
851
+ /* collapse */
852
+
853
+ .CodeMirror-gutter.CodeMirror-linenumbers, .CodeMirror-gutter.CodeMirror-foldgutter {
854
+ background: transparent;
855
+ }
856
+
857
+ .markdown-source-view.mod-cm6 .cm-gutters {
858
+ background: transparent !important;
859
+ }
860
+
861
+ /* content colors */
862
+
863
+ .cm-s-obsidian span.cm-hashtag {
864
+ color: var(--text-accent);
865
+ }
866
+
867
+ /* add icons to tree */
868
+
869
+ .nav-folder .nav-folder-title-content::before {
870
+ content: '📂 ';
871
+ }
872
+
873
+ .nav-folder.is-collapsed .nav-folder-title-content::before {
874
+ content: '📁 ';
875
+ }
876
+
877
+ .workspace-leaf-content[data-type="file-explorer"] .nav-folder.mod-root > .nav-folder-title .nav-folder-title-content::before {
878
+ content: '🏠 '
879
+ }
880
+
881
+ .workspace-leaf-content[data-type="file-explorer"] .nav-file .nav-file-title-content::before {
882
+ content: '📝 '
883
+ }
884
+
885
+ /* special icon example */
886
+
887
+ .workspace-leaf-content[data-type="file-explorer"] .nav-file-title[data-path^="samplepaththatdoesntexist"] .nav-file-title-content::before {
888
+ content: '⚡ ';
889
+ }
890
+
891
+ /* callouts */
892
+
893
+ body {
894
+ --callout-radius: 0;
895
+ --callout-padding: 18px;
896
+ }
897
+
898
+ .callout .callout-content > :last-child {
899
+ margin-block-end: 0;
900
+ }
901
+
902
+ .callout .callout-title .callout-icon {
903
+ margin-top: 0;
904
+ margin-right: 0.15em;
905
+ }