@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,10 @@
1
+ {
2
+ "id": "iconic",
3
+ "name": "Iconic",
4
+ "version": "1.1.4",
5
+ "minAppVersion": "1.6.0",
6
+ "description": "Customize your icons and their colors directly from the UI, including tabs, files & folders, bookmarks, tags, properties, and ribbon commands.",
7
+ "author": "Holo",
8
+ "authorUrl": "https://github.com/gfxholo",
9
+ "isDesktopOnly": false
10
+ }
@@ -0,0 +1,609 @@
1
+ body {
2
+ --ltr-icons: .lucide-check, .lucide-help-circle, .sidebar-left, .sidebar-right;
3
+ }
4
+
5
+ .iconic-icon > .iconic-emoji {
6
+ display: inline-flex;
7
+ flex-wrap: wrap;
8
+ align-content: center;
9
+ justify-content: center;
10
+ overflow: clip;
11
+ overflow-clip-margin: 5px;
12
+ width: var(--icon-size);
13
+ height: var(--icon-size);
14
+ font-size: calc(var(--icon-size) * 0.9);
15
+ }
16
+
17
+ /* RGB converter */
18
+ .iconic-rgb-converter {
19
+ display: none;
20
+ }
21
+
22
+ /* Window controls */
23
+ .titlebar-button.iconic-icon {
24
+ padding: 0 13px;
25
+ }
26
+
27
+ /* Right sidebar toggle */
28
+ .sidebar-toggle-button.mod-right .clickable-icon.iconic-icon:not(:has(.sidebar-toggle-button-icon)) {
29
+ transform: unset;
30
+ }
31
+
32
+ /* Tabs */
33
+ .iconic-markdown-tab-icons .workspace .mod-root .workspace-tab-header[data-type="markdown"] .workspace-tab-header-inner-icon,
34
+ .workspace .mod-root .workspace-tab-header[data-type="empty"] .workspace-tab-header-inner-icon {
35
+ display: flex;
36
+ }
37
+ .workspace .mod-stacked .iconic-emoji {
38
+ transform: rotate(-90deg);
39
+ }
40
+ .iconic-bigger-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon > * {
41
+ --icon-size: var(--icon-s);
42
+ --icon-stroke: var(--icon-s-stroke-width);
43
+ }
44
+ .iconic-clickable-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon:hover {
45
+ cursor: var(--cursor-link);
46
+ filter: contrast(200%);
47
+ }
48
+
49
+ /* List items */
50
+ .tree-item-self > .iconic-icon > .iconic-emoji {
51
+ --icon-size: var(--icon-xs);
52
+ }
53
+ .tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon {
54
+ width: var(--icon-size);
55
+ height: var(--icon-size);
56
+ stroke-width: var(--icon-stroke);
57
+ color: unset;
58
+ transform: unset;
59
+ }
60
+ .mod-rtl .tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon:not(var(--ltr-icons)) {
61
+ transform: scale(-1, 1);
62
+ }
63
+ .tree-item-self > .iconic-sidekick {
64
+ display: flex;
65
+ align-self: center;
66
+ width: var(--size-4-4);
67
+ margin-inline-end: var(--size-4-1);
68
+ opacity: var(--icon-opacity);
69
+ --icon-size: var(--icon-xs);
70
+ --icon-stroke: var(--icon-s-stroke-width);
71
+ }
72
+ .iconic-bigger-icons .tree-item-self > .iconic-icon > .svg-icon {
73
+ --icon-size: var(--icon-s);
74
+ --icon-stroke: var(--icon-s-stroke-width);
75
+ }
76
+ .iconic-bigger-icons .tree-item-self > .iconic-icon > .iconic-emoji {
77
+ --icon-size: var(--icon-s);
78
+ }
79
+ .iconic-bigger-icons .iconic-item > .tree-item-self > .tree-item-inner {
80
+ margin-inline-start: 1.5px;
81
+ }
82
+ .is-mobile .iconic-bigger-icons .tree-item.iconic-item > .tree-item-self > .tree-item-inner {
83
+ margin-inline-start: 3px;
84
+ }
85
+ .iconic-clickable-icons .tree-item-self > .iconic-icon:hover {
86
+ cursor: var(--cursor-link);
87
+ filter: contrast(200%);
88
+ }
89
+
90
+ /* Tags */
91
+ a.tag {
92
+ --icon-size: var(--icon-xs);
93
+ display: inline-flex;
94
+ vertical-align: middle;
95
+ align-items: center;
96
+ gap: var(--size-4-1);
97
+ }
98
+ .multi-select-pill > .iconic-icon {
99
+ display: flex;
100
+ margin-inline-start: var(--size-4-2);
101
+ margin-inline-end: var(--size-4-1);
102
+ }
103
+ .multi-select-pill > .iconic-icon + .multi-select-pill-content {
104
+ margin-inline-start: 0;
105
+ }
106
+ .cm-hashtag-begin > .iconic-icon {
107
+ --icon-size: var(--icon-xs);
108
+ display: inline-block;
109
+ margin-inline-end: var(--size-4-1);
110
+ transform: translateY(1.5px);
111
+ }
112
+ .iconic-clickable-icons .tag > .iconic-icon:hover,
113
+ .iconic-clickable-icons .multi-select-pill > .iconic-icon:hover,
114
+ .iconic-clickable-icons .cm-hashtag-begin > .iconic-icon:hover {
115
+ cursor: var(--cursor-link);
116
+ filter: contrast(200%);
117
+ }
118
+
119
+ /* Editor title */
120
+ .iconic-title-wrapper {
121
+ display: none;
122
+ flex-direction: row;
123
+ align-items: center;
124
+ gap: 0.3em;
125
+ font-size: var(--inline-title-size); /* Allow gap size to scale naturally */
126
+ }
127
+ .show-inline-title .iconic-title-wrapper {
128
+ display: flex;
129
+ }
130
+ .iconic-title-wrapper > .iconic-icon {
131
+ --icon-size: 1.25em;
132
+ margin-block-end: var(--inline-title-margin-bottom);
133
+ line-height: 0;
134
+ }
135
+ .iconic-clickable-icons .iconic-title-wrapper > .iconic-icon:hover {
136
+ cursor: var(--cursor-link);
137
+ filter: contrast(200%);
138
+ }
139
+ .is-mobile .iconic-title-wrapper > .iconic-icon {
140
+ padding-top: 0.25em;
141
+ }
142
+ .iconic-title-wrapper > .inline-title {
143
+ font-size: inherit;
144
+ }
145
+
146
+ /* Editor properties */
147
+ .iconic-clickable-icons .metadata-property-icon.iconic-icon:hover {
148
+ cursor: var(--cursor-link);
149
+ filter: contrast(200%);
150
+ }
151
+
152
+ /* Ribbon */
153
+ .side-dock-ribbon-action.iconic-icon > .iconic-emoji {
154
+ --icon-size: var(--icon-l);
155
+ }
156
+ .mobile-option-setting-item-option-icon.iconic-icon {
157
+ cursor: var(--cursor-link);
158
+ }
159
+
160
+ /* Suggestions */
161
+ .suggestion-item.mod-complex.iconic-item {
162
+ padding: var(--size-2-3) var(--size-4-2) var(--size-2-3) var(--size-4-1);
163
+ justify-content: normal;
164
+ }
165
+
166
+ /* Suggestion dialogs */
167
+ .iconic-prompt .iconic-icon {
168
+ height: var(--icon-size);
169
+ }
170
+ .iconic-prompt > .prompt-input-container > .prompt-input {
171
+ padding-inline-start: calc(var(--icon-size) + var(--size-4-8));
172
+ }
173
+ .iconic-prompt .suggestion-item {
174
+ align-items: center;
175
+ }
176
+ .iconic-prompt .suggestion-content {
177
+ padding-inline-start: calc(var(--icon-size) + var(--size-4-2));
178
+ }
179
+ .iconic-prompt .iconic-icon + .suggestion-content {
180
+ padding-inline-start: var(--size-4-2);
181
+ }
182
+
183
+ /* Another Quick Switcher */
184
+ .iconic-another-quick-switcher .iconic-icon {
185
+ height: var(--icon-size);
186
+ }
187
+ .iconic-another-quick-switcher .another-quick-switcher__item {
188
+ flex-direction: row;
189
+ padding-inline-start: var(--size-4-5);
190
+ }
191
+ .iconic-another-quick-switcher .another-quick-switcher__starred_item,
192
+ .iconic-another-quick-switcher .another-quick-switcher__phantom_item {
193
+ padding-inline-start: var(--size-4-3);
194
+ }
195
+ .iconic-another-quick-switcher .another-quick-switcher__item > .another-quick-switcher__item__entry {
196
+ padding-inline-start: calc(var(--icon-size) + var(--size-4-2));
197
+ }
198
+ .iconic-another-quick-switcher .another-quick-switcher__item > .iconic-icon + .another-quick-switcher__item__entry {
199
+ padding-inline-start: var(--size-4-2);
200
+ }
201
+ .iconic-another-quick-switcher .another-quick-switcher__starred_item > .another-quick-switcher__item__entry,
202
+ .iconic-another-quick-switcher .another-quick-switcher__phantom_item > .another-quick-switcher__item__entry {
203
+ padding-inline-start: calc(var(--icon-size) + var(--size-4-2));
204
+ }
205
+ .iconic-another-quick-switcher .another-quick-switcher__item::before {
206
+ margin-left: -1rem;
207
+ margin-right: var(--size-4-2);
208
+ }
209
+
210
+ /* Icon picker */
211
+ .is-mobile .mod-confirmation > .modal.iconic-icon-picker {
212
+ background-color: var(--modal-background);
213
+ }
214
+ .iconic-icon-picker .callout + .setting-item {
215
+ border-top: none;
216
+ }
217
+ .iconic-icon-picker .setting-item-control input[type="color"] {
218
+ height: auto;
219
+ width: auto;
220
+ }
221
+ .iconic-icon-picker .setting-item-control input[type="text"] {
222
+ width: 100%;
223
+ }
224
+ .iconic-icon-picker .setting-item-control .search-input-container {
225
+ width: 100%;
226
+ }
227
+ .iconic-icon-picker .extra-setting-button:focus-visible {
228
+ box-shadow: none;
229
+ opacity: var(--icon-opacity-hover);
230
+ color: var(--icon-color-hover);
231
+ background-color: var(--background-modifier-hover);
232
+ }
233
+ .theme-dark .iconic-icon-picker .iconic-mode-selected {
234
+ color: var(--interactive-accent-hover);
235
+ }
236
+ .theme-light .iconic-icon-picker .iconic-mode-selected {
237
+ color: var(--interactive-accent);
238
+ }
239
+ .is-mobile .iconic-button-row {
240
+ display: flex;
241
+ flex-direction: row;
242
+ gap: var(--size-4-3);
243
+ }
244
+ .is-phone .iconic-button-row > button {
245
+ width: 100%;
246
+ }
247
+ .is-tablet .iconic-button-row > button:not(.mod-destructive) {
248
+ margin-inline-start: auto;
249
+ }
250
+
251
+ /* Search results container */
252
+ .iconic-search-results {
253
+ overflow-x: scroll;
254
+ }
255
+ .iconic-search-results > .setting-item-info {
256
+ display: none;
257
+ }
258
+ .iconic-search-results > .setting-item-control {
259
+ justify-content: center;
260
+ }
261
+ .iconic-search-results:focus-visible {
262
+ box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
263
+ }
264
+ .is-phone .iconic-search-results {
265
+ flex-direction: row !important;
266
+ }
267
+ .is-phone .iconic-search-results > .setting-item-control {
268
+ width: auto !important;
269
+ }
270
+
271
+ /* Search result */
272
+ .iconic-search-result > * {
273
+ height: var(--icon-size);
274
+ --icon-size: calc(var(--icon-l) * 1.25);
275
+ --icon-stroke: calc(var(--icon-l-stroke-width) * 6/7);
276
+ }
277
+ .iconic-bigger-search-results .iconic-search-result > * {
278
+ --icon-size: var(--icon-xl);
279
+ --icon-stroke: var(--icon-xl-stroke-width);
280
+ }
281
+ .is-mobile .iconic-search-result > * {
282
+ --icon-size: var(--icon-l);
283
+ --icon-stroke: var(--icon-l-stroke-width);
284
+ }
285
+ .is-mobile.iconic-bigger-search-results .iconic-search-result > * {
286
+ --icon-size: var(--icon-xl);
287
+ --icon-stroke: var(--icon-l-stroke-width);
288
+ }
289
+
290
+ /* Rule picker */
291
+ .is-mobile .mod-confirmation > .modal.iconic-rule-picker {
292
+ background-color: var(--modal-background);
293
+ }
294
+ .iconic-rule,
295
+ .iconic-condition {
296
+ transition: background-color 0.25s ease, border-top-color 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease;
297
+ }
298
+ .iconic-rule.has-active-menu {
299
+ background-color: var(--background-modifier-hover);
300
+ border-top-color: transparent;
301
+ border-radius: var(--radius-s);
302
+ box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
303
+ transition: none;
304
+ }
305
+ .iconic-rule.has-active-menu + .setting-item {
306
+ border-top-color: transparent;
307
+ border-top-left-radius: var(--radius-s);
308
+ border-top-right-radius: var(--radius-s);
309
+ }
310
+ .iconic-rule > .iconic-rule-icon {
311
+ padding: var(--size-2-2);
312
+ margin-inline-end: var(--size-4-2);
313
+ }
314
+ .iconic-rule > .setting-item-info > .iconic-rule-name {
315
+ width: fit-content;
316
+ min-width: var(--size-4-4);
317
+ overflow-wrap: anywhere;
318
+ }
319
+ .iconic-rule > .setting-item-info > .iconic-rule-name:hover,
320
+ .iconic-rule > .setting-item-info > .iconic-rule-name[contenteditable="true"] {
321
+ border: var(--input-border-width) solid var(--background-modifier-border);
322
+ border-radius: var(--input-radius);
323
+ margin: calc(-1 * var(--size-4-1) - var(--input-border-width)) calc(-1 * var(--size-4-2) - var(--input-border-width));
324
+ padding: var(--size-4-1) var(--size-4-2);
325
+ background: var(--background-modifier-form-field);
326
+ color: var(--text-normal);
327
+ }
328
+ .iconic-drag-handle:hover {
329
+ cursor: grab;
330
+ }
331
+ .iconic-drag-handle:active {
332
+ cursor: grabbing;
333
+ }
334
+ .iconic-add {
335
+ transition: border-top-color 0.25s ease;
336
+ }
337
+ .iconic-add > .setting-item-control {
338
+ justify-content: flex-start;
339
+ }
340
+ .drag-reorder-ghost .iconic-rule,
341
+ .drag-reorder-ghost .iconic-condition {
342
+ padding: 0.75em 0;
343
+ }
344
+ .mod-rtl .drag-reorder-ghost .iconic-rule,
345
+ .mod-rtl .drag-reorder-ghost .iconic-condition {
346
+ direction: rtl;
347
+ }
348
+ .iconic-rule.drag-ghost-hidden,
349
+ .iconic-condition.drag-ghost-hidden {
350
+ border-top-color: transparent;
351
+ }
352
+ .iconic-rule.drag-ghost-hidden + .setting-item,
353
+ .iconic-condition.drag-ghost-hidden + .setting-item {
354
+ border-top-color: transparent;
355
+ }
356
+
357
+ /* Rule editor */
358
+ .is-mobile .mod-confirmation > .modal.iconic-rule-editor {
359
+ background-color: var(--modal-background);
360
+ }
361
+ .iconic-rule-editor .setting-item:first-child input[type="text"] {
362
+ width: 100%;
363
+ }
364
+ .setting-item-control > .iconic-button-selected {
365
+ color: var(--text-on-accent);
366
+ background-color: var(--interactive-accent);
367
+ }
368
+ .iconic-condition input[type="time"] {
369
+ border: var(--input-border-width) solid var(--background-modifier-border);
370
+ border-radius: var(--input-radius);
371
+ padding: var(--size-4-1) var(--size-4-2);
372
+ background: var(--background-modifier-form-field);
373
+ color: var(--text-normal);
374
+ font-size: var(--font-ui-small);
375
+ font-family: inherit;
376
+ }
377
+ .iconic-condition > .setting-item-control > select.dropdown {
378
+ width: 0;
379
+ flex: 1 1 fit-content;
380
+ height: var(--input-height);
381
+ }
382
+ .iconic-condition > .setting-item-control > input {
383
+ width: 0;
384
+ flex: 1 1 fit-content;
385
+ }
386
+ .iconic-condition .iconic-control-column > input {
387
+ height: var(--input-height);
388
+ }
389
+ .iconic-condition .iconic-control-column {
390
+ display: flex;
391
+ flex-direction: column;
392
+ gap: var(--size-4-2);
393
+ width: 100%;
394
+ }
395
+ .iconic-condition .iconic-dropdown-row {
396
+ display: flex;
397
+ flex-direction: row;
398
+ gap: var(--size-4-2);
399
+ width: 100%;
400
+ }
401
+ .is-phone .iconic-condition input {
402
+ text-align: center;
403
+ }
404
+
405
+ /* Rule checker */
406
+ .is-mobile .mod-confirmation > .modal.iconic-rule-checker {
407
+ background-color: var(--modal-background);
408
+ }
409
+ .iconic-matches {
410
+ padding-top: 0.75em;
411
+ border-top: 1px solid var(--background-modifier-border);
412
+ margin: 0;
413
+ }
414
+ .iconic-match {
415
+ padding: var(--size-4-1);
416
+ white-space: nowrap;
417
+ }
418
+ .iconic-highlight-tree .iconic-match-tree,
419
+ .iconic-highlight-name .iconic-match-name,
420
+ .iconic-highlight-extension .iconic-match-extension {
421
+ color: var(--text-accent);
422
+ }
423
+
424
+ /* Indicators */
425
+ .iconic-indicator {
426
+ pointer-events: none;
427
+ }
428
+
429
+ /* Invisibility */
430
+ .iconic-invisible {
431
+ visibility: hidden;
432
+ }
433
+ .is-phone .iconic-reset-color.iconic-invisible {
434
+ display: none;
435
+ }
436
+
437
+ /* Colorless settings */
438
+ .iconic-uncolor-hover .workspace-tab-header:hover .iconic-icon > .svg-icon,
439
+ .iconic-uncolor-hover .tree-item-self:hover > .tree-item-icon.iconic-icon > .svg-icon,
440
+ .iconic-uncolor-hover .side-dock-ribbon-action.iconic-icon:hover > .svg-icon,
441
+ .iconic-uncolor-hover .iconic-search-result:hover > .svg-icon {
442
+ color: currentColor !important;
443
+ }
444
+ .iconic-uncolor-drag > .drag-ghost .svg-icon {
445
+ color: currentColor !important;
446
+ }
447
+ .iconic-uncolor-select .workspace-tab-header.is-active .iconic-icon > .svg-icon,
448
+ .iconic-uncolor-select .tree-item-self.is-active > .tree-item-icon.iconic-icon > .svg-icon {
449
+ color: currentColor !important;
450
+ }
451
+
452
+ /* Theme: Blue Topaz */
453
+ .iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon:not(.collapse-icon) {
454
+ margin-inline-start: 0;
455
+ }
456
+ .iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
457
+ margin-inline-start: var(--size-4-5);
458
+ }
459
+ .iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title .nav-file-title-content:not(.mk-tree-text)::before {
460
+ display: none;
461
+ }
462
+ .iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon::before {
463
+ display: none;
464
+ }
465
+ .iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon > svg {
466
+ display: flex;
467
+ }
468
+
469
+ /* Theme: Catppuccin */
470
+ .iconic-theme-cat .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
471
+ display: none;
472
+ }
473
+
474
+ /* Theme: Cyber Glow */
475
+ .iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-self > .tree-item-inner::before {
476
+ display: none;
477
+ }
478
+ .iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon.collapse-icon.nav-folder-collapse-indicator {
479
+ display: flex;
480
+ }
481
+
482
+ /* Theme: Discordian */
483
+ .iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title > .tree-item-icon {
484
+ margin-inline-start: 0;
485
+ }
486
+ .iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
487
+ margin-inline-start: var(--size-4-5);
488
+ }
489
+
490
+ /* Theme: ITS Theme */
491
+ .iconic-theme-its .tree-item-self > .tree-item-icon {
492
+ margin-right: 6px;
493
+ }
494
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon {
495
+ position: absolute;
496
+ }
497
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
498
+ margin-inline-start: var(--size-4-5);
499
+ }
500
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before,
501
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
502
+ display: none;
503
+ }
504
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-collapse-indicator {
505
+ display: flex;
506
+ }
507
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:not(:has(.iconic-sidekick)) > .nav-folder-title-content {
508
+ margin-inline-start: var(--size-4-5);
509
+ }
510
+ .iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .iconic-sidekick {
511
+ margin-inline-start: var(--size-4-5);
512
+ }
513
+
514
+ /* Theme: LYT Mode */
515
+ .iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-inner {
516
+ padding-inline-start: var(--size-4-2);
517
+ }
518
+ .iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .iconic-sidekick {
519
+ margin-inline-start: var(--size-4-2);
520
+ margin-inline-end: 0;
521
+ }
522
+ .iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-icon:not(.collapse-icon) {
523
+ margin-inline-start: calc(-0.5 * var(--size-4-5));
524
+ }
525
+ .iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .mod-collapsible:not(:has(.iconic-sidekick)) > .tree-item-inner {
526
+ padding-inline-start: var(--size-4-2);
527
+ margin-inline-start: var(--size-4-2);
528
+ }
529
+ .iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) :not(.mod-collapsible) > .tree-item-inner {
530
+ margin-inline-start: var(--size-4-2);
531
+ }
532
+ .iconic-theme-lyt .workspace-leaf-content > :is(.nav-files-container, .view-content).node-insert-event {
533
+ padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
534
+ }
535
+
536
+ /* Theme: Mado Miniflow */
537
+ .iconic-theme-mflow .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item:not(.mod-collapsible) {
538
+ margin-inline-start: var(--size-4-2);
539
+ }
540
+ .iconic-theme-mflow .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .collapse-icon {
541
+ display: flex;
542
+ }
543
+
544
+ /* Theme: Minimal */
545
+ .iconic-theme-minimal .markdown-source-view.is-readable-line-width .iconic-title-wrapper {
546
+ margin-inline-start: var(--content-margin-start);
547
+ }
548
+ .iconic-theme-minimal:not(.is-mobile) .iconic-title-wrapper > .iconic-icon {
549
+ padding-top: 16px;
550
+ }
551
+
552
+ /* Theme: Minimal Edge */
553
+ .iconic-theme-medge .tree-item-self .tree-item-icon {
554
+ display: unset;
555
+ }
556
+
557
+ /* Theme: Sanctum */
558
+ .iconic-theme-sanctum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.iconic-sidekick) > .nav-folder-title-content::before {
559
+ display: none;
560
+ }
561
+
562
+ /* Theme: Shiba Inu */
563
+ .iconic-theme-shiba.theme-light:not(.default-light-theme, .lily-light, .ivory-light, .sky-light, .stone-light) {
564
+ --color-red: rgb(240, 68, 114);
565
+ --color-orange: rgb(249, 102, 50);
566
+ --color-yellow: rgb(228, 147, 32);
567
+ --color-green: rgb(64, 155, 40);
568
+ --color-cyan: rgb(23, 146, 153);
569
+ --color-blue: rgb(71, 143, 238);
570
+ --color-purple: rgb(176, 110, 201);
571
+ --color-pink: rgb(215, 125, 146);
572
+ }
573
+ .iconic-theme-shiba.theme-dark:not(.default-dark-theme, .Lilac-dark, .pure-dark, .warm-dark) {
574
+ --color-red: rgb(255, 98, 107);
575
+ --color-orange: rgb(247, 157, 124);
576
+ --color-yellow: rgb(249, 226, 175);
577
+ --color-green: rgb(56, 198, 141);
578
+ --color-cyan: rgb(104, 188, 204);
579
+ --color-blue: rgb(147, 183, 245);
580
+ --color-purple: rgb(196, 167, 231);
581
+ --color-pink: rgb(243, 137, 143);
582
+ }
583
+ .iconic-theme-shiba .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before {
584
+ display: none;
585
+ }
586
+
587
+ /* Theme: Sodalite */
588
+ .iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .nav-files-container {
589
+ padding-inline-start: var(--size-4-3);
590
+ padding-inline-end: var(--size-4-3);
591
+ }
592
+ .iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .tree-item-inner::before {
593
+ display: none;
594
+ }
595
+
596
+ /* Theme: Spectrum */
597
+ .iconic-theme-spectrum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .nav-folder-title-content::before {
598
+ display: none;
599
+ }
600
+
601
+ /* Theme: Terminal */
602
+ .iconic-theme-terminal .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .collapse-icon.iconic-icon::before {
603
+ display: none;
604
+ }
605
+
606
+ /* Theme: Ukiyo */
607
+ .iconic-theme-ukiyo .workspace-leaf > .workspace-leaf-content[data-type="file-explorer"] > .nav-files-container.node-insert-event {
608
+ padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
609
+ }