duzhong commited on
Commit
84602ce
·
verified ·
1 Parent(s): 87fd35f

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. public/css/accounts.css +5 -0
  3. public/css/animations.css +154 -0
  4. public/css/backgrounds.css +372 -0
  5. public/css/brands.min.css +6 -0
  6. public/css/bright.min.css +7 -0
  7. public/css/character-group-overlay.css +106 -0
  8. public/css/chat-backups.css +54 -0
  9. public/css/cropper.min.css +9 -0
  10. public/css/data-maid.css +149 -0
  11. public/css/extensions-panel.css +160 -0
  12. public/css/file-form.css +161 -0
  13. public/css/fontawesome.min.css +9 -0
  14. public/css/group-avatars.css +91 -0
  15. public/css/jquery-ui.min.css +7 -0
  16. public/css/loader.css +31 -0
  17. public/css/login.css +50 -0
  18. public/css/logprobs.css +148 -0
  19. public/css/macros.css +515 -0
  20. public/css/mobile-styles.css +580 -0
  21. public/css/popup-safari-fix.css +19 -0
  22. public/css/popup.css +217 -0
  23. public/css/promptmanager.css +377 -0
  24. public/css/rm-groups.css +245 -0
  25. public/css/scrollable-button.css +21 -0
  26. public/css/secrets.css +102 -0
  27. public/css/select2-overrides.css +242 -0
  28. public/css/select2.min.css +1 -0
  29. public/css/solid.min.css +6 -0
  30. public/css/st-tailwind.css +613 -0
  31. public/css/tags.css +289 -0
  32. public/css/toastr.min.css +1 -0
  33. public/css/toggle-dependent.css +566 -0
  34. public/css/user.css +1 -0
  35. public/css/welcome.css +229 -0
  36. public/css/world-info.css +328 -0
  37. public/error/forbidden-by-whitelist.html +22 -0
  38. public/error/host-not-allowed.html +21 -0
  39. public/error/unauthorized.html +17 -0
  40. public/error/url-not-found.html +15 -0
  41. public/favicon.ico +0 -0
  42. public/global.d.ts +237 -0
  43. public/img/01ai.svg +59 -0
  44. public/img/No-Image-Placeholder.svg +309 -0
  45. public/img/ai21.svg +20 -0
  46. public/img/aimlapi.svg +4 -0
  47. public/img/aphrodite.svg +71 -0
  48. public/img/azure_openai.svg +1 -0
  49. public/img/blockentropy.svg +3 -0
  50. public/img/chutes.svg +4 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ public/st-launcher.ico filter=lfs diff=lfs merge=lfs -text
37
+ public/st.ico filter=lfs diff=lfs merge=lfs -text
public/css/accounts.css ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ .userAccount {
2
+ border: 1px solid var(--SmartThemeBorderColor);
3
+ padding: 5px 10px;
4
+ border-radius: 5px;
5
+ }
public/css/animations.css ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Fade animations with opacity */
2
+ @keyframes fade-in {
3
+ 0% {
4
+ opacity: 0;
5
+ }
6
+
7
+ 100% {
8
+ opacity: 1;
9
+ }
10
+ }
11
+
12
+ @keyframes fade-out {
13
+ 0% {
14
+ opacity: 1;
15
+ }
16
+
17
+ 100% {
18
+ opacity: 0;
19
+ }
20
+ }
21
+
22
+ /* Pop animations with opacity and vertical scaling */
23
+ @keyframes pop-in {
24
+ 0% {
25
+ opacity: 0;
26
+ transform: scaleY(0);
27
+ }
28
+
29
+ /* Make the scaling faster on pop-in, otherwise it looks a bit weird */
30
+ 33% {
31
+ transform: scaleY(1);
32
+ }
33
+
34
+ 100% {
35
+ opacity: 1;
36
+ transform: scaleY(1);
37
+ }
38
+ }
39
+
40
+ @keyframes pop-out {
41
+ 0% {
42
+ opacity: 1;
43
+ transform: scaleY(1);
44
+ }
45
+
46
+ 66% {
47
+ transform: scaleY(1);
48
+ }
49
+
50
+ 100% {
51
+ opacity: 0;
52
+ transform: scaleY(0);
53
+ }
54
+ }
55
+
56
+ /* Flashing for highlighting animation */
57
+ @keyframes flash {
58
+
59
+ 0%,
60
+ 50%,
61
+ 100% {
62
+ opacity: 1;
63
+ }
64
+
65
+ 25%,
66
+ 75% {
67
+ opacity: 0.2;
68
+ }
69
+ }
70
+
71
+ /* Pulsing highlight, slightly resizing the element */
72
+ @keyframes pulse {
73
+ from {
74
+ transform: scale(1);
75
+ filter: brightness(1.1);
76
+ }
77
+
78
+ to {
79
+ transform: scale(1.01);
80
+ filter: brightness(1.3);
81
+ }
82
+ }
83
+
84
+ /* Ellipsis animation */
85
+ @keyframes ellipsis {
86
+ 0% {
87
+ content: ""
88
+ }
89
+
90
+ 25% {
91
+ content: "."
92
+ }
93
+
94
+ 50% {
95
+ content: ".."
96
+ }
97
+
98
+ 75% {
99
+ content: "..."
100
+ }
101
+ }
102
+
103
+ /* HEINOUS */
104
+ @keyframes infinite-spinning {
105
+ from {
106
+ transform: rotate(0deg);
107
+ }
108
+
109
+ to {
110
+ transform: rotate(360deg);
111
+ }
112
+ }
113
+
114
+ /* STscript animation */
115
+ @keyframes script_progress_pulse {
116
+
117
+ 0%,
118
+ 100% {
119
+ border-top-color: var(--progColor);
120
+ }
121
+
122
+ 50% {
123
+ border-top-color: var(--progFlashColor);
124
+ }
125
+ }
126
+
127
+ /* Scroll delay animations */
128
+ @keyframes hide-scroll {
129
+
130
+ from,
131
+ to {
132
+ overflow-y: hidden;
133
+ }
134
+ }
135
+
136
+ @keyframes slide {
137
+ 0% {
138
+ transform: translateX(var(--slide-mes-x-start, 0px));
139
+ }
140
+
141
+ 100% {
142
+ transform: translateX(var(--slide-mes-x-end, 0px));
143
+ }
144
+ }
145
+
146
+ @-webkit-keyframes slide {
147
+ 0% {
148
+ transform: translateX(var(--slide-mes-x-start, 0px));
149
+ }
150
+
151
+ 100% {
152
+ transform: translateX(var(--slide-mes-x-end, 0px));
153
+ }
154
+ }
public/css/backgrounds.css ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Main Page Backgrounds */
2
+ #bg1 {
3
+ background-repeat: no-repeat;
4
+ background-attachment: fixed;
5
+ background-size: cover;
6
+ position: absolute;
7
+ width: 100%;
8
+ height: 100%;
9
+ transition: background-image var(--animation-duration-3x) ease-in-out;
10
+ z-index: -1;
11
+ }
12
+
13
+ /* Fitting options */
14
+ #background_fitting {
15
+ max-width: 8em;
16
+ }
17
+
18
+ /* Fill/Cover - scales to fill width while maintaining aspect ratio */
19
+ #bg1.cover {
20
+ background-size: cover;
21
+ background-position: center;
22
+ }
23
+
24
+ /* Fit/Contain - shows entire image maintaining aspect ratio */
25
+ #bg1.contain {
26
+ background-size: contain;
27
+ background-position: center;
28
+ background-repeat: no-repeat;
29
+ }
30
+
31
+ /* Stretch - stretches to fill entire space */
32
+ #bg1.stretch {
33
+ background-size: 100% 100%;
34
+ }
35
+
36
+ /* Center - centers without scaling */
37
+ #bg1.center {
38
+ background-size: auto;
39
+ background-position: center;
40
+ background-repeat: no-repeat;
41
+ }
42
+
43
+ /* This is the main flex container for the entire drawer */
44
+ .drawer-content.openDrawer.bg-drawer-layout {
45
+ display: flex;
46
+ }
47
+
48
+ .bg-drawer-layout {
49
+ flex-direction: column;
50
+ padding: 0;
51
+ }
52
+
53
+ #bg-header-fixed {
54
+ flex-shrink: 0;
55
+ padding: 5px;
56
+ background-color: var(--SmartThemeBlurTintColor);
57
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
58
+ width: 100%;
59
+ }
60
+
61
+ .bg-header-row-1,
62
+ .bg-header-row-2 {
63
+ display: flex;
64
+ gap: 5px;
65
+ width: 100%;
66
+ align-items: baseline;
67
+ }
68
+
69
+ /* Control buttons in header */
70
+ .heading-container-with-controls {
71
+ position: relative;
72
+ }
73
+
74
+ .heading-container-with-controls .heading-text {
75
+ margin: 10px 0;
76
+ }
77
+
78
+ .heading-container-with-controls .heading-controls {
79
+ position: absolute;
80
+ right: 5px;
81
+ top: 50%;
82
+ transform: translateY(-50%);
83
+ display: flex;
84
+ gap: 5px;
85
+ }
86
+
87
+ #bg_menu_content,
88
+ #bg_custom_content {
89
+ display: grid;
90
+ gap: 5px;
91
+ width: 100%;
92
+ grid-template-columns: repeat(var(--bg-thumb-columns, 5), 1fr);
93
+ }
94
+
95
+ #bg-filter {
96
+ font-size: calc(var(--mainFontSize) * 0.95);
97
+ }
98
+
99
+ /* Thumbnails */
100
+ .bg_example:hover .BGSampleTitle {
101
+ opacity: 1;
102
+ }
103
+
104
+ .bg_example .mobile-only-menu-toggle {
105
+ display: none;
106
+ }
107
+
108
+ .bg_example {
109
+ cursor: pointer;
110
+ box-shadow: 0 0 7px var(--black50a);
111
+ position: relative;
112
+ overflow: hidden;
113
+ border-radius: 8px;
114
+ border: 0px solid transparent;
115
+ outline: 2px solid var(--SmartThemeBorderColor);
116
+ outline-offset: -1px;
117
+
118
+ height: auto;
119
+ aspect-ratio: 16 / 9;
120
+ }
121
+
122
+ .bg_example:focus-visible {
123
+ outline-offset: inherit;
124
+ outline-color: var(--interactable-outline-color);
125
+ }
126
+
127
+ .bg_example.locked-background {
128
+ outline: 2px solid var(--golden);
129
+ outline-offset: 0;
130
+ }
131
+
132
+ .bg_example.locked-background::after {
133
+ content: '\f023';
134
+ font-family: 'Font Awesome 6 Free';
135
+ font-weight: 900;
136
+
137
+ position: absolute;
138
+ bottom: 5px;
139
+ right: 5px;
140
+ z-index: 4;
141
+ color: var(--golden);
142
+ filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
143
+ font-size: calc(var(--mainFontSize) * 0.8);
144
+ pointer-events: none;
145
+ }
146
+
147
+ .bg_example:not(.locked-background) .jg-unlock,
148
+ .bg_example.locked-background .jg-lock {
149
+ display: none;
150
+ }
151
+
152
+ .bg_example.selected-background {
153
+ outline: 2px solid white;
154
+ outline-offset: 0;
155
+ }
156
+
157
+ .bg_example.selected-background::before {
158
+ content: '\f00c';
159
+ font-family: 'Font Awesome 6 Free';
160
+ font-weight: 900;
161
+ position: absolute;
162
+ top: 5px;
163
+ left: 5px;
164
+ z-index: 4;
165
+ color: var(--white100);
166
+ filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
167
+ font-size: calc(var(--mainFontSize) * 0.9);
168
+ pointer-events: none;
169
+ }
170
+
171
+ .bg_example .jg-menu {
172
+ display: flex;
173
+ position: absolute;
174
+ top: 2px;
175
+ right: 2px;
176
+ background-color: rgba(0, 0, 0, 0.5);
177
+ border-radius: 5px;
178
+ padding: 3px 3px;
179
+ z-index: 3;
180
+ backdrop-filter: blur(4px);
181
+ border: 1px solid var(--SmartThemeBorderColor);
182
+ justify-items: center;
183
+ align-items: center;
184
+
185
+ opacity: 0;
186
+ visibility: hidden;
187
+ transform: scale(0.9);
188
+ transform-origin: center;
189
+ transition: opacity var(--animation-duration) ease-out, visibility var(--animation-duration) ease-out, transform var(--animation-duration) ease-out;
190
+ }
191
+
192
+ .bg_example:hover .jg-menu,
193
+ .bg_example:focus-within .jg-menu {
194
+ opacity: 1;
195
+ visibility: visible;
196
+ transform: scale(1);
197
+ }
198
+
199
+ .bg_example .jg-button {
200
+ display: flex;
201
+ width: 24px;
202
+ height: 24px;
203
+ align-items: center;
204
+ justify-content: center;
205
+ color: white;
206
+ padding: 5px;
207
+ font-size: 1.1em;
208
+ border-radius: 5px;
209
+ transition: background-color var(--animation-duration) ease;
210
+ }
211
+
212
+ .bg_example .jg-button:hover {
213
+ background-color: rgba(255, 255, 255, 0.2);
214
+ }
215
+
216
+ /* Scroll-to-Top Button */
217
+ #bg-scroll-top {
218
+ position: absolute;
219
+ bottom: 20px;
220
+ right: 20px;
221
+ width: 42px;
222
+ height: 42px;
223
+ background: var(--SmartThemeBlurTintColor);
224
+ color: var(--SmartThemeBodyColor);
225
+ border: 1px solid var(--SmartThemeBorderColor);
226
+ border-radius: 50%;
227
+ cursor: pointer;
228
+ z-index: 10;
229
+ font-size: 18px;
230
+ display: inline-flex;
231
+ align-items: center;
232
+ justify-content: center;
233
+ opacity: 0;
234
+ transition: opacity var(--animation-duration) ease;
235
+ pointer-events: none;
236
+ }
237
+
238
+ #bg-scroll-top.visible {
239
+ opacity: 1;
240
+ pointer-events: auto;
241
+ }
242
+
243
+ #bg-scroll-top:hover {
244
+ filter: brightness(150%);
245
+ outline: 1px solid var(--interactable-outline-color);
246
+ }
247
+
248
+ #bg-scroll-top .fa-solid {
249
+ margin: 0;
250
+ padding: 0;
251
+ line-height: 1;
252
+ }
253
+
254
+ .thumbnail-clipper {
255
+ position: absolute;
256
+ top: -2px;
257
+ left: -2px;
258
+ right: -2px;
259
+ bottom: -2px;
260
+ overflow: hidden;
261
+ border-radius: inherit;
262
+ background-size: cover;
263
+ background-position: center;
264
+ }
265
+
266
+ .bg_example:not([custom="true"]) .jg-copy,
267
+ .bg_example[custom="true"] .jg-edit {
268
+ display: none;
269
+ }
270
+
271
+ /* Thumbnail Title */
272
+ .bg_example .BGSampleTitle {
273
+ position: absolute;
274
+ bottom: 0;
275
+ left: 0;
276
+ right: 0;
277
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
278
+ color: var(--SmartThemeBodyColor);
279
+ font-size: 0.9em;
280
+ font-weight: 600;
281
+ padding: 0px 6px 2px;
282
+ text-align: center;
283
+ white-space: nowrap;
284
+ overflow: hidden;
285
+ text-overflow: ellipsis;
286
+ opacity: 0;
287
+ transition: opacity var(--animation-duration) ease-in-out;
288
+ pointer-events: none;
289
+ border-radius: 0 0 8px 8px;
290
+ }
291
+
292
+ .bg_example:hover .BGSampleTitle,
293
+ .bg_example:focus-within .BGSampleTitle {
294
+ opacity: 1;
295
+ }
296
+
297
+ #bg_tabs {
298
+ display: flex;
299
+ flex-direction: column;
300
+ flex-grow: 1;
301
+ height: 100%;
302
+ overflow-y: hidden;
303
+ gap: 5px;
304
+ }
305
+
306
+ #bg_tabs .bg_tabs_list {
307
+ display: flex;
308
+ flex-direction: row;
309
+ gap: 5px;
310
+ background: none;
311
+ border: none;
312
+ margin: 5px 0;
313
+ padding: 0;
314
+ padding-right: 4em;
315
+ position: relative;
316
+ }
317
+
318
+ #bg_tabs .bg_tabs_list .bg_tab_button {
319
+ display: flex;
320
+ align-items: center;
321
+ justify-content: center;
322
+ text-align: center;
323
+ min-width: 8em;
324
+ list-style: none;
325
+ color: var(--SmartThemeBodyColor);
326
+ background-color: var(--SmartThemeBlurTintColor);
327
+ border: 1px solid var(--SmartThemeBorderColor);
328
+ border-radius: 5px;
329
+ padding: 0;
330
+ cursor: pointer;
331
+ font-weight: 600;
332
+ margin: 0 !important;
333
+ filter: none;
334
+ opacity: 0.8;
335
+ transition: opacity var(--animation-duration-2x);
336
+ }
337
+
338
+ #bg_tabs .bg_tabs_list .bg_tab_button:hover {
339
+ opacity: 1;
340
+ }
341
+
342
+ #bg_tabs .bg_tabs_list .bg_tab_button.ui-tabs-active {
343
+ background-color: color-mix(in srgb, var(--SmartThemeQuoteColor) 33%, var(--SmartThemeBlurTintColor) 66%);
344
+ }
345
+
346
+ #bg_tabs.ui-widget-content {
347
+ border: none !important;
348
+ }
349
+
350
+ #bg_tabs .bg_tabs_list::before,
351
+ #bg_tabs .bg_tabs_list::after {
352
+ display: none;
353
+ }
354
+
355
+ #bg_tabs .bg_tabs_list .bg_tab_button a {
356
+ width: 100%;
357
+ height: 100%;
358
+ padding: 3px 5px;
359
+ cursor: pointer;
360
+ color: var(--SmartThemeBodyColor);
361
+ }
362
+
363
+ #bg_tabs .bg_tab_panel {
364
+ flex-grow: 1;
365
+ height: 100%;
366
+ overflow-y: auto;
367
+ padding: 10px;
368
+ }
369
+
370
+ #bg_custom_content:not(:empty)~#bg_chat_hint {
371
+ display: none;
372
+ }
public/css/brands.min.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ :host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-pixiv:before{content:"\e640"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-jxl:before{content:"\e67b"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-brave:before{content:"\e63c"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-opensuse:before{content:"\e62b"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before,.fa-square-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-square-letterboxd:before{content:"\e62e"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-shoelace:before{content:"\e60c"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-google-scholar:before{content:"\e63b"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-signal-messenger:before{content:"\e663"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-mintbit:before{content:"\e62f"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-brave-reverse:before{content:"\e63d"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-web-awesome:before{content:"\e682"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-letterboxd:before{content:"\e62d"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-square-web-awesome-stroke:before{content:"\e684"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-upwork:before{content:"\e641"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-square-upwork:before{content:"\e67c"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-square-web-awesome:before{content:"\e683"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-bluesky:before{content:"\e671"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-webflow:before{content:"\e65c"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}
public/css/bright.min.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*!
2
+ Theme: Bright
3
+ Author: Chris Kempson (http://chriskempson.com)
4
+ License: ~ MIT (or more permissive) [via base16-schemes-source]
5
+ Maintainer: @highlightjs/core-team
6
+ Version: 2021.09.0
7
+ */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#e0e0e0;background:#000}.hljs ::selection,.hljs::selection{background-color:#505050;color:#e0e0e0}.hljs-comment{color:#b0b0b0}.hljs-tag{color:#d0d0d0}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#e0e0e0}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#fb0120}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#fc6d24}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#fda331}.hljs-strong{font-weight:700;color:#fda331}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#a1c659}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#76c7b7}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#6fb3d2}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#d381c3}.hljs-emphasis{color:#d381c3;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#be643c}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
public/css/character-group-overlay.css ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #rm_print_characters_block.group_overlay_mode_select .character_select {
2
+ transition: background-color var(--animation-duration-3x) ease;
3
+ background-color: rgba(170, 170, 170, 0.15);
4
+ }
5
+
6
+ #rm_print_characters_block.group_overlay_mode_select .bogus_folder_select,
7
+ #rm_print_characters_block.group_overlay_mode_select .group_select {
8
+ cursor: auto;
9
+ filter: saturate(0.3);
10
+ }
11
+
12
+ #rm_print_characters_block.group_overlay_mode_select .bogus_folder_select:hover,
13
+ #rm_print_characters_block.group_overlay_mode_select .group_select:hover {
14
+ background: none;
15
+ }
16
+
17
+ #rm_print_characters_block.group_overlay_mode_select .character_select input.bulk_select_checkbox {
18
+ display: none !important;
19
+ }
20
+
21
+ #rm_print_characters_block.group_overlay_mode_select .character_select.character_selected {
22
+ background-color: var(--SmartThemeQuoteColor);
23
+ }
24
+
25
+ #rm_print_characters_block.group_overlay_mode_select .character_select .bulk_select_checkbox {
26
+ visibility: hidden;
27
+ height: 0 !important;
28
+ }
29
+
30
+ #character_context_menu.hidden {
31
+ display: none;
32
+ }
33
+
34
+ #character_context_menu {
35
+ position: absolute;
36
+ padding: 3px;
37
+ z-index: 9998;
38
+ background-color: var(--black90a);
39
+ border: 1px solid var(--black90a);
40
+ border-radius: 10px;
41
+ }
42
+
43
+ #character_context_menu ul li button {
44
+ border: 0;
45
+ border-bottom-color: currentcolor;
46
+ color: var(--SmartThemeQuoteColor);
47
+ background-color: transparent;
48
+ font-weight: bold;
49
+ font-size: 1em;
50
+ padding: 0.5em;
51
+ border-bottom: 1px dotted var(--SmartThemeQuoteColor);
52
+ width: 100%;
53
+ cursor: pointer;
54
+ }
55
+
56
+ #character_context_menu ul li button:hover {
57
+ background-color: var(--SmartThemeBlurTintColor);
58
+ }
59
+
60
+ #character_context_menu ul li:last-child button {
61
+ border-bottom: 0;
62
+ }
63
+
64
+ #character_context_menu ul li #character_context_menu_delete {
65
+ color: var(--fullred);
66
+ }
67
+
68
+ #character_context_menu ul {
69
+ list-style-type: none;
70
+ padding: 0;
71
+ margin: 0;
72
+ }
73
+
74
+ #character_context_menu .character_context_menu_separator {
75
+ height: 1px;
76
+ background-color: var(--SmartThemeBotMesBlurTintColor);
77
+ }
78
+
79
+ #character_context_menu li:hover {
80
+ background-color: var(--SmartThemeBotMesBlurTintColor);
81
+ }
82
+
83
+ #bulkEditButton.bulk_edit_overlay_active {
84
+ color: var(--golden);
85
+ }
86
+
87
+ #bulk_tag_shadow_popup {
88
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
89
+ -webkit-backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
90
+ background-color: var(--black30a);
91
+ position: absolute;
92
+ width: 100%;
93
+ height: 100vh;
94
+ height: 100dvh;
95
+ z-index: 9998;
96
+ top: 0;
97
+ }
98
+
99
+ #bulk_tag_shadow_popup #bulk_tag_popup {
100
+ padding: 1em;
101
+ }
102
+
103
+ #bulk_tag_shadow_popup #bulk_tag_popup #dialogue_popup_controls .menu_button {
104
+ width: unset;
105
+ padding: 0.25em;
106
+ }
public/css/chat-backups.css ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .chatBackupsList {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 5px;
5
+ transition: height var(--animation-duration) ease;
6
+ max-height: min(25dvh, 250px);
7
+ overflow-y: auto;
8
+ border-radius: 10px;
9
+ border: 1px solid var(--SmartThemeBorderColor);
10
+ padding: 5px;
11
+ width: 100%;
12
+ }
13
+
14
+ .chatBackupsList:not(.open),
15
+ .chatBackupsList:empty {
16
+ display: none;
17
+ }
18
+
19
+ .chatBackupsListItem {
20
+ display: flex;
21
+ flex-wrap: wrap;
22
+ flex-direction: row;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ gap: 10px;
26
+ width: 100%;
27
+ border: 1px solid var(--SmartThemeBorderColor);
28
+ border-radius: 5px;
29
+ padding: 5px 7px;
30
+ font-size: smaller;
31
+ background: var(--black30a);
32
+ }
33
+
34
+ .chatBackupsListItemName {
35
+ opacity: 0.75;
36
+ flex-grow: 1;
37
+ overflow: hidden;
38
+ text-overflow: ellipsis;
39
+ white-space: nowrap;
40
+ }
41
+
42
+ .chatBackupsListItemInfo {
43
+ opacity: 0.75;
44
+ }
45
+
46
+ .chatBackupsListItemActions {
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 5px;
50
+ }
51
+
52
+ .chatBackupsListItemActions .right_menu_button {
53
+ font-size: var(--mainFontSize);
54
+ }
public/css/cropper.min.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Cropper.js v1.5.13
3
+ * https://fengyuanchen.github.io/cropperjs
4
+ *
5
+ * Copyright 2015-present Chen Fengyuan
6
+ * Released under the MIT license
7
+ *
8
+ * Date: 2022-11-20T05:30:43.444Z
9
+ */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
public/css/data-maid.css ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .dataMaidDialogContainer {
2
+ height: 100%;
3
+ overflow: hidden;
4
+ }
5
+
6
+ .dataMaidDialog {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: 5px;
10
+ height: 100%;
11
+ overflow: hidden;
12
+ }
13
+
14
+ .dataMaidDialogHeader {
15
+ display: flex;
16
+ gap: 10px;
17
+ align-items: center;
18
+ text-align: left;
19
+ }
20
+
21
+ .dataMaidHeaderInfo {
22
+ flex: 1;
23
+ margin: 0;
24
+ padding: 5px 10px;
25
+ }
26
+
27
+ .dataMaidTextView {
28
+ width: 100%;
29
+ height: 100%;
30
+ font-family: var(--monoFontFamily);
31
+ resize: none;
32
+ font-size: 0.95em;
33
+ }
34
+
35
+ .dataMaidImageView {
36
+ width: 100%;
37
+ height: 100%;
38
+ object-fit: contain;
39
+ }
40
+
41
+ .dataMaidSpinner {
42
+ display: flex;
43
+ justify-content: center;
44
+ align-items: center;
45
+ height: 100%;
46
+ }
47
+
48
+ .dataMaidPlaceholder {
49
+ display: flex;
50
+ justify-content: center;
51
+ align-items: center;
52
+ font-size: 1.05em;
53
+ }
54
+
55
+ .dataMaidResultsList:empty {
56
+ display: none;
57
+ }
58
+
59
+ .dataMaidResultsList {
60
+ text-align: left;
61
+ display: flex;
62
+ flex-direction: column;
63
+ gap: 2px;
64
+ overflow-y: auto;
65
+ height: 100%;
66
+ flex-grow: 1;
67
+ }
68
+
69
+ .dataMaidCategory {
70
+ border: 1px solid var(--SmartThemeBorderColor);
71
+ border-radius: 10px;
72
+ padding: 0 10px;
73
+ }
74
+
75
+ .dataMaidCategoryHeader {
76
+ width: 100%;
77
+ display: flex;
78
+ align-items: center;
79
+ justify-content: space-between;
80
+ margin-right: 5px;
81
+ padding: 0 5px;
82
+ }
83
+
84
+ .dataMaidCategoryDetails {
85
+ display: flex;
86
+ flex-direction: column;
87
+ gap: 1px;
88
+ }
89
+
90
+ .dataMaidCategoryName {
91
+ flex: 3;
92
+ font-weight: bold;
93
+ font-size: 1.1em;
94
+ }
95
+
96
+ .dataMaidCategoryInfo {
97
+ flex: 1;
98
+ display: flex;
99
+ align-items: baseline;
100
+ gap: 5px;
101
+ }
102
+
103
+ .dataMaidCategoryContent {
104
+ border: 1px solid var(--SmartThemeBorderColor);
105
+ padding: 5px;
106
+ border-radius: 10px;
107
+ background-color: var(--black30a);
108
+ margin: 10px 0;
109
+ }
110
+
111
+ .dataMaidCategoryContent>.info-block {
112
+ white-space: pre-wrap;
113
+ }
114
+
115
+ .dataMaidItem {
116
+ display: flex;
117
+ flex-direction: column;
118
+ padding: 5px;
119
+ width: 100%;
120
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
121
+ }
122
+
123
+ .dataMaidItem:last-child {
124
+ border-bottom: none;
125
+ }
126
+
127
+ .dataMaidItemHeader {
128
+ display: flex;
129
+ align-items: center;
130
+ gap: 5px;
131
+ }
132
+
133
+ .dataMaidItemName {
134
+ display: flex;
135
+ flex: 1;
136
+ align-items: baseline;
137
+ gap: 2px;
138
+ word-break: break-all;
139
+ }
140
+
141
+ .dataMaidItemActions {
142
+ display: flex;
143
+ align-items: center;
144
+ gap: 5px;
145
+ }
146
+
147
+ .dataMaidItemActions>button {
148
+ font-size: 0.9em;
149
+ }
public/css/extensions-panel.css ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Extensions */
2
+ #extensions_url {
3
+ display: block;
4
+ }
5
+
6
+ .extensions_block input[type="submit"]:hover {
7
+ background-color: green;
8
+ }
9
+
10
+ .extensions_block input[type="checkbox"],
11
+ .extensions_block input[type="radio"] {
12
+ margin-left: 10px;
13
+ margin-right: 10px;
14
+ }
15
+
16
+ label[for="extensions_autoconnect"] {
17
+ display: flex;
18
+ align-items: center;
19
+ margin: 0 !important;
20
+ }
21
+
22
+ .extensions_url_block {
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ gap: 10px;
27
+ }
28
+
29
+ .extensions_url_block h4 {
30
+ display: inline;
31
+ }
32
+
33
+ .extensions_block {
34
+ clear: both;
35
+ padding: 0.05px;
36
+ }
37
+
38
+ .extensions_info {
39
+ text-align: left;
40
+ }
41
+
42
+ .extensions_info h3 {
43
+ margin-bottom: 0.5em;
44
+ }
45
+
46
+ .extensions_info h4 {
47
+ margin-bottom: 0.5em;
48
+ }
49
+
50
+ .extensions_info p {
51
+ margin-bottom: 0.5em;
52
+ margin-left: 1em;
53
+ }
54
+
55
+ .extensions_info .disabled {
56
+ color: lightgray;
57
+ }
58
+
59
+ .extensions_info .toggle_enable {
60
+ color: lightgreen;
61
+ }
62
+
63
+ .extensions_info .toggle_disable {
64
+ color: rgb(238, 144, 144);
65
+ }
66
+
67
+ .extensions_info .extension_enabled {
68
+ font-weight: bold;
69
+ }
70
+
71
+ .extensions_info .extension_disabled {
72
+ color: lightgray;
73
+ }
74
+
75
+ .extensions_info .extension_missing {
76
+ color: gray;
77
+ }
78
+
79
+ .extensions_info .extension_modules {
80
+ font-size: 0.8em;
81
+ font-weight: normal;
82
+ }
83
+
84
+ .extensions_info .extension_block {
85
+ display: flex;
86
+ flex-wrap: nowrap;
87
+ padding: 5px;
88
+ margin-bottom: 5px;
89
+ border: 1px solid var(--SmartThemeBorderColor);
90
+ border-radius: 10px;
91
+ align-items: baseline;
92
+ justify-content: space-between;
93
+ gap: 5px;
94
+ }
95
+
96
+ .extensions_info .extension_name {
97
+ font-size: 1.05em;
98
+ }
99
+
100
+ .extensions_info .extension_version {
101
+ opacity: 0.8;
102
+ font-size: 0.8em;
103
+ font-weight: normal;
104
+ margin-left: 2px;
105
+ }
106
+
107
+ .extensions_info .extension_block a {
108
+ color: var(--SmartThemeBodyColor);
109
+ }
110
+
111
+ .extensions_info .extension_name.update_available {
112
+ color: limegreen;
113
+ }
114
+
115
+ input.extension_missing[type="checkbox"] {
116
+ opacity: 0.5;
117
+ }
118
+
119
+ .update-button {
120
+ margin-right: 10px;
121
+ display: inline-flex;
122
+ }
123
+
124
+ /* Fixes order of settings for extensions */
125
+ #extensions_settings,
126
+ #extensions_settings2 {
127
+ display: flex;
128
+ flex-direction: column;
129
+ }
130
+
131
+ /* Fixes order of settings for extensions */
132
+ .extension_container {
133
+ display: contents;
134
+ }
135
+
136
+ #extensionsMenu>div.extension_container:empty {
137
+ display: none;
138
+ }
139
+
140
+ .extensions_info .extension_text_block {
141
+ white-space: nowrap;
142
+ overflow: hidden;
143
+ text-overflow: ellipsis;
144
+ }
145
+
146
+ .extensions_info .extension_actions {
147
+ flex-wrap: nowrap;
148
+ }
149
+
150
+ .extensions_toolbar {
151
+ top: 0;
152
+ position: sticky;
153
+ display: flex;
154
+ flex-direction: row;
155
+ background-color: var(--SmartThemeBlurTintColor);
156
+ gap: 5px;
157
+ z-index: 1;
158
+ margin-bottom: 10px;
159
+ padding: 5px;
160
+ }
public/css/file-form.css ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .file_attached {
2
+ display: flex;
3
+ min-width: 150px;
4
+ max-width: calc(var(--sheldWidth) * 0.9);
5
+ flex-direction: row;
6
+ gap: 10px;
7
+ align-items: center;
8
+ margin: 0.25em auto;
9
+ padding: 0 0.75em;
10
+ border: 2px solid var(--SmartThemeBorderColor);
11
+ border-radius: 15px;
12
+ background-color: var(--white20a);
13
+ }
14
+
15
+ .mes_file_container {
16
+ cursor: default;
17
+ display: flex;
18
+ gap: 15px;
19
+ align-items: center;
20
+ width: fit-content;
21
+ max-width: 100%;
22
+ background-color: var(--white20a);
23
+ border: 2px solid var(--SmartThemeBorderColor);
24
+ padding: 0.5em 1em;
25
+ border-radius: 15px;
26
+ }
27
+
28
+ .mes .mes_file_wrapper:empty {
29
+ display: none;
30
+ }
31
+
32
+ .mes .mes_file_wrapper {
33
+ display: flex;
34
+ flex-direction: column;
35
+ gap: 0.5em;
36
+ padding-right: var(--mes-right-spacing);
37
+ }
38
+
39
+ .mes_file_container .right_menu_button {
40
+ padding-right: 0;
41
+ }
42
+
43
+ .mes_file_container .mes_file_size,
44
+ .file_attached .file_size {
45
+ font-size: 0.9em;
46
+ color: var(--SmartThemeQuoteColor);
47
+ }
48
+
49
+ .file_attached .file_name,
50
+ .mes_file_container .mes_file_name {
51
+ flex: 1;
52
+ overflow: hidden;
53
+ text-overflow: ellipsis;
54
+ white-space: nowrap;
55
+ }
56
+
57
+ #file_form {
58
+ display: flex;
59
+ width: 100%;
60
+ }
61
+
62
+ .file_modal {
63
+ width: 100%;
64
+ height: 100%;
65
+ overflow-y: auto;
66
+ display: flex;
67
+ text-align: left;
68
+ }
69
+
70
+ /* Audio Player Styles */
71
+ .mes_audio_container {
72
+ cursor: default;
73
+ display: flex;
74
+ width: fit-content;
75
+ min-width: min(350px, 100%);
76
+ max-width: 100%;
77
+ background-color: var(--white20a);
78
+ border: 2px solid var(--SmartThemeBorderColor);
79
+ padding: 0.5em 1em;
80
+ border-radius: 15px;
81
+ }
82
+
83
+ .mes_audio_container .mes_img_swipes {
84
+ position: unset;
85
+ opacity: unset;
86
+ background: none;
87
+ padding: 0;
88
+ }
89
+
90
+ .mes_audio_container .mes_img_swipes .right_menu_button {
91
+ filter: brightness(75%);
92
+ text-shadow: none;
93
+ }
94
+
95
+ .mes_audio_container .mes_img_swipes .mes_img_swipe_counter {
96
+ filter: none;
97
+ text-shadow: none;
98
+ }
99
+
100
+ .audio-player {
101
+ display: flex;
102
+ flex-direction: column;
103
+ gap: 5px;
104
+ }
105
+
106
+ .audio-player-header {
107
+ display: flex;
108
+ flex-direction: row;
109
+ gap: 15px;
110
+ align-items: center;
111
+ justify-content: space-between;
112
+ }
113
+
114
+ .audio-player-title {
115
+ overflow: hidden;
116
+ text-overflow: ellipsis;
117
+ white-space: nowrap;
118
+ }
119
+
120
+ .audio-player-controls {
121
+ display: flex;
122
+ align-items: center;
123
+ gap: 10px;
124
+ }
125
+
126
+ .audio-player-play-pause,
127
+ .audio-player-volume {
128
+ background: none;
129
+ border: none;
130
+ }
131
+
132
+ .audio-player-time-separator {
133
+ font-size: 0.9em;
134
+ text-align: center;
135
+ }
136
+
137
+ .audio-player-current-time,
138
+ .audio-player-total-time {
139
+ font-size: 0.9em;
140
+ color: var(--SmartThemeQuoteColor);
141
+ min-width: 40px;
142
+ text-align: center;
143
+ }
144
+
145
+ .audio-player-progress {
146
+ flex: 1;
147
+ height: 6px;
148
+ background-color: var(--black30a);
149
+ border-radius: 3px;
150
+ cursor: pointer;
151
+ position: relative;
152
+ overflow: hidden;
153
+ }
154
+
155
+ .audio-player-progress-bar {
156
+ height: 100%;
157
+ background-color: var(--SmartThemeEmColor);
158
+ border-radius: 3px;
159
+ transition: width 0.1s linear;
160
+ width: 0%;
161
+ }
public/css/fontawesome.min.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ .fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,0));transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
7
+
8
+ .fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-table-cells-column-lock:before{content:"\e678"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-table-cells-row-lock:before{content:"\e67a"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
9
+ .fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
public/css/group-avatars.css ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .avatar_collage {
2
+ border-radius: 50%;
3
+ position: relative;
4
+ overflow: hidden;
5
+ }
6
+
7
+ .avatar_collage img {
8
+ position: absolute;
9
+ overflow: hidden;
10
+ }
11
+
12
+ .collage_2 .img_1 {
13
+ left: 0;
14
+ top: 0;
15
+ max-width: 50%;
16
+ max-height: 100%;
17
+ width: 50%;
18
+ height: 100%;
19
+ }
20
+
21
+ .collage_2 .img_2 {
22
+ left: 50%;
23
+ top: 0;
24
+ max-width: 50%;
25
+ max-height: 100%;
26
+ width: 50%;
27
+ height: 100%;
28
+ }
29
+
30
+ .collage_3 .img_1 {
31
+ left: 0;
32
+ top: 0;
33
+ max-width: 50%;
34
+ max-height: 50%;
35
+ width: 50%;
36
+ height: 50%;
37
+ }
38
+
39
+ .collage_3 .img_2 {
40
+ left: 50%;
41
+ top: 0;
42
+ max-width: 50%;
43
+ max-height: 50%;
44
+ width: 50%;
45
+ height: 50%;
46
+ }
47
+
48
+ .collage_3 .img_3 {
49
+ left: 0;
50
+ top: 50%;
51
+ max-width: 100%;
52
+ max-height: 50%;
53
+ width: 100%;
54
+ height: 50%;
55
+ }
56
+
57
+ .collage_4 .img_1 {
58
+ left: 0;
59
+ top: 0;
60
+ max-width: 50%;
61
+ max-height: 50%;
62
+ width: 50%;
63
+ height: 50%;
64
+ }
65
+
66
+ .collage_4 .img_2 {
67
+ left: 50%;
68
+ top: 0;
69
+ max-width: 50%;
70
+ max-height: 50%;
71
+ width: 50%;
72
+ height: 50%;
73
+ }
74
+
75
+ .collage_4 .img_3 {
76
+ left: 0;
77
+ top: 50%;
78
+ max-width: 50%;
79
+ max-height: 50%;
80
+ width: 50%;
81
+ height: 50%;
82
+ }
83
+
84
+ .collage_4 .img_4 {
85
+ left: 50%;
86
+ top: 50%;
87
+ max-width: 50%;
88
+ max-height: 50%;
89
+ width: 50%;
90
+ height: 50%;
91
+ }
public/css/jquery-ui.min.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*! jQuery UI - v1.13.2 - 2022-07-14
2
+ * http://jqueryui.com
3
+ * Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
4
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
5
+ * Copyright jQuery Foundation and other contributors; Licensed MIT */
6
+
7
+ .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank.ui-icon-blank.ui-icon-blank{background-image:none}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;-ms-filter:Alpha(Opacity=.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
public/css/loader.css ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #preloader {
2
+ position: fixed;
3
+ margin: 0;
4
+ padding: 0;
5
+ top: 0;
6
+ left: 0;
7
+ z-index: 999999;
8
+ width: 100vw;
9
+ height: 100vh;
10
+ width: 100dvw;
11
+ height: 100dvh;
12
+ background-color: var(--SmartThemeBlurTintColor);
13
+ color: var(--SmartThemeBodyColor);
14
+ /*for some reason the full screen blur does not work on iOS*/
15
+ backdrop-filter: blur(30px);
16
+ opacity: 1;
17
+ }
18
+
19
+ #load-spinner {
20
+ --spinner-size: 2em;
21
+ transition: all var(--animation-duration-2x) ease-out;
22
+ opacity: 1;
23
+ top: calc(50% - var(--spinner-size) / 2);
24
+ left: calc(50% - var(--spinner-size) / 2);
25
+ position: absolute;
26
+ width: var(--spinner-size);
27
+ height: var(--spinner-size);
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: center;
31
+ }
public/css/login.css ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body.login #shadow_popup {
2
+ opacity: 1;
3
+ display: flex;
4
+ }
5
+
6
+ body.login .logo {
7
+ max-width: 30px;
8
+ }
9
+
10
+ body.login #logoBlock {
11
+ align-items: center;
12
+ margin: 0 auto;
13
+ gap: 10px;
14
+ }
15
+
16
+ body.login .userSelect {
17
+ display: flex;
18
+ flex-direction: column;
19
+ color: var(--SmartThemeBodyColor);
20
+ border: 1px solid var(--SmartThemeBorderColor);
21
+ border-radius: 5px;
22
+ padding: 3px 5px;
23
+ width: 30%;
24
+ cursor: pointer;
25
+ margin: 5px 0;
26
+ transition: background-color var(--animation-duration) ease-in-out;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ text-align: center;
31
+ overflow: hidden;
32
+ }
33
+
34
+ body.login .userSelect .userName,
35
+ body.login .userSelect .userHandle {
36
+ width: 100%;
37
+ overflow: hidden;
38
+ text-overflow: ellipsis;
39
+ white-space: nowrap;
40
+ }
41
+
42
+ body.login .userSelect:hover {
43
+ background-color: var(--black30a);
44
+ }
45
+
46
+ body.login #handleEntryBlock,
47
+ body.login #passwordEntryBlock,
48
+ body.login #passwordRecoveryBlock {
49
+ margin: 2px;
50
+ }
public/css/logprobs.css ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #logprobsViewer {
2
+ overflow-y: auto;
3
+ max-width: 90dvw;
4
+ max-height: 90dvh;
5
+ min-width: 100px;
6
+ min-height: 50px;
7
+ border-radius: 10px;
8
+ border: 1px solid var(--SmartThemeBorderColor);
9
+ position: fixed;
10
+ padding: 10px;
11
+ display: none;
12
+ flex-direction: column;
13
+ box-shadow: 0 0 10px var(--black70a);
14
+ z-index: 3000;
15
+ left: 0;
16
+ top: 0;
17
+ margin: 0;
18
+ right: unset;
19
+ width: calc(((100dvw - var(--sheldWidth)) / 2) - 1px);
20
+ }
21
+
22
+ .logprobs_panel_header {
23
+ display: flex;
24
+ justify-content: space-between;
25
+ align-items: center;
26
+ }
27
+
28
+ .logprobs_panel_title {
29
+ font-weight: bold;
30
+ }
31
+
32
+ .logprobs_panel_controls {
33
+ display: flex;
34
+ align-items: center;
35
+ }
36
+
37
+ .logprobs_panel_content {
38
+ overflow-y: auto;
39
+ }
40
+
41
+ .logprobs_panel_control_button {
42
+ width: 25px;
43
+ height: 25px;
44
+ margin-left: 5px;
45
+ opacity: 0.5;
46
+ transition: all var(--animation-duration-2x);
47
+ position: unset !important;
48
+ }
49
+
50
+ .logprobs_panel_control_button:hover {
51
+ opacity: 1;
52
+ cursor: pointer;
53
+ }
54
+
55
+ #logprobs_generation_output {
56
+ user-select: none;
57
+ height: 100%;
58
+ overflow-y: auto;
59
+ word-break: break-all;
60
+ }
61
+
62
+ .logprobs_empty_state {
63
+ display: flex;
64
+ justify-content: center;
65
+ align-items: center;
66
+ opacity: 0.5;
67
+ min-height: 100px;
68
+ text-align: center;
69
+ }
70
+
71
+ .logprobs_output_prefix {
72
+ opacity: 0.5;
73
+ }
74
+
75
+ .logprobs_output_prefix:hover {
76
+ background-color: rgba(255, 0, 50, 0.4);
77
+ }
78
+
79
+ .logprobs_output_prefix:hover~.logprobs_output_prefix {
80
+ background-color: rgba(255, 0, 50, 0.4);
81
+ }
82
+
83
+ .logprobs_candidate_list {
84
+ grid-row-start: 3;
85
+ grid-row-end: 4;
86
+ display: grid;
87
+ grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
88
+ gap: 2px;
89
+ padding: 2px;
90
+ border-top: 1px solid var(--SmartThemeBodyColor);
91
+ text-align: center;
92
+ }
93
+
94
+ .logprobs_top_candidate {
95
+ border: none;
96
+ background-color: transparent;
97
+ color: inherit;
98
+ font: inherit;
99
+ }
100
+
101
+ .logprobs_top_candidate:not([disabled]) {
102
+ cursor: pointer;
103
+ }
104
+
105
+ .logprobs_top_candidate.selected {
106
+ background-color: rgba(0, 255, 0, 0.2);
107
+ font-weight: bold;
108
+ }
109
+
110
+ .logprobs_top_candidate:not([disabled]):hover {
111
+ background-color: rgba(0, 0, 0, 0.3);
112
+ }
113
+
114
+ .logprobs_tint_0 {
115
+ background-color: rgba(255, 255, 0, 0.05);
116
+ }
117
+
118
+ .logprobs_tint_0:hover,
119
+ .logprobs_tint_0.selected {
120
+ background-color: rgba(255, 255, 0, 0.4);
121
+ }
122
+
123
+ .logprobs_tint_1 {
124
+ background-color: rgba(255, 0, 255, 0.05);
125
+ }
126
+
127
+ .logprobs_tint_1:hover,
128
+ .logprobs_tint_1.selected {
129
+ background-color: rgba(255, 0, 255, 0.4);
130
+ }
131
+
132
+ .logprobs_tint_2 {
133
+ background-color: rgba(0, 255, 255, 0.05);
134
+ }
135
+
136
+ .logprobs_tint_2:hover,
137
+ .logprobs_tint_2.selected {
138
+ background-color: rgba(0, 255, 255, 0.4);
139
+ }
140
+
141
+ .logprobs_tint_3 {
142
+ background-color: rgba(50, 205, 50, 0.05);
143
+ }
144
+
145
+ .logprobs_tint_3:hover,
146
+ .logprobs_tint_3.selected {
147
+ background-color: rgba(50, 205, 50, 0.4);
148
+ }
public/css/macros.css ADDED
@@ -0,0 +1,515 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Macro System Styles
3
+ * Styles for the macro browser, documentation, and related UI components.
4
+ */
5
+
6
+ /* =============================================================================
7
+ MACRO BROWSER
8
+ Dynamic documentation browser for macros, similar to SlashCommandBrowser.
9
+ ============================================================================= */
10
+
11
+ .macroBrowser {
12
+ display: flex;
13
+ flex-direction: column;
14
+ gap: 0.5em;
15
+ }
16
+
17
+ /* -----------------------------------------------------------------------------
18
+ Toolbar (Search + Sort)
19
+ ----------------------------------------------------------------------------- */
20
+
21
+ .macroBrowser .macro-toolbar {
22
+ display: flex;
23
+ gap: 1em;
24
+ align-items: center;
25
+ flex-wrap: wrap;
26
+ }
27
+
28
+ .macroBrowser .macro-search-label {
29
+ flex: 1 1 auto;
30
+ display: flex;
31
+ gap: 0.5em;
32
+ align-items: center;
33
+ min-width: 200px;
34
+ white-space: nowrap;
35
+ }
36
+
37
+ .macroBrowser .macro-search-input {
38
+ flex: 1 1 auto;
39
+ min-width: 100px;
40
+ }
41
+
42
+ .macroBrowser .macro-sort-btn {
43
+ flex: 0 0 auto;
44
+ white-space: nowrap;
45
+ }
46
+
47
+ .macroBrowser .macro-sort-btn.active {
48
+ background-color: var(--SmartThemeQuoteColor);
49
+ }
50
+
51
+ /* -----------------------------------------------------------------------------
52
+ Container (List + Details panels)
53
+ ----------------------------------------------------------------------------- */
54
+
55
+ .macroBrowser .macro-container {
56
+ display: flex;
57
+ gap: 1em;
58
+ align-items: flex-start;
59
+ container-type: inline-size;
60
+ }
61
+
62
+ .macroBrowser .macro-list-panel {
63
+ flex: 1 1 60%;
64
+ display: flex;
65
+ flex-direction: column;
66
+ gap: 2px;
67
+ max-height: 60vh;
68
+ overflow-y: auto;
69
+ }
70
+
71
+ .macroBrowser .macro-details-panel {
72
+ flex: 0 0 40%;
73
+ position: sticky;
74
+ top: 0;
75
+ max-height: 60vh;
76
+ overflow-y: auto;
77
+ background: var(--SmartThemeBlurTintColor);
78
+ border-radius: 10px;
79
+ padding: 1em;
80
+ }
81
+
82
+ .macroBrowser .macro-details-placeholder {
83
+ opacity: 0.6;
84
+ text-align: center;
85
+ padding: 2em;
86
+ }
87
+
88
+ /* -----------------------------------------------------------------------------
89
+ Category Headers
90
+ ----------------------------------------------------------------------------- */
91
+
92
+ .macroBrowser .macro-category-header {
93
+ font-weight: bold;
94
+ padding: 0.75em 0.5em 0.25em;
95
+ margin-top: 0.5em;
96
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
97
+ border-radius: 10px 10px 0 0;
98
+ color: var(--SmartThemeQuoteColor);
99
+ position: sticky;
100
+ top: 0;
101
+ background: var(--SmartThemeChatTintColor);
102
+ z-index: 1;
103
+ }
104
+
105
+ .macroBrowser .macro-category-header:first-child {
106
+ margin-top: 0;
107
+ }
108
+
109
+ .macroBrowser .macro-category-header.isFiltered {
110
+ display: none;
111
+ }
112
+
113
+ /* -----------------------------------------------------------------------------
114
+ Macro List Items
115
+ Layout: [signature] [description (shrinks)] [source icon]
116
+ ----------------------------------------------------------------------------- */
117
+
118
+ .macroBrowser .macro-item {
119
+ display: flex;
120
+ align-items: center;
121
+ gap: 0.5em;
122
+ padding: 0.5em;
123
+ border-radius: 4px;
124
+ cursor: pointer;
125
+ transition: background-color 0.15s;
126
+ min-width: 0; /* Allow children to shrink */
127
+ }
128
+
129
+ .macroBrowser .macro-item:hover {
130
+ background: var(--black30a);
131
+ }
132
+
133
+ .macroBrowser .macro-item.selected {
134
+ background: var(--SmartThemeQuoteColor);
135
+ }
136
+
137
+ .macroBrowser .macro-item.isFiltered {
138
+ display: none;
139
+ }
140
+
141
+ .macroBrowser .macro-signature {
142
+ padding: 0.2em 0;
143
+ font-family: var(--monoFontFamily);
144
+ font-size: 0.9em;
145
+ color: var(--SmartThemeQuoteColor);
146
+ flex: 0 1 auto; /* Can shrink, but prefers not to */
147
+ overflow: hidden;
148
+ text-overflow: ellipsis;
149
+ white-space: nowrap;
150
+ min-width: 3em; /* Minimum before fully hidden */
151
+ }
152
+
153
+ .macroBrowser .macro-desc-preview {
154
+ flex: 1 1 0; /* Shrinks first, starts at 0 basis */
155
+ opacity: 0.7;
156
+ font-size: 0.9em;
157
+ overflow: hidden;
158
+ text-overflow: ellipsis;
159
+ white-space: nowrap;
160
+ min-width: 0; /* Allow shrinking to nothing */
161
+ }
162
+
163
+ .macroBrowser .macro-source {
164
+ flex: 0 0 auto; /* Never shrinks */
165
+ font-size: 0.8em;
166
+ opacity: 0.7;
167
+ }
168
+
169
+ .macroBrowser .macro-source.isExtension.isThirdParty {
170
+ color: #f0a030;
171
+ }
172
+
173
+ .macroBrowser .macro-source.isExtension.isCore {
174
+ color: #30a0f0;
175
+ }
176
+
177
+ .macroBrowser .macro-source.isCore:not(.isExtension) {
178
+ color: #50c050;
179
+ }
180
+
181
+ /* -----------------------------------------------------------------------------
182
+ Macro Details Panel
183
+ ----------------------------------------------------------------------------- */
184
+
185
+ .macro-details .macro-details-header {
186
+ display: flex;
187
+ align-items: flex-start;
188
+ justify-content: space-between;
189
+ gap: 0.5em;
190
+ margin-bottom: 0.75em;
191
+ }
192
+
193
+ .macro-details .macro-details-name {
194
+ font-family: var(--monoFontFamily);
195
+ font-size: 1.1em;
196
+ color: var(--SmartThemeQuoteColor);
197
+ background: var(--black30a);
198
+ padding: 0.15em 0.4em 0.3em;
199
+ border-radius: 4px;
200
+ word-break: break-all;
201
+ display: inline-block; /* Shrink-wrap to content */
202
+ }
203
+
204
+ .macro-details .macro-details-header > .macro-source {
205
+ flex: 0 0 auto;
206
+ font-size: 1em;
207
+ margin-top: 0.15em; /* Align with name top padding */
208
+ }
209
+
210
+ .macro-details .macro-category-badge {
211
+ display: inline-block;
212
+ font-size: 0.75em;
213
+ padding: 0.2em 0.6em;
214
+ border-radius: 10px;
215
+ background: color-mix(in srgb, var(--SmartThemeQuoteColor) 50%, transparent);
216
+ color: var(--SmartThemeBodyColor);
217
+ margin-bottom: 0.75em;
218
+ }
219
+
220
+ .macro-details .macro-details-section {
221
+ margin-bottom: 1em;
222
+ }
223
+
224
+ .macro-details .macro-details-label {
225
+ font-weight: bold;
226
+ font-size: 0.85em;
227
+ opacity: 0.8;
228
+ margin-bottom: 0.25em;
229
+ text-transform: uppercase;
230
+ letter-spacing: 0.05em;
231
+ }
232
+
233
+ .macro-details .macro-details-text {
234
+ line-height: 1.4;
235
+ }
236
+
237
+ .macro-details .macro-returns-content {
238
+ display: flex;
239
+ align-items: baseline;
240
+ gap: 0.5em;
241
+ flex-wrap: wrap;
242
+ }
243
+
244
+ /* -----------------------------------------------------------------------------
245
+ Arguments List (in details panel)
246
+ ----------------------------------------------------------------------------- */
247
+
248
+ .macro-details .macro-args-list {
249
+ list-style: none;
250
+ padding: 0;
251
+ margin: 0;
252
+ }
253
+
254
+ .macro-details .macro-arg-item {
255
+ padding: 0.4em 0;
256
+ border-bottom: 1px solid var(--black30a);
257
+ display: flex;
258
+ flex-wrap: wrap;
259
+ align-items: baseline;
260
+ gap: 0.5em;
261
+ }
262
+
263
+ .macro-details .macro-arg-item:last-child {
264
+ border-bottom: none;
265
+ }
266
+
267
+ .macro-details .macro-arg-name {
268
+ font-family: var(--monoFontFamily);
269
+ font-weight: bold;
270
+ color: var(--SmartThemeQuoteColor);
271
+ }
272
+
273
+ .macro-details .macro-arg-type {
274
+ font-size: 0.75em;
275
+ padding: 0.1em 0.4em;
276
+ border-radius: 3px;
277
+ background: var(--black30a);
278
+ color: var(--SmartThemeEmColor);
279
+ }
280
+
281
+ .macro-details .macro-arg-required {
282
+ font-size: 0.8em;
283
+ color: var(--warning-color, #e8a97f);
284
+ }
285
+
286
+ .macro-details .macro-arg-desc {
287
+ flex: 1 1 100%;
288
+ font-size: 0.9em;
289
+ opacity: 0.8;
290
+ }
291
+
292
+ .macro-details .macro-arg-sample {
293
+ font-size: 0.85em;
294
+ opacity: 0.6;
295
+ font-style: italic;
296
+ }
297
+
298
+ .macro-details .macro-arg-list-info {
299
+ font-size: 0.85em;
300
+ opacity: 0.8;
301
+ }
302
+
303
+ .macro-details .macro-example-list {
304
+ list-style: disc;
305
+ padding-left: 1.5em;
306
+ margin: 0.25em 0;
307
+ }
308
+
309
+ .macro-details .macro-example-list li {
310
+ padding: 0.2em 0;
311
+ }
312
+
313
+ .macro-details .macro-example-list code {
314
+ font-family: var(--monoFontFamily);
315
+ background: var(--black30a);
316
+ padding: 0.1em 0.3em;
317
+ border-radius: 3px;
318
+ }
319
+
320
+ /* Alias indicator icon in list items */
321
+ .macro-details .macro-alias-indicator {
322
+ flex: 0 0 auto;
323
+ font-size: 0.8em;
324
+ opacity: 0.6;
325
+ margin-left: 0.5em;
326
+ transform: rotate(90deg);
327
+ }
328
+
329
+ .macro-details .macro-item.isAlias .macro-signature {
330
+ opacity: 0.85;
331
+ }
332
+
333
+ /* Alias of indicator in details panel */
334
+ .macro-details .macro-alias-of {
335
+ display: flex;
336
+ align-items: center;
337
+ gap: 0.5em;
338
+ margin: 0.5em 0;
339
+ padding: 0.4em 0.6em;
340
+ background: var(--black30a);
341
+ border-radius: 4px;
342
+ font-size: 0.9em;
343
+ opacity: 0.9;
344
+ }
345
+
346
+ .macro-details .macro-alias-of i {
347
+ transform: rotate(90deg);
348
+ font-size: 0.85em;
349
+ opacity: 0.7;
350
+ }
351
+
352
+ .macro-details .macro-alias-of code {
353
+ font-family: var(--monoFontFamily);
354
+ background: var(--black30a);
355
+ padding: 0.1em 0.4em;
356
+ border-radius: 3px;
357
+ }
358
+
359
+ /* Aliases list in details panel */
360
+ .macro-details .macro-alias-list {
361
+ list-style: none;
362
+ padding: 0;
363
+ margin: 0.25em 0;
364
+ display: flex;
365
+ flex-wrap: wrap;
366
+ gap: 0.5em;
367
+ }
368
+
369
+ .macro-details .macro-alias-item {
370
+ display: inline-flex;
371
+ align-items: center;
372
+ gap: 0.3em;
373
+ }
374
+
375
+ .macro-details .macro-alias-item code {
376
+ font-family: var(--monoFontFamily);
377
+ background: var(--black30a);
378
+ padding: 0.2em 0.5em;
379
+ border-radius: 3px;
380
+ }
381
+
382
+ .macro-details .macro-alias-item.isHidden {
383
+ opacity: 0.5;
384
+ }
385
+
386
+ .macro-details .macro-alias-item.isHidden code {
387
+ text-decoration: line-through;
388
+ text-decoration-style: dashed;
389
+ }
390
+
391
+ .macro-details .macro-alias-hidden-badge {
392
+ font-size: 0.75em;
393
+ opacity: 0.7;
394
+ font-style: italic;
395
+ }
396
+
397
+ /* ============================================
398
+ Enhanced Macro Autocomplete Styles
399
+ ============================================ */
400
+
401
+ /* Fix macro items in autocomplete list - override the grid display: contents */
402
+ .autoComplete > .item.macro-ac-item {
403
+ display: flex !important;
404
+ flex-wrap: nowrap;
405
+ align-items: center;
406
+ gap: 0.5em;
407
+ grid-column: 1 / -1;
408
+ padding: 0.25em 0.5em;
409
+ min-height: 1.8em;
410
+ }
411
+
412
+ .autoComplete > .item.macro-ac-item > .type {
413
+ flex: 0 0 auto;
414
+ width: 2em;
415
+ text-align: center;
416
+ }
417
+
418
+ .autoComplete > .item.macro-ac-item > .specs {
419
+ flex: 0 0 auto;
420
+ max-width: 40%;
421
+ }
422
+
423
+ .autoComplete > .item.macro-ac-item > .specs > .name {
424
+ white-space: nowrap;
425
+ overflow: hidden;
426
+ text-overflow: ellipsis;
427
+ }
428
+
429
+ .autoComplete > .item.macro-ac-item > .stopgap {
430
+ flex: 0 0 0.5em;
431
+ display: block !important;
432
+ }
433
+
434
+ .autoComplete > .item.macro-ac-item > .help {
435
+ flex: 1 1 auto;
436
+ min-width: 0;
437
+ overflow: hidden;
438
+ }
439
+
440
+ .autoComplete > .item.macro-ac-item > .help > .helpContent {
441
+ white-space: nowrap;
442
+ overflow: hidden;
443
+ text-overflow: ellipsis;
444
+ display: block;
445
+ }
446
+
447
+ /* Indicator icons (alias and source) at the end */
448
+ .autoComplete > .item.macro-ac-item > .macro-ac-indicator {
449
+ flex: 0 0 auto;
450
+ font-size: 0.85em;
451
+ opacity: 0.6;
452
+ margin-left: auto;
453
+ }
454
+
455
+ .autoComplete > .item.macro-ac-item > .macro-ac-indicator:first-of-type {
456
+ margin-left: auto;
457
+ }
458
+
459
+ .autoComplete > .item.macro-ac-item > .macro-ac-indicator + .macro-ac-indicator {
460
+ margin-left: 0.25em;
461
+ }
462
+
463
+ /* Third-party source indicator */
464
+ .autoComplete > .item.macro-ac-item > .macro-source.isThirdParty {
465
+ color: #F89406;
466
+ }
467
+
468
+ /* Current argument hint banner in details */
469
+ .macro-ac-arg-hint {
470
+ display: flex;
471
+ align-items: baseline;
472
+ gap: 0.5em;
473
+ padding: 0.5em 0.75em;
474
+ background: linear-gradient(90deg, var(--ac-color-selectedBackground, var(--SmartThemeQuoteColor)), transparent);
475
+ border-left: 3px solid var(--ac-color-matchedText, var(--SmartThemeBorderColor));
476
+ border-radius: 0 4px 4px 0;
477
+ margin-bottom: 0.5em;
478
+ font-size: 0.9em;
479
+ }
480
+
481
+ .macro-ac-arg-hint i {
482
+ color: var(--ac-color-matchedText, var(--SmartThemeBorderColor));
483
+ font-size: 0.8em;
484
+ }
485
+
486
+ .macro-ac-hint-type {
487
+ font-family: var(--monoFontFamily);
488
+ font-size: 0.85em;
489
+ padding: 0.1em 0.3em;
490
+ background: var(--ac-color-hoveredBackground, var(--black30a));
491
+ border-radius: 3px;
492
+ margin-left: 0.25em;
493
+ }
494
+
495
+ .macro-ac-hint-desc {
496
+ opacity: 0.8;
497
+ }
498
+
499
+ .macro-ac-hint-sample {
500
+ opacity: 0.6;
501
+ font-style: italic;
502
+ }
503
+
504
+ /* Details panel using MacroBrowser styles - just add autocomplete context adjustments */
505
+ .autoComplete-details .macro-ac-details {
506
+ padding: 0.5em;
507
+ }
508
+
509
+ /* Highlight current argument in arguments list */
510
+ .autoComplete-details .macro-arg-item.current {
511
+ background: var(--ac-color-selectedBackground, var(--SmartThemeQuoteColor));
512
+ padding: 0.25em 0.5em;
513
+ margin: 0 -0.5em;
514
+ border-radius: 4px;
515
+ }
public/css/mobile-styles.css ADDED
@@ -0,0 +1,580 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/
2
+ @media screen and (max-width: 1000px) {
3
+
4
+ #UI-Theme-Block,
5
+ #UI-Customization,
6
+ #power-user-options-block,
7
+ #ContextSettings,
8
+ #InstructSettingsColumn,
9
+ #InstructSequencesColumn {
10
+ flex-basis: 100%;
11
+ }
12
+
13
+ #rm_button_panel_pin_div,
14
+ #lm_button_panel_pin_div {
15
+ display: none;
16
+ }
17
+
18
+ #rm_button_characters {
19
+ font-size: var(--topBarIconSize);
20
+ }
21
+
22
+ #CharListButtonAndHotSwaps {
23
+ align-items: center;
24
+ }
25
+
26
+ #send_form.compact #leftSendForm,
27
+ #send_form.compact #rightSendForm {
28
+ flex-wrap: nowrap;
29
+ width: unset;
30
+ }
31
+
32
+ #sheldWidthToggleBlock {
33
+ display: none;
34
+ }
35
+
36
+ #bg_menu_content,
37
+ #bg_custom_content {
38
+ grid-template-columns: repeat(var(--bg-thumb-columns, 3), 1fr);
39
+ }
40
+
41
+ .bg_list {
42
+ width: unset;
43
+ }
44
+
45
+ .bg_button {
46
+ font-size: 15px;
47
+ }
48
+
49
+ #Backgrounds .bg_example .BGSampleTitle {
50
+ opacity: 1;
51
+ bottom: 0px;
52
+ }
53
+
54
+ .bg_example:hover .jg-menu,
55
+ .bg_example:focus-within .jg-menu {
56
+ display: none;
57
+ }
58
+
59
+ .bg_example.mobile-menu-open .jg-menu {
60
+ display: flex;
61
+ z-index: 4;
62
+ }
63
+
64
+ .bg_example.mobile-menu-open .mobile-only-menu-toggle {
65
+ opacity: 0;
66
+ pointer-events: none;
67
+ }
68
+
69
+ .bg_example .mobile-only-menu-toggle {
70
+ display: flex;
71
+ align-items: center;
72
+ justify-content: center;
73
+ position: absolute;
74
+ top: 5px;
75
+ right: 5px;
76
+ width: 30px;
77
+ height: 30px;
78
+ background-color: rgba(0, 0, 0, 0.4);
79
+ color: white;
80
+ border-radius: 6px;
81
+ z-index: 3;
82
+ cursor: pointer;
83
+ backdrop-filter: blur(2px);
84
+ }
85
+
86
+ .bg_example .jg-button {
87
+ width: 30px;
88
+ height: 30px;
89
+ }
90
+
91
+ #background_fitting {
92
+ max-width: 6em;
93
+ }
94
+
95
+ #Backgrounds.drawer-content.openDrawer.bg-drawer-layout {
96
+ width: 100dvw;
97
+ max-width: 100dvw;
98
+ }
99
+
100
+ #bg_tabs .bg_tabs_list .bg_tab_button {
101
+ min-width: 6em;
102
+ }
103
+
104
+ #add_background_button_top>span,
105
+ #auto_background>span {
106
+ display: none;
107
+ }
108
+
109
+ #extensions_settings,
110
+ #extensions_settings2 {
111
+ width: 100% !important;
112
+ min-width: 100% !important;
113
+ }
114
+
115
+ body:not(.waifuMode) .zoomed_avatar {
116
+ min-width: 100px;
117
+ min-height: 100px;
118
+ position: absolute;
119
+ padding: 0;
120
+ filter: drop-shadow(2px 2px 2px #51515199);
121
+ z-index: 30;
122
+ overflow: hidden;
123
+ right: 0;
124
+ width: fit-content;
125
+ max-height: calc(60vh - 60px);
126
+ max-height: calc(60dvh - 60px);
127
+ max-width: 90vw;
128
+ max-width: 90dvw;
129
+ left: 50%;
130
+ top: 50%;
131
+ transform: translateX(-50%) translateY(-50%);
132
+ align-items: center;
133
+ justify-content: center;
134
+ height: fit-content;
135
+ width: 100%;
136
+ }
137
+
138
+ .zoomed_avatar .dragClose {
139
+ display: unset;
140
+ }
141
+
142
+ /* .world_entry_thin_controls, */
143
+ #persona-management-block,
144
+ #character_popup .flex-container {
145
+ flex-direction: column;
146
+ }
147
+
148
+ #WIMultiSelector {
149
+ align-self: normal;
150
+ }
151
+
152
+ .WIEntryContentAndMemo {
153
+ flex-flow: column;
154
+ }
155
+
156
+ .WIEntryContentAndMemo .world_entry_thin_controls {
157
+ width: 100%;
158
+ }
159
+
160
+ .world_entry_form_control.world_entry_form_horizontal {
161
+ /* flex-direction: column; */
162
+ align-items: flex-start;
163
+ row-gap: 0.5rem;
164
+ }
165
+
166
+ .world_entry_form_control.world_entry_form_horizontal .world_popup_expander {
167
+ display: none;
168
+ }
169
+
170
+ .world_entry .inline-drawer-toggle {
171
+ padding-bottom: 5px;
172
+ }
173
+
174
+ #worldInfoScanningCheckboxes {
175
+ flex-flow: row;
176
+ flex-wrap: wrap;
177
+ }
178
+
179
+ body {
180
+ touch-action: none;
181
+ overflow: hidden;
182
+ position: fixed;
183
+ }
184
+
185
+ .world_entry_form_control {
186
+ /* width: 100%; */
187
+ }
188
+
189
+ .drawer-content {
190
+ min-width: unset;
191
+ width: 100dvw;
192
+ max-height: calc(100vh - 45px);
193
+ max-height: calc(100dvh - 45px);
194
+ position: fixed;
195
+ left: 0;
196
+ top: 5px;
197
+ border: 1px solid var(--SmartThemeBorderColor);
198
+ }
199
+
200
+ .drawer-content .floating_panel_maximize,
201
+ .drawer-content .inline-drawer-maximize {
202
+ display: none;
203
+ }
204
+
205
+ #select_chat_popup {
206
+ align-items: start;
207
+ height: min-content;
208
+ align-content: start;
209
+ max-width: unset;
210
+ }
211
+
212
+ #wiActivationSettings,
213
+ #wiTopBlock {
214
+ flex-direction: column;
215
+ }
216
+
217
+ #top-settings-holder,
218
+ #top-bar {
219
+ position: fixed;
220
+ width: 100vw;
221
+ width: 100dvw;
222
+ }
223
+
224
+ #bg1,
225
+ #bg_custom {
226
+ height: 100vh !important;
227
+ height: 100dvh !important;
228
+ width: 100vw !important;
229
+ width: 100dvw !important;
230
+ background-position: center;
231
+
232
+ }
233
+
234
+
235
+ #sheld,
236
+ #character_popup,
237
+ .drawer-content {
238
+ width: 100dvw !important;
239
+ margin: 0 auto;
240
+ max-width: 100dvw;
241
+ left: 0 !important;
242
+ resize: none !important;
243
+ top: var(--topBarBlockSize);
244
+ }
245
+
246
+ .wi-settings {
247
+ flex-direction: column;
248
+ gap: 5px !important;
249
+ }
250
+
251
+ .WIEntryTitleAndStatus,
252
+ .WIEntryHeaderControls {
253
+ width: 100%;
254
+ }
255
+
256
+ #WIEntryHeaderTitlesPC {
257
+ display: none;
258
+ }
259
+
260
+ .WIEntryHeaderTitleMobile {
261
+ display: block !important;
262
+ }
263
+
264
+ #character_popup,
265
+ #world_popup {
266
+ overflow-y: auto;
267
+ }
268
+
269
+ #character_popup,
270
+ #send_form {
271
+ border: 1px solid var(--SmartThemeBorderColor);
272
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
273
+ max-width: 100dvw;
274
+ }
275
+
276
+ #chat {
277
+ border-left: 1px solid var(--SmartThemeBorderColor);
278
+ border-right: 1px solid var(--SmartThemeBorderColor);
279
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
280
+ align-items: start;
281
+ align-content: start;
282
+ overflow-y: auto;
283
+ overflow-x: hidden
284
+ }
285
+
286
+ .mes_buttons {
287
+ font-size: calc(var(--mainFontSize)*1.2);
288
+ }
289
+
290
+ .drag-grabber,
291
+ .pull-tab {
292
+ display: none !important;
293
+
294
+ }
295
+
296
+ #groupCurrentMemberPopoutButton,
297
+ #summaryExtensionPopoutButton {
298
+ display: none;
299
+ }
300
+
301
+ #right-nav-panel,
302
+ #left-nav-panel,
303
+ #floatingPrompt,
304
+ #cfgConfig,
305
+ #logprobsViewer,
306
+ #movingDivs>div {
307
+ /* 100vh are fallback units for browsers that don't support dvh */
308
+ height: calc(100vh - 45px);
309
+ height: calc(100dvh - 45px);
310
+ min-width: 100dvw !important;
311
+ width: 100dvw !important;
312
+ max-width: 100dvw !important;
313
+ overflow-y: hidden;
314
+ border-left: 1px solid var(--SmartThemeBorderColor);
315
+ border-right: 1px solid var(--SmartThemeBorderColor);
316
+ border-bottom: 1px solid var(--SmartThemeBorderColor);
317
+ border-radius: 0 0 20px 20px;
318
+ top: var(--topBarBlockSize) !important;
319
+ left: 0 !important;
320
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
321
+
322
+ @starting-style {
323
+ height: 0;
324
+ }
325
+ }
326
+
327
+ #left-nav-panel:not(.openDrawer),
328
+ #right-nav-panel:not(.openDrawer) {
329
+ height: 0;
330
+ }
331
+
332
+ /*
333
+ #right-nav-panel {
334
+ padding-right: 15px;
335
+ }
336
+ */
337
+
338
+ #floatingPrompt,
339
+ #cfgConfig,
340
+ #logprobsViewer,
341
+ #movingDivs>div {
342
+ height: min-content;
343
+ }
344
+
345
+ #right-nav-panel h4 {
346
+ margin: 5px auto;
347
+ }
348
+
349
+ #result_info {
350
+ font-size: calc(var(--mainFontSize) - .1rem);
351
+ }
352
+
353
+ /* .avatar_div {
354
+ margin-top: 5px;
355
+ } */
356
+
357
+ #character_popup {
358
+ width: 100%;
359
+ border-radius: 0 0 20px 20px;
360
+ margin-top: 0px;
361
+ height: calc(100% - var(--topBarBlockSize));
362
+ }
363
+
364
+ .drawer25pWidth {
365
+ flex-basis: max(calc(100% / 4 - 10px), 190px);
366
+ }
367
+
368
+ .drawer33pWidth {
369
+ flex-basis: max(calc(100% / 3 - 10px), 190px);
370
+ }
371
+
372
+ .expression-holder {
373
+ display: none;
374
+ }
375
+
376
+ body.waifuMode #sheld {
377
+ height: 40vh;
378
+ height: 40dvh;
379
+ top: 60vh;
380
+ top: 60dvh;
381
+ bottom: 0 !important;
382
+ }
383
+
384
+ body:not(.waifuMode) #expression-wrapper {
385
+ visibility: hidden;
386
+ }
387
+
388
+ #visual-novel-wrapper {
389
+ position: unset !important;
390
+ }
391
+
392
+ body.waifuMode .expression-holder {
393
+ /*display: inline;*/
394
+
395
+ max-width: 100vw;
396
+ height: 100vh;
397
+ width: max-content;
398
+ margin: 0 auto;
399
+ position: absolute;
400
+ left: 0;
401
+ right: 0;
402
+ filter: drop-shadow(2px 2px 2px #51515199);
403
+ z-index: 1 !important;
404
+ }
405
+
406
+ body.waifuMode img.expression {
407
+ object-fit: cover;
408
+ }
409
+
410
+ body.waifuMode .zoomed_avatar_container {
411
+ height: 100%;
412
+ }
413
+
414
+ body.waifuMode .zoomed_avatar {
415
+ width: fit-content;
416
+ max-height: calc(60vh - 60px);
417
+ max-height: calc(60dvh - 60px);
418
+ max-width: 90vw;
419
+ max-width: 90dvw;
420
+ }
421
+
422
+ .scrollableInner {
423
+ overflow-y: auto;
424
+ overflow-x: hidden;
425
+ max-height: calc(100vh - 90px);
426
+ max-height: calc(100dvh - 90px);
427
+ }
428
+
429
+ .horde_multiple_hint {
430
+ display: none;
431
+ }
432
+ }
433
+
434
+ /*landscape mode phones and ipads*/
435
+ @media screen and (max-width: 1000px) and (orientation: landscape) {
436
+ body.waifuMode img.expression {
437
+ object-fit: contain;
438
+ }
439
+
440
+ .tag.excluded:after {
441
+ top: unset;
442
+ bottom: unset;
443
+ }
444
+
445
+ body:not(.waifuMode) .zoomed_avatar {
446
+ max-height: calc(60vh - 60px);
447
+ max-height: calc(60dvh - 60px);
448
+ max-width: 90vw;
449
+ max-width: 90dvw;
450
+ left: 50%;
451
+ top: 50%;
452
+ transform: translateX(-50%) translateY(-50%);
453
+ align-items: center;
454
+ justify-content: center;
455
+ height: fit-content;
456
+ width: 100%;
457
+ }
458
+ }
459
+
460
+ /*portrait mode phones*/
461
+ @media screen and (max-width: 450px) {
462
+
463
+ body:not(.waifuMode) .zoomed_avatar {
464
+ min-width: 100px;
465
+ min-height: 100px;
466
+ max-height: 50vh;
467
+ max-width: 90vw;
468
+ position: absolute;
469
+ padding: 0;
470
+ filter: drop-shadow(2px 2px 2px #51515199);
471
+ z-index: 30;
472
+ overflow: hidden;
473
+ display: none;
474
+ right: 0;
475
+ left: 50%;
476
+ top: 50%;
477
+ transform: translateX(-50%) translateY(-50%);
478
+ align-items: center;
479
+ justify-content: center;
480
+ height: fit-content;
481
+ width: 100%;
482
+ }
483
+
484
+ .drawer25pWidth {
485
+ flex-basis: max(calc(100% / 2 - 10px), 180px);
486
+ }
487
+
488
+ .drawer33pWidth {
489
+ flex-basis: max(calc(100% / 2 - 10px), 180px);
490
+ }
491
+
492
+ .tag.excluded:after {
493
+ top: unset;
494
+ bottom: unset;
495
+ }
496
+
497
+
498
+ #leftSendForm,
499
+ #rightSendForm {
500
+ width: 1.15em;
501
+ flex-wrap: wrap;
502
+ height: unset;
503
+ }
504
+ }
505
+
506
+ /*iOS specific*/
507
+ @supports (-webkit-touch-callout: none) {
508
+ body {
509
+ margin: 0 auto;
510
+ }
511
+
512
+ #top-bar {
513
+ width: 100vw;
514
+ }
515
+
516
+ #sheld {
517
+ margin: unset;
518
+ padding: unset;
519
+ width: unset;
520
+ height: unset;
521
+ min-width: unset;
522
+ max-width: unset;
523
+ min-height: unset;
524
+ max-height: unset;
525
+ width: 100vw;
526
+ width: 100dvw;
527
+ height: calc(100vh - 36px);
528
+ height: calc(100dvh - 36px);
529
+ padding-right: max(env(safe-area-inset-right), 0px);
530
+ padding-left: max(env(safe-area-inset-left), 0px);
531
+ padding-bottom: 0;
532
+ }
533
+
534
+ body.PWA #sheld {
535
+ padding-right: max(env(safe-area-inset-right), 2px);
536
+ padding-left: max(env(safe-area-inset-left), 2px);
537
+ padding-bottom: max(env(safe-area-inset-bottom), 15px);
538
+
539
+ }
540
+
541
+ #character_popup,
542
+ #world_popup,
543
+ #left-nav-panel,
544
+ #right-nav-panel,
545
+ .drawer-content {
546
+ width: unset;
547
+ height: unset;
548
+ min-width: unset;
549
+ max-width: unset;
550
+ min-height: unset;
551
+ max-height: unset;
552
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
553
+ left: 0;
554
+ right: 0;
555
+ top: 0;
556
+ margin: 0 auto;
557
+ height: calc(100vh - 70px);
558
+ height: calc(100dvh - 70px);
559
+ width: calc(100dvw - 5px);
560
+ max-height: calc(100vh - 70px);
561
+ max-height: calc(100dvh - 70px);
562
+ max-width: calc(100dvw - 5px);
563
+
564
+ }
565
+
566
+ #character_popup,
567
+ #world_popup,
568
+ .drawer-content {
569
+ margin-top: 36px;
570
+ }
571
+
572
+ .scrollableInner {
573
+ overflow-y: auto;
574
+ overflow-x: hidden;
575
+ }
576
+
577
+ #horde_model {
578
+ height: unset;
579
+ }
580
+ }
public/css/popup-safari-fix.css ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* iPhone copium land */
2
+ body.safari .popup .popup-body:has(.maximized_textarea),
3
+ body.safari .popup.large_dialogue_popup .popup-body {
4
+ height: 100%;
5
+ }
6
+
7
+ body.safari .popup .popup-body {
8
+ height: fit-content;
9
+ max-height: 90vh;
10
+ max-height: 90dvh;
11
+ }
12
+
13
+ body.safari #select_chat_div {
14
+ height: auto;
15
+ }
16
+
17
+ body.safari #select_chat_popup {
18
+ height: max-content;
19
+ }
public/css/popup.css ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('/lib/dialog-polyfill.css');
2
+ @import url('./popup-safari-fix.css');
3
+
4
+ dialog {
5
+ color: var(--SmartThemeBodyColor);
6
+ }
7
+
8
+ /* Closed state of the dialog */
9
+ .popup {
10
+ width: 500px;
11
+ text-align: center;
12
+ box-shadow: 0px 0px 14px var(--black70a);
13
+ border: 1px solid var(--SmartThemeBorderColor);
14
+ padding: 4px 14px;
15
+ background-color: var(--SmartThemeBlurTintColor);
16
+ border-radius: 10px;
17
+ display: flex;
18
+ flex-direction: column;
19
+
20
+ max-height: calc(100dvh - 2em);
21
+ max-width: calc(100dvw - 2em);
22
+ min-height: fit-content;
23
+
24
+ /* Overflow visible so elements (like toasts) can appear outside of the dialog. '.popup-body' is hiding overflow for the real content. */
25
+ overflow: visible;
26
+
27
+ /* Fix weird animation issue with font-scaling during popup open */
28
+ backface-visibility: hidden;
29
+ -webkit-font-smoothing: subpixel-antialiased;
30
+
31
+ /* Variables setup */
32
+ --popup-animation-speed: var(--animation-duration-slow);
33
+ }
34
+
35
+ /** Popup styles applied to the main popup */
36
+ .popup--animation-fast {
37
+ --popup-animation-speed: var(--animation-duration);
38
+ }
39
+
40
+ .popup--animation-slow {
41
+ --popup-animation-speed: var(--animation-duration-slow);
42
+ }
43
+
44
+ .popup--animation-none {
45
+ --popup-animation-speed: 0ms;
46
+ }
47
+
48
+ /* Styling of main popup elements */
49
+ .popup .popup-body {
50
+ display: flex;
51
+ flex-direction: column;
52
+ overflow: hidden;
53
+ width: min(100%, 100vw);
54
+ height: 100%;
55
+ padding: 1px;
56
+ }
57
+
58
+ .popup:not(:has(.img_enlarged_container)) .popup-body {
59
+ max-height: 95dvh;
60
+ }
61
+
62
+ .popup .popup-content {
63
+ margin-top: 10px;
64
+ padding: 0 8px;
65
+ overflow: hidden;
66
+ flex-grow: 1;
67
+ }
68
+
69
+ .popup .popup-content h3:first-child {
70
+ /* No double spacing for the first heading needed, the .popup-content already has margin */
71
+ margin-top: 0px;
72
+ }
73
+
74
+ .popup.vertical_scrolling_dialogue_popup .popup-content {
75
+ overflow-y: auto;
76
+ }
77
+
78
+ .popup.horizontal_scrolling_dialogue_popup .popup-content {
79
+ overflow-x: auto;
80
+ }
81
+
82
+ .popup.left_aligned_dialogue_popup .popup-content {
83
+ text-align: start;
84
+ }
85
+
86
+ /* Opening animation */
87
+ .popup[opening] {
88
+ animation: pop-in var(--popup-animation-speed) ease-in-out;
89
+ }
90
+
91
+ .popup[opening]::backdrop {
92
+ animation: fade-in var(--popup-animation-speed) ease-in-out;
93
+ }
94
+
95
+ /* Fix toast container snapping into the backdrop while the animation is running */
96
+ .popup[opening] #toast-container {
97
+ visibility: hidden;
98
+ }
99
+
100
+ /* Open state of the dialog */
101
+ .popup[open] {
102
+ color: var(--SmartThemeBodyColor);
103
+ }
104
+
105
+ .popup[open]::backdrop {
106
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
107
+ -webkit-backdrop-filter: blur(calc(var(--SmartThemeBlurStrength) * 2));
108
+ background-color: var(--black30a);
109
+ }
110
+
111
+ body.no-blur .popup[open]::backdrop {
112
+ backdrop-filter: none;
113
+ -webkit-backdrop-filter: none;
114
+ }
115
+
116
+ /* Closing animation */
117
+ .popup[closing] {
118
+ animation: pop-out var(--popup-animation-speed) ease-in-out;
119
+ }
120
+
121
+ .popup[closing]::backdrop {
122
+ animation: fade-out var(--popup-animation-speed) ease-in-out;
123
+ }
124
+
125
+ /* Edge inset to match Toastr default spacing */
126
+ :root {
127
+ --toast-edge: 12px;
128
+ }
129
+
130
+ .popup #toast-container {
131
+ /* Popups are centered by default; toasts should not be */
132
+ text-align: left;
133
+ }
134
+
135
+ /* Per-position position adjustments caused by the top bar, inside the popup */
136
+ .popup #toast-container.toast-top-left {
137
+ top: calc(var(--toast-edge) + var(--topBarBlockSize));
138
+ }
139
+
140
+ .popup #toast-container.toast-top-center {
141
+ /* toastr in core does not have a top offset on center, so we don't do that either in popups */
142
+ top: var(--topBarBlockSize);
143
+ }
144
+
145
+ .popup #toast-container.toast-top-right {
146
+ top: calc(var(--toast-edge) + var(--topBarBlockSize));
147
+ }
148
+
149
+ .popup-crop-wrap {
150
+ margin: 10px auto;
151
+ max-height: 75vh;
152
+ max-height: 75dvh;
153
+ max-width: 100%;
154
+ }
155
+
156
+ .popup-crop-wrap img {
157
+ max-width: 100%;
158
+ /* This rule is very important, please do not ignore this! */
159
+ }
160
+
161
+ .popup-inputs {
162
+ margin-top: 10px;
163
+ font-size: smaller;
164
+ opacity: 0.7;
165
+ }
166
+
167
+ .popup-input {
168
+ margin-top: 10px;
169
+ }
170
+
171
+ .popup-controls {
172
+ margin-top: 10px;
173
+ display: flex;
174
+ align-self: center;
175
+ gap: 20px;
176
+ }
177
+
178
+ .menu_button.menu_button_default {
179
+ box-shadow: 0 0 5px var(--white20a);
180
+ }
181
+
182
+ .menu_button.popup-button-ok {
183
+ background-color: var(--crimson70a);
184
+ }
185
+
186
+ .menu_button.popup-button-ok:hover {
187
+ background-color: var(--crimson-hover);
188
+ }
189
+
190
+ .popup-controls .menu_button {
191
+ /* Popup buttons should not scale to smallest size, otherwise they will always break to multiline if multiple words */
192
+ width: unset;
193
+
194
+ /* Fix weird animation issue with fonts on brightness filter */
195
+ backface-visibility: hidden;
196
+ transform: translateZ(0);
197
+ -webkit-font-smoothing: subpixel-antialiased;
198
+ }
199
+
200
+ .popup-controls .menu_button:hover:focus-visible {
201
+ filter: brightness(1.3) saturate(1.3);
202
+ }
203
+
204
+ .popup .popup-button-close {
205
+ position: absolute;
206
+ top: -6px;
207
+ right: -6px;
208
+ width: 24px;
209
+ height: 24px;
210
+ font-size: 20px;
211
+ padding: 2px 3px 3px 2px;
212
+
213
+ filter: brightness(0.8);
214
+
215
+ /* Fix weird animation issue with font-scaling during popup open */
216
+ backface-visibility: hidden;
217
+ }
public/css/promptmanager.css ADDED
@@ -0,0 +1,377 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #completion_prompt_manager .caution {
2
+ color: var(--fullred);
3
+ }
4
+
5
+ #completion_prompt_manager #completion_prompt_manager_list {
6
+ display: flex;
7
+ flex-direction: column;
8
+ min-height: 300px;
9
+ }
10
+
11
+ #completion_prompt_manager .completion_prompt_manager_list_separator hr {
12
+ grid-column-start: 1;
13
+ grid-column-end: 4;
14
+ width: 100%;
15
+ margin: 0.5em 0;
16
+ background-image: linear-gradient(90deg, var(--transparent), var(--SmartThemeBorderColor), var(--transparent));
17
+ min-height: 1px;
18
+ }
19
+
20
+ #completion_prompt_manager #completion_prompt_manager_list li {
21
+ display: grid;
22
+ grid-template-columns: 4fr 80px 45px;
23
+ margin-bottom: 0.5em;
24
+ width: 100%
25
+ }
26
+
27
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .completion_prompt_manager_prompt_name .fa-solid {
28
+ color: var(--white50a);
29
+ }
30
+
31
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .completion_prompt_manager_prompt_name .fa-solid[data-role] {
32
+ vertical-align: unset;
33
+ margin-left: 3px;
34
+ }
35
+
36
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_invisible {
37
+ display: none;
38
+ }
39
+
40
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_visible {
41
+ display: grid;
42
+ }
43
+
44
+
45
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_list_head .prompt_manager_prompt_tokens,
46
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_tokens {
47
+ font-size: calc(var(--mainFontSize)*0.9);
48
+ text-align: right;
49
+ }
50
+
51
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .prompt_manager_prompt_controls {
52
+ text-align: right;
53
+ }
54
+
55
+ #completion_prompt_manager .completion_prompt_manager_list_head {
56
+ padding: 0.5em 0.5em 0;
57
+ }
58
+
59
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt {
60
+ align-items: center;
61
+ padding: 0.5em;
62
+ border: 1px solid var(--SmartThemeBorderColor);
63
+ }
64
+
65
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_controls {
66
+ display: flex;
67
+ justify-content: space-between;
68
+ font-size: calc(var(--mainFontSize)*1.2);
69
+ }
70
+
71
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .prompt_manager_prompt_controls span {
72
+ display: flex;
73
+ height: 18px;
74
+ width: 18px;
75
+ }
76
+
77
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span span {
78
+ flex-direction: column;
79
+ justify-content: center;
80
+ margin-left: 0.25em;
81
+ cursor: pointer;
82
+ transition: var(--animation-duration-2x) ease-in-out;
83
+ height: 20px;
84
+ width: 20px;
85
+ filter: drop-shadow(0px 0px 2px black);
86
+ opacity: 0.4;
87
+ }
88
+
89
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span:hover {
90
+ opacity: 1;
91
+ }
92
+
93
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_edit,
94
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_chathistory_edit,
95
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_dialogueexamples_edit,
96
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_inspect {
97
+ display: none;
98
+ padding: 0.5em;
99
+ height: 100%;
100
+ display: flex;
101
+ flex-direction: column;
102
+ }
103
+
104
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry {
105
+ padding: 0.5em;
106
+ flex: 1;
107
+ }
108
+
109
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form {
110
+ height: 100%;
111
+ display: flex;
112
+ flex-direction: column;
113
+ }
114
+
115
+ .completion_prompt_manager_popup_entry_form .select2-container {
116
+ margin: 5px 0;
117
+ }
118
+
119
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_control:has(#completion_prompt_manager_popup_entry_form_prompt) {
120
+ flex: 1;
121
+ display: flex;
122
+ flex-direction: column;
123
+ }
124
+
125
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_entry_form_prompt {
126
+ flex: 1;
127
+ }
128
+
129
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_inspect .completion_prompt_manager_popup_entry {
130
+ padding: 0.5em;
131
+ }
132
+
133
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_entry_form_inspect_list {
134
+ margin-top: 1em;
135
+ }
136
+
137
+ #completion_prompt_manager_popup .completion_prompt_manager_prompt {
138
+ margin: 1em 0;
139
+ padding: 0.5em;
140
+ border: 1px solid var(--SmartThemeBorderColor);
141
+ }
142
+
143
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_header {
144
+ display: flex;
145
+ justify-content: space-between;
146
+ align-items: center;
147
+ }
148
+
149
+ #completion_prompt_manager_popup #completion_prompt_manager_popup_close_button {
150
+ font-size: 1em;
151
+ padding: 0.5em;
152
+ }
153
+
154
+ .completion_prompt_manager_popup_entry_form_control {
155
+ margin-top: 1em;
156
+ }
157
+
158
+ #prompt-manager-reset-character,
159
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_reset {
160
+ color: rgb(220 173 16);
161
+ }
162
+
163
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_close,
164
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_reset,
165
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_footer #completion_prompt_manager_popup_entry_form_save {
166
+ font-size: 1.25em;
167
+ padding: 0.5em;
168
+ }
169
+
170
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry_form_control #completion_prompt_manager_popup_entry_form_prompt {
171
+ min-height: 200px;
172
+ }
173
+
174
+ #completion_prompt_manager_popup .completion_prompt_manager_popup_entry .completion_prompt_manager_popup_entry_form_footer {
175
+ display: flex;
176
+ justify-content: space-between;
177
+ margin-top: 1em;
178
+ }
179
+
180
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_draggable {
181
+ cursor: grab;
182
+ }
183
+
184
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name {
185
+ white-space: nowrap;
186
+ overflow: hidden;
187
+ }
188
+
189
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name .prompt-manager-inspect-action {
190
+ color: var(--SmartThemeBodyColor);
191
+ cursor: pointer;
192
+ }
193
+
194
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_name .prompt-manager-inspect-action:hover {
195
+ text-decoration: underline;
196
+ }
197
+
198
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_disabled .completion_prompt_manager_prompt_name,
199
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt_disabled .completion_prompt_manager_prompt_name .prompt-manager-inspect-action {
200
+ color: var(--white30a);
201
+ }
202
+
203
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt:not(.completion_prompt_manager_prompt_disabled) .prompt-manager-toggle-action {
204
+ color: var(--SmartThemeQuoteColor);
205
+ }
206
+
207
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt.completion_prompt_manager_prompt_disabled {
208
+ border: 1px solid var(--white20a);
209
+ }
210
+
211
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt .mes_edit {
212
+ margin-left: 0.5em;
213
+ }
214
+
215
+ #completion_prompt_manager .completion_prompt_manager_error {
216
+ padding: 1em;
217
+ border: 3px solid var(--fullred);
218
+ margin-top: 1em;
219
+ margin-bottom: 0.5em;
220
+ }
221
+
222
+ #completion_prompt_manager .completion_prompt_manager_header {
223
+ display: flex;
224
+ flex-direction: row;
225
+ justify-content: space-between;
226
+ color: var(--white50a);
227
+ margin-top: 0.5em;
228
+ padding: 0 0.25em;
229
+ width: 100%
230
+ }
231
+
232
+ #completion_prompt_manager .completion_prompt_manager_header div {
233
+ margin-top: 0.5em;
234
+ width: fit-content;
235
+ }
236
+
237
+ #completion_prompt_manager .completion_prompt_manager_header_advanced {
238
+ display: flex;
239
+ margin-right: 0.25em;
240
+ }
241
+
242
+ #completion_prompt_manager .completion_prompt_manager_header_advanced span {
243
+ flex-direction: column;
244
+ justify-content: center;
245
+ margin-left: 0.25em;
246
+ transition: var(--animation-duration-2x) ease-in-out;
247
+ filter: drop-shadow(0px 0px 2px black);
248
+ }
249
+
250
+ #completion_prompt_manager .completion_prompt_manager_header_advanced span.fa-solid {
251
+ display: inherit;
252
+ }
253
+
254
+ #completion_prompt_manager .completion_prompt_manager_footer {
255
+ display: flex;
256
+ flex-direction: row;
257
+ justify-content: flex-end;
258
+ gap: 0.25em;
259
+ padding: 0 0.25em;
260
+ width: 100%
261
+ }
262
+
263
+ #completion_prompt_manager .completion_prompt_manager_footer a {
264
+ font-size: 12px;
265
+ }
266
+
267
+ #completion_prompt_manager .completion_prompt_manager_important a {
268
+ font-weight: 600;
269
+ }
270
+
271
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .completion_prompt_manager_prompt_name .fa-solid.prompt-manager-overridden {
272
+ margin-left: 3px;
273
+ color: var(--SmartThemeQuoteColor);
274
+ cursor: pointer;
275
+ opacity: 0.8;
276
+ }
277
+
278
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .drag-handle:not(.ui-sortable-handle) {
279
+ display: none;
280
+ }
281
+
282
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt:has(.drag-handle.ui-sortable-handle) {
283
+ position: relative;
284
+ padding-left: 20px;
285
+ }
286
+
287
+ #completion_prompt_manager #completion_prompt_manager_list .completion_prompt_manager_prompt .drag-handle {
288
+ position: absolute;
289
+ height: 100%;
290
+ top: 0;
291
+ padding: 0 5px;
292
+ display: flex;
293
+ align-items: center;
294
+ }
295
+
296
+ #completion_prompt_manager_footer_append_prompt {
297
+ font-size: 1em;
298
+ }
299
+
300
+ #prompt-manager-export-format-popup {
301
+ padding: 0.25em;
302
+ display: none;
303
+ }
304
+
305
+ #prompt-manager-export-format-popup[data-show] {
306
+ display: block;
307
+ }
308
+
309
+ #completion_prompt_manager_popup {
310
+ margin-top: 0;
311
+ }
312
+
313
+ #completion_prompt_manager_popup {
314
+ overflow-y: auto;
315
+ height: calc(100% - var(--topBarBlockSize));
316
+ position: absolute;
317
+ margin-left: auto;
318
+ margin-right: auto;
319
+ left: 0;
320
+ right: 0;
321
+ top: var(--topBarBlockSize);
322
+ box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
323
+ padding: 1em;
324
+ border: 1px solid var(--SmartThemeBorderColor);
325
+ flex-direction: column;
326
+ z-index: 3010 !important;
327
+ border-radius: 0 0 20px 20px;
328
+ background-color: var(--SmartThemeBlurTintColor);
329
+ }
330
+
331
+ #prompt-manager-export-format-popup {
332
+ display: none;
333
+ }
334
+
335
+ .prompt-manager-export-format-popup-flex {
336
+ display: flex;
337
+ flex-direction: column;
338
+ }
339
+
340
+ .prompt-manager-export-format-popup-flex .row {
341
+ display: flex;
342
+ justify-content: space-between;
343
+ }
344
+
345
+ .prompt-manager-export-format-popup-flex a,
346
+ .prompt-manager-export-format-popup-flex span {
347
+ display: flex;
348
+ margin: auto 0;
349
+ justify-content: space-between;
350
+ }
351
+
352
+ @media screen and (max-width: 412px) {
353
+ #completion_prompt_manager_popup {
354
+ max-width: 100%;
355
+ }
356
+
357
+ #completion_prompt_manager #completion_prompt_manager_list li.completion_prompt_manager_prompt span span span {
358
+ margin-left: 0.5em;
359
+ }
360
+ }
361
+
362
+ .completion_prompt_manager_popup_entry_form_control:has(#completion_prompt_manager_popup_entry_form_prompt:disabled)>div:first-child::after {
363
+ content: attr(external_piece_text);
364
+ display: block;
365
+ width: 100%;
366
+ font-weight: 500;
367
+ text-align: center;
368
+ }
369
+
370
+ .completion_prompt_manager_popup_entry_form_control #completion_prompt_manager_popup_entry_form_prompt:disabled {
371
+ visibility: hidden;
372
+ }
373
+
374
+ #completion_prompt_manager_popup_entry_source_block {
375
+ display: flex;
376
+ justify-content: center;
377
+ }
public/css/rm-groups.css ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* GROUP CHATS */
2
+
3
+ .group_pagination {
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ }
8
+
9
+ #rm_group_chats_block .tag.filterByFolder,
10
+ #rm_group_chats_block .tag.filterByGroups {
11
+ display: none;
12
+ }
13
+
14
+ #rm_button_group_chats h2 {
15
+ margin-top: auto;
16
+ margin-bottom: auto;
17
+ color: rgb(188, 193, 200, 1);
18
+ border: 1px solid var(--SmartThemeBorderColor);
19
+ ;
20
+ background-color: rgba(0, 0, 0, 0.3);
21
+ padding: 6px;
22
+ border-radius: 10px;
23
+ }
24
+
25
+ #rm_group_chats_block {
26
+ display: none;
27
+ align-items: flex-start;
28
+ padding: 0 5px;
29
+ overflow-y: auto;
30
+ }
31
+
32
+ #rm_group_chats_block h3,
33
+ #rm_group_chats_block h5 {
34
+ margin-top: 5px;
35
+ margin-bottom: 5px;
36
+ }
37
+
38
+ #rm_group_buttons>div {
39
+ display: flex;
40
+ flex-direction: column;
41
+ }
42
+
43
+ #rm_group_buttons .checkbox {
44
+ display: flex;
45
+ }
46
+
47
+ #rm_group_buttons .checkbox h4 {
48
+ display: inline-block;
49
+ }
50
+
51
+ #rm_group_buttons>input {
52
+
53
+ cursor: pointer;
54
+ user-select: none;
55
+ }
56
+
57
+ #rm_group_buttons>input:disabled {
58
+ filter: brightness(0.3);
59
+ cursor: unset;
60
+ }
61
+
62
+ #rm_group_buttons textarea {
63
+ margin: 0px;
64
+ min-width: 200px;
65
+ }
66
+
67
+ #rm_group_members,
68
+ #rm_group_add_members {
69
+ margin-top: 0.25rem;
70
+ margin-bottom: 0.5rem;
71
+ border: 1px solid var(--SmartThemeBorderColor);
72
+ border-radius: 10px;
73
+ background-color: var(--black30a);
74
+ padding: 2px;
75
+ }
76
+
77
+ #rm_group_buttons_expander {
78
+ flex-grow: 1;
79
+ }
80
+
81
+ #rm_group_delete {
82
+ color: rgb(190, 0, 0);
83
+ }
84
+
85
+ #rm_group_members:empty {
86
+ width: 100%;
87
+ padding: 0.5em 0;
88
+ }
89
+
90
+ #rm_group_members:empty::before {
91
+ content: attr(group_empty_text);
92
+
93
+ font-weight: bolder;
94
+ width: 100%;
95
+ height: 100%;
96
+ display: flex;
97
+ justify-content: center;
98
+ align-items: center;
99
+ opacity: 0.8;
100
+ }
101
+
102
+ #rm_group_add_members:empty {
103
+ width: 100%;
104
+ }
105
+
106
+ #rm_group_add_members_header {
107
+ display: flex;
108
+ flex-direction: row;
109
+ width: 100%;
110
+ column-gap: 10px;
111
+ }
112
+
113
+ #rm_group_add_members_header input {
114
+ flex: 1;
115
+ width: 100%;
116
+ }
117
+
118
+ #rm_group_add_members:empty::before {
119
+ content: attr(no_characters_text);
120
+
121
+ font-weight: bolder;
122
+ width: 100%;
123
+ height: 100%;
124
+ display: flex;
125
+ justify-content: center;
126
+ align-items: center;
127
+ opacity: 0.8;
128
+ }
129
+
130
+ .group_member_icon {
131
+ display: flex;
132
+ column-gap: 10px;
133
+ align-items: center;
134
+ justify-content: end;
135
+ flex-grow: 1;
136
+ }
137
+
138
+ .group_member {
139
+ display: flex;
140
+ flex-direction: row;
141
+ align-items: center;
142
+ width: 100%;
143
+ padding: 5px;
144
+ border-radius: 10px;
145
+ }
146
+
147
+ .group_member .group_member_name {
148
+ flex-grow: 1;
149
+ margin-left: 10px;
150
+ overflow: hidden;
151
+ text-overflow: ellipsis;
152
+ width: calc(100% - 110px);
153
+ display: flex;
154
+ gap: 5px;
155
+ height: 100%;
156
+ flex-direction: column;
157
+ justify-content: center;
158
+ }
159
+
160
+ .group_member_icon .flex-container {
161
+ gap: 0px;
162
+ }
163
+
164
+ #rm_group_members .right_menu_button,
165
+ #rm_group_add_members .right_menu_button {
166
+ padding: 0px;
167
+ height: 20px;
168
+ display: flex;
169
+ align-items: center;
170
+ }
171
+
172
+ #rm_group_members .right_menu_button[data-action="speak"],
173
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="disable"] {
174
+ opacity: 0.4;
175
+ filter: brightness(0.5);
176
+ transition: all var(--animation-duration-2x) ease-in-out;
177
+ }
178
+
179
+ /* #rm_group_members .right_menu_button[data-action="speak"]:hover, */
180
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="disable"]:hover {
181
+ opacity: inherit;
182
+ filter: drop-shadow(0px 0px 5px rgb(243, 166, 65));
183
+ }
184
+
185
+ #rm_group_members .group_member.disabled .right_menu_button[data-action="enable"] {
186
+ filter: drop-shadow(0px 0px 5px rgb(243, 166, 65));
187
+ }
188
+
189
+
190
+ #rm_group_members .right_menu_button[data-action="speak"]:hover {
191
+ opacity: inherit;
192
+ filter: drop-shadow(0px 0px 5px rgb(153, 255, 153));
193
+ }
194
+
195
+ /* Rules for icon display */
196
+ #rm_group_add_members .right_menu_button:not([data-action="add"], [data-action="view"]),
197
+ #rm_group_members .right_menu_button[data-action="add"],
198
+ #rm_group_members .group_member.disabled .right_menu_button[data-action="disable"],
199
+ #rm_group_members .group_member:not(.disabled) .right_menu_button[data-action="enable"] {
200
+ display: none;
201
+ }
202
+
203
+ .group_select {
204
+ display: flex;
205
+ flex-direction: row;
206
+ padding: 5px;
207
+ border-radius: 10px;
208
+ cursor: pointer;
209
+ }
210
+
211
+ .group_select:hover {
212
+ background-color: var(--white30a);
213
+ }
214
+
215
+ .group_select.avatar {
216
+ padding: 0;
217
+ }
218
+
219
+ .group_select.missing-avatar.inline_avatar {
220
+ justify-content: center;
221
+ }
222
+
223
+ .group_select .avatar {
224
+ flex: 0;
225
+ }
226
+
227
+ .group_select .group_icon {
228
+ width: 20px;
229
+ height: 20px;
230
+ margin: 0 10px;
231
+ }
232
+
233
+ .group_select .group_fav_icon {
234
+ filter: drop-shadow(0px 0px 1px black);
235
+ color: #c5b457;
236
+ font-size: 12px;
237
+ order: -1;
238
+ margin-left: -18px;
239
+ margin-top: 3px;
240
+ }
241
+
242
+ .group_member .avatar {
243
+ flex-shrink: 0;
244
+ flex-basis: auto;
245
+ }
public/css/scrollable-button.css ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .scrollable-buttons-container {
2
+ /* Use viewport height instead of fixed pixels */
3
+ max-height: 50vh;
4
+ /* Momentum scrolling on iOS */
5
+ -webkit-overflow-scrolling: touch;
6
+ /* m-t-1 is equivalent to margin-top: 1rem; */
7
+ margin-top: 1rem;
8
+ flex-shrink: 1;
9
+ min-height: 0;
10
+ scrollbar-width: thin;
11
+ scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
12
+ }
13
+
14
+ .scrollable-buttons-container::-webkit-scrollbar {
15
+ width: 6px;
16
+ }
17
+
18
+ .scrollable-buttons-container::-webkit-scrollbar-thumb {
19
+ background-color: rgba(255, 255, 255, 0.3);
20
+ border-radius: 3px;
21
+ }
public/css/secrets.css ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .secretKeyManager {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 5px;
5
+ height: 100%;
6
+ }
7
+
8
+ .secretKeyManagerHeader {
9
+ display: flex;
10
+ flex-direction: column;
11
+ justify-content: center;
12
+ align-items: center;
13
+ gap: 5px;
14
+ }
15
+
16
+ .secretKeyManagerSubtitle {
17
+ display: flex;
18
+ flex-direction: row;
19
+ justify-content: space-between;
20
+ align-items: center;
21
+ width: 100%;
22
+ }
23
+
24
+ .secretKeyManagerInfo {
25
+ display: flex;
26
+ flex-direction: column;
27
+ align-items: baseline;
28
+ flex: 1;
29
+ font-size: 0.95em;
30
+ }
31
+
32
+ .secretKeyManagerList {
33
+ display: flex;
34
+ flex-direction: column;
35
+ text-align: left;
36
+ gap: 5px;
37
+ flex: 1;
38
+ overflow-y: auto;
39
+ height: 100%;
40
+ }
41
+
42
+ .secretKeyManagerItem {
43
+ border: 1px solid var(--SmartThemeBorderColor);
44
+ padding: 5px 10px;
45
+ border-radius: 10px;
46
+ background-color: var(--black30a);
47
+ display: flex;
48
+ flex-direction: row;
49
+ align-items: center;
50
+ }
51
+
52
+ .secretKeyManagerItem.active {
53
+ background-color: var(--cobalt30a);
54
+ }
55
+
56
+ .secretKeyManagerItemInfo {
57
+ display: flex;
58
+ flex-direction: column;
59
+ flex: 1;
60
+ gap: 5px;
61
+ }
62
+
63
+ .secretKeyManagerItemSubtitle,
64
+ .secretKeyManagerItemHeader {
65
+ word-break: break-all;
66
+ }
67
+
68
+ .secretKeyManagerItemId {
69
+ text-decoration: underline;
70
+ text-decoration-style: dotted;
71
+ cursor: pointer;
72
+ }
73
+
74
+ .secretKeyManagerItemActions {
75
+ display: flex;
76
+ flex-direction: column;
77
+ gap: 5px;
78
+ }
79
+
80
+ .secretKeyManagerItemActionsRow {
81
+ display: flex;
82
+ flex-direction: row;
83
+ gap: 5px;
84
+ }
85
+
86
+ .secretKeyManagerItemActionsRow>button {
87
+ margin: 0;
88
+ }
89
+
90
+ .secretKeyManagerList:empty {
91
+ display: none;
92
+ }
93
+
94
+ .secretKeyManagerListEmpty {
95
+ display: flex;
96
+ justify-content: center;
97
+ align-items: center;
98
+ width: 100%;
99
+ opacity: 0.8;
100
+ font-weight: bold;
101
+ font-size: 1.05em;
102
+ }
public/css/select2-overrides.css ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Customize the Select2 container */
2
+ .select2-container {
3
+ color: var(--SmartThemeBodyColor);
4
+ }
5
+
6
+ /* Customize the dropdown */
7
+ .select2-dropdown {
8
+ background-color: var(--SmartThemeBlurTintColor);
9
+ border: 1px solid var(--SmartThemeBorderColor) !important;
10
+ border-radius: 10px;
11
+ box-shadow: 0 0 5px black;
12
+ text-shadow: 0px 0px calc(var(--shadowWidth) * 1px) var(--SmartThemeShadowColor);
13
+ backdrop-filter: blur(calc(var(--SmartThemeBlurStrength)*2));
14
+ color: var(--SmartThemeBodyColor);
15
+ z-index: 40000;
16
+ user-select: none;
17
+ }
18
+
19
+ .select2-container .select2-selection.select2-selection--single.select2-selection--clearable .select2-selection__clear {
20
+ top: 0;
21
+ right: 25px;
22
+ }
23
+
24
+ .select2-container .select2-selection .select2-selection__clear {
25
+ color: var(--SmartThemeBodyColor);
26
+ font-size: 20px;
27
+ position: absolute;
28
+ right: 5px;
29
+ margin-top: 0; /* compensate for the increased font size */
30
+ margin-right: 0;
31
+ }
32
+
33
+ .select2-container .select2-search--inline textarea.select2-search__field {
34
+ opacity: 0.8;
35
+ margin-top: 7px; /* get placeholder text to the center */
36
+ }
37
+
38
+ .select2-selection--single .select2-selection__placeholder {
39
+ color: var(--SmartThemeEmColor);
40
+ }
41
+
42
+ .select2-container--classic .select2-selection--single .select2-selection__placeholder {
43
+ color: var(--SmartThemeEmColor);
44
+ }
45
+
46
+ .select2-container .select2-selection--single .select2-selection__rendered {
47
+ color: var(--SmartThemeBodyColor);
48
+ line-height: unset;
49
+ padding: 3px 5px;
50
+ }
51
+
52
+ .select2-container .select2-results>.select2-results__options {
53
+ max-height: 300px;
54
+ }
55
+
56
+ .select2-container .select2-selection--multiple .select2-selection__choice__remove {
57
+ padding: revert;
58
+ border-right: 1px solid var(--SmartThemeBorderColor);
59
+ font-size: 1.1em;
60
+ line-height: 1;
61
+ }
62
+
63
+ .select2-container .select2-selection--multiple .select2-selection__choice__display {
64
+ padding-left: 5px;
65
+ }
66
+
67
+ /* Customize the search input */
68
+ .select2-search__field {
69
+ background-color: var(--black30a);
70
+ color: var(--SmartThemeBodyColor);
71
+ border: 1px solid var(--SmartThemeBorderColor);
72
+ font-family: var(--mainFontFamily);
73
+ padding: 3px 5px;
74
+ display: unset; /* override the ST textarea display style */
75
+ border-radius: 0; /* border radius was interfering with cursor */
76
+ }
77
+
78
+ /* Customize the selected option */
79
+ .select2-selection--single {
80
+ border: 1px solid var(--SmartThemeShadowColor);
81
+ border-radius: 4px;
82
+ background-color: var(--SmartThemeBlurTintColor);
83
+ }
84
+
85
+ /* Customize the selected option text */
86
+ .select2-selection__rendered {
87
+ color: var(--SmartThemeBodyColor);
88
+ }
89
+
90
+ /* Customize the option list item */
91
+ .select2-results__option {
92
+ color: var(--SmartThemeBodyColor);
93
+ background-color: var(--SmartThemeBodyColor);
94
+ }
95
+
96
+ .select2-container .select2-selection--multiple,
97
+ .select2-container .select2-selection--single {
98
+ background-color: var(--black30a);
99
+ color: var(--SmartThemeBodyColor);
100
+ border: 1px solid var(--SmartThemeBorderColor);
101
+ border-radius: 7px;
102
+ font-family: var(--mainFontFamily);
103
+ }
104
+
105
+ .select2-container .select2-selection--multiple.select2-selection--clearable {
106
+ padding-right: 20px;
107
+ }
108
+
109
+ .select2-container.select2-container--focus .select2-selection--multiple,
110
+ .select2-container.select2-container--focus .select2-selection--single {
111
+ border: 1px solid var(--SmartThemeBorderColor);
112
+ }
113
+
114
+ .select2-container .select2-results .select2-results__option--disabled {
115
+ color: inherit;
116
+ background-color: inherit;
117
+ cursor: not-allowed;
118
+ filter: brightness(0.5);
119
+ }
120
+
121
+ .select2-container .select2-selection--multiple .select2-selection__choice,
122
+ .select2-container .select2-selection--single .select2-selection__choice {
123
+ border-radius: 5px;
124
+ border-style: solid;
125
+ border-width: 1px;
126
+ box-sizing: border-box;
127
+ color: var(--SmartThemeBodyColor);
128
+ background-color: var(--black30a);
129
+ border-color: var(--SmartThemeBorderColor);
130
+ font-size: calc(var(--mainFontSize) - 5%);
131
+ text-shadow: none !important;
132
+ }
133
+
134
+ .select2-results .select2-results__option--selectable {
135
+ background-color: unset;
136
+ color: var(--SmartThemeBodyColor);
137
+ opacity: 0.5;
138
+ transition: opacity var(--animation-duration-2x) ease-in-out;
139
+ position: relative;
140
+ }
141
+
142
+ .select2-results .select2-results__option--group {
143
+ color: var(--SmartThemeBodyColor);
144
+ background-color: var(--SmartThemeBlurTintColor);
145
+ position: relative;
146
+ }
147
+
148
+ /* Customize the hovered option list item */
149
+ .select2-results .select2-results__option--highlighted.select2-results__option--selectable {
150
+ color: var(--SmartThemeBodyColor);
151
+ background-color: unset;
152
+ opacity: 1;
153
+ }
154
+
155
+ .select2-results__option.select2-results__option--group::before {
156
+ display: none;
157
+ }
158
+
159
+ /* Customize the option list item */
160
+ .select2-results__option {
161
+ padding-left: 30px;
162
+ /* Add some padding to make room for the checkbox */
163
+ }
164
+
165
+ .select2-results .select2-results__option--group .select2-results__options--nested .select2-results__option {
166
+ padding-left: 2em;
167
+ }
168
+
169
+ /* Add the custom checkbox */
170
+ .select2-results__option::before {
171
+ content: '';
172
+ display: inline-block;
173
+ position: absolute;
174
+ left: 6px;
175
+ top: 50%;
176
+ margin-top: -7px;
177
+ width: 14px;
178
+ height: 14px;
179
+ border: 1px solid var(--SmartThemeBorderColor);
180
+ background-color: var(--SmartThemeBlurTintColor);
181
+ border-radius: 2px;
182
+ }
183
+
184
+ .select2-container .select2-selection--multiple .select2-selection__choice__remove,
185
+ .select2-container .select2-selection--single .select2-selection__choice__remove {
186
+ color: var(--SmartThemeBodyColor);
187
+ }
188
+
189
+ /* Add the custom checkbox checkmark */
190
+ .select2-results__option--selected.select2-results__option::before {
191
+ content: '\2713';
192
+ font-weight: bold;
193
+ color: var(--SmartThemeBodyColor);
194
+ background-color: var(--SmartThemeBlurTintColor);
195
+ text-align: center;
196
+ line-height: 14px;
197
+ }
198
+
199
+ .select2-results__option.select2-results__message {
200
+ background-color: inherit;
201
+ }
202
+
203
+ .select2-results__option.select2-results__message::before {
204
+ display: none;
205
+ }
206
+
207
+ .select2-selection__choice__display {
208
+ /* Fix weird alignment of the inside block */
209
+ margin-left: 3px;
210
+ margin-right: 1px;
211
+ }
212
+
213
+ /* Styling for choice remove icon */
214
+ span.select2.select2-container .select2-selection__choice__remove {
215
+ cursor: pointer;
216
+ transition: background-color var(--animation-duration-2x);
217
+ color: var(--SmartThemeBodyColor);
218
+ background-color: var(--black50a);
219
+ }
220
+
221
+ span.select2.select2-container .select2-selection__choice__remove:hover {
222
+ color: var(--SmartThemeBodyColor);
223
+ background-color: var(--white30a);
224
+ }
225
+
226
+ /* Custom class to support styling to show clickable choice options */
227
+ .select2_choice_clickable+span.select2-container .select2-selection__choice__display {
228
+ cursor: pointer;
229
+ }
230
+
231
+ .select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display {
232
+ cursor: pointer;
233
+ transition: background-color var(--animation-duration-2x);
234
+ color: var(--SmartThemeBodyColor);
235
+ background-color: var(--black50a);
236
+ white-space: break-spaces;
237
+ word-break: break-all;
238
+ }
239
+
240
+ .select2_choice_clickable_buttonstyle+span.select2-container .select2-selection__choice__display:hover {
241
+ background-color: var(--white30a);
242
+ }
public/css/select2.min.css ADDED
@@ -0,0 +1 @@
 
 
1
+ .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
public/css/solid.min.css ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}
public/css/st-tailwind.css ADDED
@@ -0,0 +1,613 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .text_warning {
2
+ color: rgb(220 173 16);
3
+ }
4
+
5
+ .text_danger {
6
+ color: var(--fullred);
7
+ }
8
+
9
+ .highlighted {
10
+ color: black;
11
+ background-color: yellow;
12
+ text-shadow: none !important;
13
+ }
14
+
15
+ .m-t-0 {
16
+ margin-top: 0;
17
+ }
18
+
19
+ .m-t-1 {
20
+ margin-top: 1em;
21
+ }
22
+
23
+ .m-t-2 {
24
+ margin-top: 2em;
25
+ }
26
+
27
+ .m-t-3 {
28
+ margin-top: 3em;
29
+ }
30
+
31
+ .m-t-4 {
32
+ margin-top: 4em;
33
+ }
34
+
35
+ .m-t-5 {
36
+ margin-top: 5em;
37
+ }
38
+
39
+ .m-b-1 {
40
+ margin-bottom: 1em;
41
+ }
42
+
43
+ .m-b-2 {
44
+ margin-bottom: 2em;
45
+ }
46
+
47
+ .m-b-3 {
48
+ margin-bottom: 3em;
49
+ }
50
+
51
+ .m-b-4 {
52
+ margin-bottom: 4em;
53
+ }
54
+
55
+ .m-b-5 {
56
+ margin-bottom: 5em;
57
+ }
58
+
59
+ .tooltip {
60
+ cursor: help;
61
+ }
62
+
63
+ .margin-bot-10px,
64
+ .marginBot10 {
65
+ margin-bottom: 10px !important;
66
+ }
67
+
68
+ .marginTop10 {
69
+ margin-top: 10px !important;
70
+ }
71
+
72
+ .marginBot5 {
73
+ margin-bottom: 5px !important;
74
+ }
75
+
76
+ .marginTop5 {
77
+ margin-top: 5px !important;
78
+ }
79
+
80
+ .marginTopBot5 {
81
+ margin-top: 5px !important;
82
+ margin-bottom: 5px !important;
83
+ }
84
+
85
+ .margin5 {
86
+ margin: 5px;
87
+ }
88
+
89
+ .marginLeft5 {
90
+ margin-left: 5px;
91
+ }
92
+
93
+ .overflowYAuto {
94
+ overflow-y: auto;
95
+ }
96
+
97
+ .heightMinContent {
98
+ height: min-content;
99
+ }
100
+
101
+ .justifySpaceBetween {
102
+ justify-content: space-between;
103
+ }
104
+
105
+ .justifySpaceEvenly {
106
+ justify-content: space-evenly;
107
+ }
108
+
109
+ .justifySpaceAround {
110
+ justify-content: space-around;
111
+ }
112
+
113
+ .alignitemsflexstart {
114
+ align-items: flex-start !important;
115
+ }
116
+
117
+ .alignItemsFlexEnd {
118
+ align-items: flex-end !important;
119
+ }
120
+
121
+ .alignItemsBaseline {
122
+ align-items: baseline !important;
123
+ }
124
+
125
+ .alignSelfStart {
126
+ align-self: start;
127
+ }
128
+
129
+ .gap0 {
130
+ gap: 0 !important;
131
+ }
132
+
133
+ .gap3px {
134
+ gap: 3px !important;
135
+ }
136
+
137
+ .gap5px {
138
+ gap: 5px !important;
139
+ }
140
+
141
+ .gap10px {
142
+ gap: 10px !important;
143
+ }
144
+
145
+ .gap10h20v {
146
+ gap: 10px 20px !important;
147
+ }
148
+
149
+ .gap10h5v {
150
+ gap: 5px 10px !important;
151
+ }
152
+
153
+ .wide10pMinFit {
154
+ width: 10%;
155
+ min-width: fit-content;
156
+ }
157
+
158
+ .wide100pLess70px {
159
+ width: calc(100% - 70px);
160
+ }
161
+
162
+ .wideMax100px {
163
+ max-width: 100px;
164
+ }
165
+
166
+ .width100px {
167
+ width: 100px;
168
+ }
169
+
170
+ .widthUnset {
171
+ width: unset;
172
+ }
173
+
174
+ .no-border {
175
+ border: none !important;
176
+ }
177
+
178
+ .no-shadow {
179
+ box-shadow: none !important;
180
+ }
181
+
182
+ .height100p {
183
+ height: 100%;
184
+ }
185
+
186
+ .height100pSpaceEvenly {
187
+ align-content: space-evenly;
188
+ height: 100%;
189
+ }
190
+
191
+ .height32px {
192
+ height: 32px;
193
+ }
194
+
195
+ .TxtLrgBoldCenter {
196
+ text-align: center;
197
+ font-size: large;
198
+ font-weight: 600;
199
+ }
200
+
201
+ .textAlignCenter {
202
+ text-align: center;
203
+ }
204
+
205
+ .margin-right-10px {
206
+ margin-right: 10px;
207
+ }
208
+
209
+
210
+ .success {
211
+ color: green;
212
+ }
213
+
214
+ .failure {
215
+ color: red;
216
+ }
217
+
218
+ .optional {
219
+ color: lightgray;
220
+ }
221
+
222
+ .monospace {
223
+ font-family: var(--monoFontFamily);
224
+ }
225
+
226
+ .expander {
227
+ flex-grow: 1;
228
+ }
229
+
230
+ .redOverlayGlow {
231
+ color: #800;
232
+ opacity: 0.8 !important;
233
+ text-shadow: none !important;
234
+ }
235
+
236
+ .width100p {
237
+ width: 100%;
238
+ }
239
+
240
+ .flex {
241
+ display: flex;
242
+ }
243
+
244
+ .flexBasis100p {
245
+ flex-basis: 100%;
246
+ }
247
+
248
+ .flexBasis50p {
249
+ flex-basis: 50%
250
+ }
251
+
252
+ .flexBasis25p {
253
+ flex-basis: 25%
254
+ }
255
+
256
+ .flexBasis200px {
257
+ flex-basis: 200px
258
+ }
259
+
260
+ .flexBasis48p {
261
+ flex-basis: 48%
262
+ }
263
+
264
+ .flexBasis30p {
265
+ flex-basis: 30%;
266
+ }
267
+
268
+ .flex-container {
269
+ display: flex;
270
+ gap: 5px;
271
+ flex-wrap: wrap;
272
+ }
273
+
274
+ .flexNoGap {
275
+ gap: unset !important;
276
+ }
277
+
278
+ .flexGrow {
279
+ flex-grow: 1;
280
+ }
281
+
282
+ .flexShrink {
283
+ flex-shrink: 1
284
+ }
285
+
286
+ .flexWrap {
287
+ flex-wrap: wrap;
288
+ }
289
+
290
+ .flexnowrap,
291
+ .flexNoWrap {
292
+ flex-wrap: nowrap;
293
+ }
294
+
295
+ .inline-flex {
296
+ display: inline-flex;
297
+ }
298
+
299
+ .inline-block {
300
+ display: inline-block;
301
+ }
302
+
303
+ .alignitemscenter,
304
+ .alignItemsCenter {
305
+ align-items: center;
306
+ }
307
+
308
+ .alignitemsstart,
309
+ .alignItemsStart {
310
+ align-items: start;
311
+ }
312
+
313
+ .overflow-hidden {
314
+ overflow: hidden;
315
+ white-space: nowrap;
316
+ text-overflow: ellipsis;
317
+ }
318
+
319
+ .maxWidth200px {
320
+ max-width: 200px;
321
+ }
322
+
323
+ .alignContentFlexStart {
324
+ align-content: flex-start;
325
+ }
326
+
327
+ .alignContentCenter {
328
+ align-content: center;
329
+ }
330
+
331
+ .overflowHidden {
332
+ overflow: hidden;
333
+ }
334
+
335
+ .overflowYScroll {
336
+ overflow-y: scroll;
337
+ }
338
+
339
+ .padding0 {
340
+ padding: 0;
341
+ }
342
+
343
+ .padding5 {
344
+ padding: 5px;
345
+ }
346
+
347
+ .padding10 {
348
+ padding: 10px;
349
+ }
350
+
351
+ .margin0 {
352
+ margin: 0;
353
+ }
354
+
355
+ .margin0auto {
356
+ margin: 0 auto;
357
+ }
358
+
359
+ .margin-r5 {
360
+ margin-right: 5px;
361
+ }
362
+
363
+ .margin-r2 {
364
+ margin-right: 2px;
365
+ }
366
+
367
+ .flexAuto {
368
+ flex: auto;
369
+ }
370
+
371
+ .flex0 {
372
+ flex: 0;
373
+ }
374
+
375
+ .flex1 {
376
+ flex: 1;
377
+ }
378
+
379
+ .flex2 {
380
+ flex: 2 !important;
381
+ }
382
+
383
+ .flex3 {
384
+ flex: 3;
385
+ }
386
+
387
+ .flex4 {
388
+ flex: 4;
389
+ }
390
+
391
+ .flexFlowColumn {
392
+ flex-flow: column;
393
+ }
394
+
395
+ .flexFlowRow {
396
+ flex-flow: row;
397
+ }
398
+
399
+ .wideMinContent {
400
+ width: min-content;
401
+ }
402
+
403
+ .flexWide50p {
404
+ flex: 50%;
405
+ }
406
+
407
+ .wide25p {
408
+ width: 25%;
409
+ }
410
+
411
+ .wide30p {
412
+ width: 30% !important;
413
+ }
414
+
415
+ .justifyLeft {
416
+ text-align: start;
417
+ justify-content: left;
418
+ margin-left: unset;
419
+ }
420
+
421
+ .justifyCenter {
422
+ justify-content: center;
423
+ margin: 0 auto;
424
+ }
425
+
426
+ .justifyContentSpaceAround {
427
+ justify-content: space-around;
428
+ }
429
+
430
+ .justifyContentFlexStart {
431
+ justify-content: flex-start;
432
+ }
433
+
434
+ .justifyContentFlexEnd {
435
+ justify-content: flex-end;
436
+ }
437
+
438
+ .spaceEvenly {
439
+ justify-content: space-evenly;
440
+ }
441
+
442
+ .spaceBetween {
443
+ justify-content: space-between;
444
+ }
445
+
446
+ .widthNatural {
447
+ width: unset !important;
448
+ min-width: unset !important;
449
+ max-width: unset !important;
450
+ }
451
+
452
+ .widthFreeExpand {
453
+ width: -webkit-fill-available;
454
+ width: -moz-available;
455
+ }
456
+
457
+ .wide100p {
458
+ width: 100%;
459
+ }
460
+
461
+ .wide50p {
462
+ width: 50%;
463
+ }
464
+
465
+ .wide50px {
466
+ width: 50px;
467
+ }
468
+
469
+ .indent20p {
470
+ margin-left: 20px;
471
+ }
472
+
473
+ .textarea_compact {
474
+ font-size: calc(var(--mainFontSize) * 0.95);
475
+ line-height: 1.2;
476
+ }
477
+
478
+ .hoverglow {
479
+ transition: opacity var(--animation-duration-2x);
480
+ }
481
+
482
+ .hoverglow:hover {
483
+ opacity: 1 !important;
484
+ cursor: pointer;
485
+ }
486
+
487
+ input:disabled,
488
+ textarea:disabled {
489
+ cursor: not-allowed;
490
+ filter: brightness(0.5);
491
+ }
492
+
493
+ #AdvancedFormatting .disabled {
494
+ filter: brightness(0.5);
495
+ }
496
+
497
+ .debug-red {
498
+ border: 1px solid red !important;
499
+ }
500
+
501
+ .debug-yellow {
502
+ border: 1px solid yellow !important;
503
+ }
504
+
505
+ .debug-green {
506
+ border: 1px solid green !important;
507
+ }
508
+
509
+ .debug-blue {
510
+ border: 1px solid blue !important;
511
+ }
512
+
513
+ .debug-purple {
514
+ border: 1px solid purple !important;
515
+ }
516
+
517
+ .fontsize120p {
518
+ font-size: calc(var(--mainFontSize) * 1.2) !important;
519
+ }
520
+
521
+ .fontsize90p {
522
+ font-size: calc(var(--mainFontSize) * 0.9) !important;
523
+ }
524
+
525
+ .fontsize80p {
526
+ font-size: calc(var(--mainFontSize) * 0.8) !important;
527
+ }
528
+
529
+ .fontsize60p {
530
+ font-size: calc(var(--mainFontSize) * 0.6) !important;
531
+ }
532
+
533
+ .paddingBottom5px {
534
+ padding: unset;
535
+ padding-bottom: 5px;
536
+ }
537
+
538
+ .paddingTopBot5 {
539
+ padding: 5px 0;
540
+ }
541
+
542
+ .paddingLeftRight5 {
543
+ padding: 0 5px;
544
+ }
545
+
546
+ .heightFitContent {
547
+ height: fit-content;
548
+ }
549
+
550
+ .widthFitContent {
551
+ width: fit-content;
552
+ min-width: fit-content;
553
+ }
554
+
555
+ .flexGap2 {
556
+ gap: 2px;
557
+ }
558
+
559
+ .flexGap5 {
560
+ gap: 5px;
561
+ }
562
+
563
+ .flexGap10 {
564
+ gap: 10px;
565
+ }
566
+
567
+ .opacity50p {
568
+ opacity: 0.5
569
+ }
570
+
571
+ .grayscale {
572
+ filter: grayscale(100%);
573
+ }
574
+
575
+ .opacity1 {
576
+ opacity: 1 !important;
577
+ }
578
+
579
+ .circleborder30px {
580
+ right: 30px;
581
+ top: 10px;
582
+ position: absolute;
583
+ border: 1px solid var(--SmartThemeBodyColor);
584
+ border-radius: 100%;
585
+ aspect-ratio: 1 / 1;
586
+ height: 30px;
587
+ text-align: center;
588
+ padding: 5px;
589
+ }
590
+
591
+ ul.li-padding-b-1 li {
592
+ padding-bottom: 1em;
593
+ }
594
+
595
+ ul.li-padding-b-2 li {
596
+ padding-bottom: 2em;
597
+ }
598
+
599
+ ul.li-padding-b-5 li {
600
+ padding-bottom: 5em;
601
+ }
602
+
603
+ ul.li-padding-bot5 li {
604
+ padding-bottom: 5px;
605
+ }
606
+
607
+ ul.li-padding-bot10 li {
608
+ padding-bottom: 10px;
609
+ }
610
+
611
+ .wordBreakAll {
612
+ word-break: break-all;
613
+ }
public/css/tags.css ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #bulk_tags_div,
2
+ #tags_div {
3
+ min-width: 0;
4
+ }
5
+
6
+ .tag_controls {
7
+ display: flex;
8
+ flex-direction: row;
9
+ gap: 5px;
10
+ align-items: center;
11
+ }
12
+
13
+ .tag_view_item {
14
+ display: flex;
15
+ flex-direction: row;
16
+ align-items: center;
17
+ gap: 6px;
18
+ margin-bottom: 5px;
19
+ }
20
+
21
+ .tag_view_name {
22
+ text-align: left;
23
+ }
24
+
25
+ .tag_view_counter {
26
+ text-align: right;
27
+ flex: 1;
28
+ }
29
+
30
+ .tag_view_color_picker {
31
+ position: relative;
32
+ }
33
+
34
+ .tag_view_color_picker .link_icon {
35
+ position: absolute;
36
+ top: 50%;
37
+ right: 0px;
38
+ opacity: 0.5;
39
+ }
40
+
41
+ .tag_delete {
42
+ padding: 2px 4px;
43
+ color: var(--SmartThemeBodyColor) !important;
44
+ }
45
+
46
+ .tag {
47
+ border-radius: 5px;
48
+ border-style: solid;
49
+ border-width: 1px;
50
+ box-sizing: border-box;
51
+ color: var(--SmartThemeBodyColor);
52
+ background-color: var(--black30a);
53
+ border-color: var(--white50a);
54
+ padding: 0.1rem 0.2rem;
55
+ font-size: calc(var(--mainFontSize) - 5%);
56
+ display: flex;
57
+ flex-direction: row;
58
+ align-items: center;
59
+ position: relative;
60
+ gap: 10px;
61
+ width: fit-content;
62
+ min-width: 0;
63
+ text-shadow: none !important;
64
+ }
65
+
66
+ .rm_tag_filter .tag:not(.actionable) {
67
+ display: none;
68
+ }
69
+
70
+ .tag.actionable {
71
+ border-radius: 50%;
72
+ aspect-ratio: 1 / 1;
73
+ min-height: calc(var(--mainFontSize) * 2);
74
+ min-width: calc(var(--mainFontSize) * 2);
75
+ font-size: calc(var(--mainFontSize) * 1);
76
+ padding: 0;
77
+ display: flex;
78
+ justify-content: center;
79
+ align-items: center;
80
+ }
81
+
82
+ .tag.actionable.clearAllFilters {
83
+ border: 0;
84
+ background: none;
85
+ }
86
+
87
+ .tag.placeholder-expander {
88
+ cursor: alias;
89
+ border: 0;
90
+ }
91
+
92
+ .tagListHint {
93
+ align-self: center;
94
+ display: flex;
95
+ margin-right: 10px;
96
+ }
97
+
98
+ .tag_remove {
99
+ cursor: pointer;
100
+ }
101
+
102
+ .tags {
103
+ display: flex;
104
+ flex-direction: row;
105
+ flex-wrap: wrap;
106
+ justify-content: flex-start;
107
+ gap: 0.2rem;
108
+ align-items: flex-end;
109
+ }
110
+
111
+ #bulkTagsList,
112
+ #tagList.tags {
113
+ margin: 5px 0;
114
+ }
115
+
116
+ #bulkTagsList,
117
+ #tagList .tag,
118
+ #groupTagList .tag {
119
+ opacity: 0.6;
120
+ }
121
+
122
+ #tagList .tag:has(.tag_remove:hover) {
123
+ opacity: 1;
124
+ }
125
+
126
+ #tagList .tag:has(.tag_remove:hover) .tag_name {
127
+ opacity: 0.6;
128
+ }
129
+
130
+ .tags.tags_inline {
131
+ opacity: 0.6;
132
+ column-gap: 0.2rem;
133
+ row-gap: 0.2rem;
134
+ justify-content: flex-start;
135
+ max-height: 66%;
136
+ overflow: hidden;
137
+ flex-basis: 100%;
138
+ }
139
+
140
+ .tag_name {
141
+ text-overflow: ellipsis;
142
+ overflow: hidden;
143
+ text-align: left;
144
+ white-space: nowrap;
145
+ text-shadow: none !important;
146
+ }
147
+
148
+ .tags_inline .tag {
149
+ font-size: calc(var(--mainFontSize) - 15%);
150
+ padding: 0 0.15rem;
151
+ }
152
+
153
+ .rm_tag_controls {
154
+ display: flex;
155
+ column-gap: 10px;
156
+ row-gap: 5px;
157
+ flex-direction: row;
158
+ flex-wrap: wrap;
159
+ align-items: flex-start;
160
+ margin-top: 5px;
161
+ max-height: 40dvh;
162
+ overflow-y: auto;
163
+ }
164
+
165
+ .rm_tag_filter .tag {
166
+ cursor: pointer;
167
+ opacity: 0.6;
168
+ filter: brightness(0.8);
169
+ }
170
+
171
+ .rm_tag_filter .tag.actionable {
172
+ transition: opacity var(--animation-duration-2x);
173
+ }
174
+
175
+ .rm_tag_filter .tag:hover {
176
+ opacity: 1;
177
+ filter: brightness(1);
178
+ }
179
+
180
+ .tags_view {
181
+ margin: 0;
182
+ aspect-ratio: 1 / 1;
183
+ }
184
+
185
+ .tag.selected {
186
+ opacity: 1 !important;
187
+ filter: none !important;
188
+ }
189
+
190
+ .tag.excluded {
191
+ opacity: 1 !important;
192
+ filter: saturate(0.4) !important;
193
+ border: 1px solid red;
194
+ }
195
+
196
+ .tag.excluded::after {
197
+ position: absolute;
198
+ height: calc(var(--mainFontSize)*1.5);
199
+ left: 0;
200
+ right: 0;
201
+ content: "\d7";
202
+ pointer-events: none;
203
+ font-size: calc(var(--mainFontSize) *3);
204
+ color: red;
205
+ line-height: calc(var(--mainFontSize)*1.3);
206
+ text-align: center;
207
+ text-shadow: 1px 1px 0px black,
208
+ -1px -1px 0px black,
209
+ -1px 1px 0px black,
210
+ 1px -1px 0px black;
211
+ opacity: 1;
212
+ }
213
+
214
+ .tag_as_folder.right_menu_button {
215
+ filter: brightness(75%) saturate(0.6);
216
+ margin-right: 5px;
217
+ }
218
+
219
+ .tag_as_folder.right_menu_button:hover,
220
+ .tag_as_folder.right_menu_button.flash {
221
+ filter: brightness(150%) saturate(0.6);
222
+ }
223
+
224
+ .tag_as_folder.right_menu_button.no_folder {
225
+ filter: brightness(25%) saturate(0.25);
226
+ }
227
+
228
+ .tag_as_folder.right_menu_button .tag_folder_indicator {
229
+ position: absolute;
230
+ top: calc(var(--mainFontSize) * -0.5);
231
+ right: calc(var(--mainFontSize) * -0.5);
232
+ font-size: calc(var(--mainFontSize) * 1);
233
+ line-height: calc(var(--mainFontSize) * 1.3);
234
+ text-align: center;
235
+ text-shadow: 1px 1px 0px black,
236
+ -1px -1px 0px black,
237
+ -1px 1px 0px black,
238
+ 1px -1px 0px black;
239
+ opacity: 1;
240
+ }
241
+
242
+ .tag.indicator::after {
243
+ position: absolute;
244
+ top: calc(var(--mainFontSize) * -0.5);
245
+ right: -2px;
246
+ content: "\25CF";
247
+ font-size: calc(var(--mainFontSize) * 1);
248
+ color: var(--SmartThemeBodyColor);
249
+ line-height: calc(var(--mainFontSize) * 1.3);
250
+ text-align: center;
251
+ text-shadow: 1px 1px 0px black,
252
+ -1px -1px 0px black,
253
+ -1px 1px 0px black,
254
+ 1px -1px 0px black;
255
+ opacity: 1;
256
+ }
257
+
258
+ .rm_tag_bogus_drilldown {
259
+ height: calc(var(--mainFontSize)* 2 - 2);
260
+ }
261
+
262
+ .rm_tag_bogus_drilldown .tag:not(:first-child) {
263
+ position: relative;
264
+ margin-left: 1em;
265
+ }
266
+
267
+ .rm_tag_bogus_drilldown .tag:not(:first-child)::before {
268
+ font-family: 'Font Awesome 6 Free';
269
+ content: "\f054";
270
+ position: absolute;
271
+ left: -1em;
272
+ top: auto;
273
+ color: var(--SmartThemeBodyColor);
274
+ text-shadow: 1px 1px 0px black,
275
+ -1px -1px 0px black,
276
+ -1px 1px 0px black,
277
+ 1px -1px 0px black;
278
+ opacity: 1;
279
+ }
280
+
281
+ .bogus_folder_select_back .avatar {
282
+ display: none !important;
283
+ }
284
+
285
+ .bogus_folder_select_back .bogus_folder_back_placeholder {
286
+ min-height: calc(var(--mainFontSize)*2);
287
+ width: var(--avatar-base-width);
288
+ justify-content: center;
289
+ }
public/css/toastr.min.css ADDED
@@ -0,0 +1 @@
 
0
  * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
1
  * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
2
  * make sure you copy the url from the website since the url may change between versions.
3
  * */
 
1
+ /*
2
  * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
3
  * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
4
  * make sure you copy the url from the website since the url may change between versions.
5
  * */
public/css/toggle-dependent.css ADDED
@@ -0,0 +1,566 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --big-avatar-height-factor: 1.8;
3
+ --big-avatar-width-factor: 1.2;
4
+ --big-avatar-border-factor: 5;
5
+ }
6
+
7
+ body.tts .mes[is_system="true"] .mes_narrate {
8
+ display: none;
9
+ }
10
+
11
+ body.sd .sd_message_gen,
12
+ body.translate .mes_translate,
13
+ body.tts .mes_narrate {
14
+ display: inline-block;
15
+ }
16
+
17
+ body:not(.tts) #ttsExtensionNarrateAll {
18
+ display: none;
19
+ }
20
+
21
+ body.no-hotswap .hotswap,
22
+ body.no-hotswap .hotswap~hr,
23
+ body.no-timer .mes_timer,
24
+ body.no-timestamps .timestamp,
25
+ body.no-tokenCount .tokenCounterDisplay,
26
+ body.no-mesIDDisplay .mesIDDisplay,
27
+ body.no-modelIcons .icon-svg,
28
+ body.hideChatAvatars .mesAvatarWrapper .avatar {
29
+ display: none !important;
30
+ }
31
+
32
+ body.no-hotswap #CharListButtonAndHotSwaps .flex-container {
33
+ flex-wrap: nowrap;
34
+ align-items: flex-end;
35
+ flex-flow: row;
36
+ }
37
+
38
+ body.hideChatAvatars .last_mes:not(.smallSysMes) {
39
+ padding-bottom: 20px !important;
40
+ }
41
+
42
+ body.hideChatAvatars.no-timer.no-tokenCount.no-mesIDDisplay .swipe_left {
43
+ left: 0px;
44
+ }
45
+
46
+ body.hideChatAvatars .swipe_left {
47
+ left: 7px;
48
+ }
49
+
50
+ body.square-avatars .avatar,
51
+ body.square-avatars .avatar img {
52
+ border-radius: var(--avatar-base-border-radius) !important;
53
+ }
54
+
55
+ body.rounded-avatars .avatar,
56
+ body.rounded-avatars .avatar img {
57
+ border-radius: var(--avatar-base-border-radius-rounded) !important;
58
+ }
59
+
60
+ /*char list grid mode*/
61
+
62
+ body.charListGrid #rm_print_characters_block {
63
+ display: flex;
64
+ gap: 5px;
65
+ flex-wrap: wrap;
66
+ flex-direction: row;
67
+ justify-content: space-around;
68
+ align-content: flex-start;
69
+ }
70
+
71
+ body.charListGrid #rm_print_characters_block .bogus_folder_select,
72
+ body.charListGrid #rm_print_characters_block .character_select,
73
+ body.charListGrid #rm_print_characters_block .group_select,
74
+ #user_avatar_block.gridView .avatar-container {
75
+ width: 30%;
76
+ align-items: flex-start;
77
+ height: min-content;
78
+ flex-direction: column;
79
+ overflow: hidden;
80
+ max-width: 100px;
81
+ }
82
+
83
+ /* Save a bit of space here */
84
+ body.charListGrid #rm_print_characters_block .character_name_block {
85
+ gap: 0;
86
+ margin-bottom: 0;
87
+ }
88
+
89
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .ch_name,
90
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .bogus_folder_counter,
91
+ body.charListGrid #rm_print_characters_block .character_select .ch_name,
92
+ body.charListGrid #rm_print_characters_block .group_select .ch_name,
93
+ body.charListGrid #rm_print_characters_block .group_select .group_select_counter,
94
+ #user_avatar_block.gridView .avatar-container .ch_name,
95
+ #user_avatar_block.gridView .avatar-container .bogus_folder_counter,
96
+ #user_avatar_block.gridView .avatar-container .group_select_counter,
97
+ #user_avatar_block.gridView .avatar-container .ch_additional_info {
98
+ width: 100%;
99
+ max-width: 100px;
100
+ text-align: center;
101
+ font-size: calc(var(--mainFontSize) * .8);
102
+ }
103
+
104
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .character_name_block,
105
+ body.charListGrid #rm_print_characters_block .character_select .character_name_block,
106
+ body.charListGrid #rm_print_characters_block .group_select .group_name_block,
107
+ #user_avatar_block.gridView .avatar-container .character_name_block {
108
+ width: 100%;
109
+ flex-direction: column;
110
+ }
111
+
112
+ body.charListGrid #rm_print_characters_block .bogus_folder_select .character_select_container,
113
+ body.charListGrid #rm_print_characters_block .character_select .character_select_container,
114
+ body.charListGrid #rm_print_characters_block .group_select .group_select_container,
115
+ #user_avatar_block.gridView .avatar-container .character_select_container,
116
+ #user_avatar_block.gridView .avatar-container .group_select_container {
117
+ width: 100%;
118
+ justify-content: center;
119
+ max-width: 100px;
120
+ }
121
+
122
+ body.charListGrid #rm_print_characters_block .group_select {
123
+ width: 30%;
124
+ height: min-content;
125
+ align-items: center !important;
126
+ flex-direction: column;
127
+ overflow: hidden;
128
+ max-width: 100px;
129
+ }
130
+
131
+ body.charListGrid #rm_print_characters_block .group_select .group_name_block {
132
+ width: 100%;
133
+ }
134
+
135
+ body.charListGrid #rm_print_characters_block .ch_description,
136
+ body.charListGrid #rm_print_characters_block .tags_inline,
137
+ body.charListGrid #rm_print_characters_block .group_select_block_list,
138
+ body.charListGrid #rm_print_characters_block .ch_avatar_url,
139
+ body.charListGrid #rm_print_characters_block .character_version,
140
+ body.charListGrid #rm_print_characters_block .character_name_block_sub_line,
141
+ #user_avatar_block.gridView .avatar-container .ch_description,
142
+ body.charListGrid #rm_print_characters_block .bogus_folder_select_back .bogus_folder_back_placeholder {
143
+ display: none;
144
+ }
145
+
146
+ body.charListGrid #rm_print_characters_block .bogus_folder_select_back .avatar {
147
+ display: flex !important;
148
+ }
149
+
150
+ /* Hack for keeping the spacing */
151
+ /*
152
+ body.charListGrid #rm_print_characters_block .ch_add_placeholder {
153
+ display: flex !important;
154
+ opacity: 0;
155
+ }
156
+ */
157
+
158
+ body.charListGrid #rm_print_characters_block .ch_additional_info {
159
+ display: none;
160
+ }
161
+
162
+ /*big avatars mode page-wide changes*/
163
+
164
+ body.big-avatars .character_select .avatar,
165
+ body.big-avatars .group_select .avatar,
166
+ body.big-avatars .bogus_folder_select .avatar {
167
+ flex: unset;
168
+ }
169
+
170
+ body.big-avatars .avatar {
171
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
172
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
173
+ /* width: unset; */
174
+ border-style: none;
175
+ display: flex;
176
+ justify-content: center;
177
+ flex-direction: column;
178
+ align-items: center;
179
+ /* align-self: unset; */
180
+ overflow: visible;
181
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
182
+ }
183
+
184
+ body.big-avatars #user_avatar_block .avatar,
185
+ body.big-avatars #user_avatar_block .avatar_upload {
186
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
187
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
188
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
189
+ }
190
+
191
+ body.big-avatars #user_avatar_block .avatar img {
192
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
193
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
194
+ }
195
+
196
+ body.big-avatars .avatar img {
197
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
198
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor));
199
+ object-fit: cover;
200
+ object-position: center;
201
+ border: 1px solid var(--SmartThemeBorderColor);
202
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor));
203
+ }
204
+
205
+ body.big-avatars .bogus_folder_select_back .bogus_folder_back_placeholder {
206
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
207
+ }
208
+
209
+ body:not(.big-avatars) .avatar_collage {
210
+ min-width: var(--avatar-base-width);
211
+ aspect-ratio: 1 / 1;
212
+ }
213
+
214
+ body:not(.big-avatars) .avatar_collage img {
215
+ border-radius: 0% !important;
216
+ }
217
+
218
+ body.big-avatars .avatar_collage {
219
+ min-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
220
+ max-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor));
221
+ aspect-ratio: 2 / 3;
222
+ }
223
+
224
+ body.big-avatars .ch_description,
225
+ body.big-avatars .avatar-container .ch_description {
226
+ display: -webkit-box;
227
+ -webkit-line-clamp: 3;
228
+ -webkit-box-orient: vertical;
229
+ white-space: pre-line;
230
+ text-overflow: unset;
231
+ }
232
+
233
+ body.big-avatars .avatars_inline_small .avatar,
234
+ body.big-avatars .avatars_inline_small .avatar img {
235
+ width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
236
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) * var(--inline-avatar-small-factor));
237
+ }
238
+
239
+ body.big-avatars .avatars_inline {
240
+ max-height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) + 2 * var(--avatar-base-border-radius));
241
+ }
242
+
243
+ body.big-avatars .avatars_inline.avatars_multiline {
244
+ max-height: fit-content;
245
+ }
246
+
247
+ body.big-avatars .avatars_inline.avatars_inline_small {
248
+ height: calc(var(--avatar-base-height) * var(--big-avatar-height-factor) * var(--inline-avatar-small-factor) + 2 * var(--avatar-base-border-radius));
249
+ }
250
+
251
+ body.big-avatars .avatars_inline.avatars_inline_small.avatars_multiline {
252
+ height: inherit;
253
+ }
254
+
255
+ body:not(.big-avatars) .avatars_inline_small .avatar_collage {
256
+ min-width: calc(var(--avatar-base-width) * var(--inline-avatar-small-factor));
257
+ }
258
+
259
+ body.big-avatars .avatars_inline_small .avatar_collage {
260
+ min-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
261
+ max-width: calc(var(--avatar-base-width) * var(--big-avatar-width-factor) * var(--inline-avatar-small-factor));
262
+ }
263
+
264
+ /* border radius for big avatars collages */
265
+
266
+ body.big-avatars .collage_2 .img_1 {
267
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
268
+ }
269
+
270
+ body.big-avatars .collage_2 .img_2 {
271
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 !important;
272
+ }
273
+
274
+ body.big-avatars .collage_3 .img_1 {
275
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 0 !important;
276
+ }
277
+
278
+ body.big-avatars .collage_3 .img_2 {
279
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 !important;
280
+ }
281
+
282
+ body.big-avatars .collage_3 .img_3 {
283
+ border-radius: 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
284
+ }
285
+
286
+ body.big-avatars .collage_4 .img_1 {
287
+ border-radius: calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 0 !important;
288
+ }
289
+
290
+ body.big-avatars .collage_4 .img_2 {
291
+ border-radius: 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 0 !important;
292
+ }
293
+
294
+ body.big-avatars .collage_4 .img_3 {
295
+ border-radius: 0 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) !important;
296
+ }
297
+
298
+ body.big-avatars .collage_4 .img_4 {
299
+ border-radius: 0 0 calc(var(--avatar-base-border-radius) * var(--big-avatar-border-factor)) 0 !important;
300
+ }
301
+
302
+
303
+
304
+ /*bubble chat style*/
305
+
306
+ body.bubblechat .mes {
307
+ padding: 10px;
308
+ border-radius: 10px;
309
+ background-color: var(--SmartThemeBotMesBlurTintColor);
310
+ margin-bottom: 5px;
311
+ border: 1px solid var(--SmartThemeBorderColor);
312
+ }
313
+
314
+ body.bubblechat .mes[is_user="true"] {
315
+ background-color: var(--SmartThemeUserMesBlurTintColor);
316
+ }
317
+
318
+
319
+ /* Document Style */
320
+
321
+ body.documentstyle #chat .mes:not(.last_mes) {
322
+ padding: 5px 10px 0px 10px;
323
+ }
324
+
325
+ body.documentstyle .last_mes {
326
+ padding-top: 0;
327
+ }
328
+
329
+ body.documentstyle #chat .mes .mes_text {
330
+ padding: 0;
331
+ }
332
+
333
+ body.documentstyle #chat .mes .mes_block {
334
+ margin-right: 30px;
335
+ }
336
+
337
+ body.documentstyle #chat .mes .mes_text {
338
+ margin-left: 20px;
339
+ }
340
+
341
+ body.documentstyle #chat .last_mes .mes_text {
342
+ margin-left: 20px;
343
+ min-height: 70px;
344
+ }
345
+
346
+ body.documentstyle #chat .last_mes:has(> .del_checkbox[style*="display: block"]) .mes_text {
347
+ margin-left: 0px;
348
+ }
349
+
350
+ body.documentstyle #chat .last_mes .swipe_left {
351
+ left: 5px;
352
+ }
353
+
354
+ body.documentstyle #chat .mes .mesAvatarWrapper,
355
+ body.documentstyle #chat .mes .mes_block .ch_name .name_text,
356
+ body.documentstyle #chat .mes .mes_block .ch_name .timestamp,
357
+ body.documentstyle #chat .mes .mes_block .ch_name .timestamp-icon,
358
+ body.documentstyle .mes:not(.last_mes) .ch_name .mes_buttons {
359
+ display: none !important;
360
+ }
361
+
362
+ body.documentstyle #chat .mes_block .ch_name {
363
+ min-height: unset;
364
+ }
365
+
366
+ /*FastUI blur removal*/
367
+
368
+ body.no-blur * {
369
+ backdrop-filter: unset !important;
370
+ }
371
+
372
+ /* body.no-blur #send_form.no-connection {
373
+ background-color: rgba(100, 0, 0, 0.9) !important;
374
+ } */
375
+
376
+ body.no-blur #bg1,
377
+ body.no-blur #bg_custom {
378
+ filter: unset;
379
+
380
+ }
381
+
382
+ body.no-blur #top-bar,
383
+ body.no-blur #send_form {
384
+ background-color: var(--SmartThemeBlurTintColor) !important;
385
+ }
386
+
387
+ /* wAIfu mode*/
388
+
389
+ body.waifuMode #top-bar {
390
+ border-radius: 0 0 20px 20px;
391
+ border: 1px solid var(--SmartThemeBorderColor);
392
+ }
393
+
394
+ body.waifuMode #sheld {
395
+ height: 40vh;
396
+ height: 40dvh;
397
+ top: calc(100% - 40vh);
398
+ bottom: 0;
399
+ }
400
+
401
+ body.waifuMode #chat {
402
+ border-top: 1px solid var(--SmartThemeBorderColor);
403
+ border-radius: 20px 20px 0 0;
404
+ }
405
+
406
+ body.waifuMode #expression-wrapper {
407
+ justify-content: center;
408
+ }
409
+
410
+ body.waifuMode .expression-holder {
411
+ max-height: 90vh;
412
+ max-width: 90vw;
413
+ height: 90vh;
414
+ width: fit-content;
415
+ bottom: 0;
416
+ filter: drop-shadow(2px 2px 2px #51515199);
417
+ z-index: 2;
418
+ margin: 0 auto;
419
+ left: 0;
420
+ right: 0;
421
+ }
422
+
423
+ body.waifuMode .zoomed_avatar {
424
+ min-width: 100px;
425
+ min-height: 100px;
426
+ max-height: 90vh;
427
+ max-width: 90vh;
428
+ width: calc((100vw - var(--sheldWidth)) /2);
429
+ position: absolute;
430
+ padding: 0;
431
+ filter: drop-shadow(2px 2px 2px #51515199);
432
+ z-index: 29;
433
+ overflow: hidden;
434
+ display: none;
435
+ left: 0;
436
+ right: 0;
437
+ margin: 0 auto;
438
+ top: 50px;
439
+ aspect-ratio: 2 / 3;
440
+ height: auto;
441
+ }
442
+
443
+ /* movingUI*/
444
+
445
+ body.movingUI .drag-grabber {
446
+ display: inline;
447
+ }
448
+
449
+ body.movingUI #sheld,
450
+ body.movingUI .drawer-content,
451
+ body.movingUI #expression-holder,
452
+ body.movingUI .zoomed_avatar,
453
+ body.movingUI .draggable,
454
+ body.movingUI #floatingPrompt {
455
+ resize: both;
456
+ }
457
+
458
+ #expression-image.default,
459
+ #expression-holder:has(.default) {
460
+ height: 120px;
461
+ margin-top: 0;
462
+ top: 50px;
463
+ justify-content: center;
464
+ }
465
+
466
+ /*No Text Shadows Mode*/
467
+
468
+ body.noShadows * {
469
+ text-shadow: none !important;
470
+ }
471
+
472
+ body.expandMessageActions .mes .mes_buttons .extraMesButtons {
473
+ display: inherit !important;
474
+ }
475
+
476
+ body.expandMessageActions .mes .mes_buttons .extraMesButtonsHint {
477
+ display: none !important;
478
+ }
479
+
480
+ #smooth_streaming_control:has(#smooth_streaming:not(:checked))~#smooth_streaming_speed_control,
481
+ #smooth_streaming_control:has(#smooth_streaming:not(:checked))~#smooth_streaming_no_think_control {
482
+ display: none;
483
+ }
484
+
485
+ .mdhotkey_icon {
486
+ opacity: 0.6;
487
+ }
488
+
489
+ label[for="trim_spaces"]:has(input:checked) i.warning {
490
+ display: none;
491
+ }
492
+
493
+ label[for="trim_spaces"]:not(:has(input:checked)) small {
494
+ color: var(--warning);
495
+ opacity: 1;
496
+ }
497
+
498
+ #claude_function_prefill_warning {
499
+ display: none;
500
+ color: red;
501
+ font-weight: bold;
502
+ }
503
+
504
+ #openai_settings:has(#openai_function_calling:checked):has(#claude_assistant_prefill:not(:placeholder-shown), #claude_assistant_impersonation:not(:placeholder-shown)) #claude_function_prefill_warning {
505
+ display: flex;
506
+ align-items: center;
507
+ gap: 5px;
508
+ margin: 10px 0;
509
+ }
510
+
511
+ #mistralai_other_models:empty {
512
+ display: none;
513
+ }
514
+
515
+ #banned_tokens_block_ooba:not(:has(#send_banned_tokens_textgenerationwebui:checked)) #banned_tokens_controls_ooba {
516
+ filter: brightness(0.5);
517
+ }
518
+
519
+ #bind_preset_to_connection:checked~.toggleOff {
520
+ display: none;
521
+ }
522
+
523
+ #bind_preset_to_connection:not(:checked)~.toggleOn {
524
+ display: none;
525
+ }
526
+
527
+ label[for="bind_preset_to_connection"]:has(input:checked) {
528
+ color: var(--active);
529
+ }
530
+
531
+ #openai_settings input[type="checkbox"]:not(:checked)~[data-cc-toggle],
532
+ #openai_settings input[type="checkbox"]:not(:checked)~*:has([data-cc-toggle]),
533
+ #openai_settings [data-cc-toggle="false"]>.icon-supported,
534
+ #openai_settings [data-cc-toggle="true"]>.icon-unsupported {
535
+ display: none;
536
+ }
537
+
538
+ #openai_settings [data-cc-toggle="true"]>.icon-supported {
539
+ color: var(--active);
540
+ }
541
+
542
+ #openai_settings [data-cc-toggle="false"]>.icon-unsupported {
543
+ color: var(--golden);
544
+ }
545
+
546
+ #advanced-formatting-cc-notice {
547
+ display: none;
548
+ gap: 5px;
549
+ align-items: baseline;
550
+ margin: 5px 0;
551
+ padding: 5px 10px;
552
+ }
553
+
554
+ #top-settings-holder:has(#main_api option[value="openai"]:checked) #advanced-formatting-cc-notice {
555
+ display: flex;
556
+ }
557
+
558
+ #top-settings-holder:has(#main_api option[value="openai"]:checked) #AdvancedFormatting [data-cc-null] {
559
+ opacity: 0.5;
560
+ filter: grayscale(0.5);
561
+ cursor: not-allowed;
562
+ }
563
+
564
+ #request_images_block:has(#openai_request_images:not(:checked)) #request_images_settings {
565
+ display: none;
566
+ }
public/css/user.css ADDED
@@ -0,0 +1 @@
 
 
1
+ /* Put custom styles here. */
public/css/welcome.css ADDED
@@ -0,0 +1,229 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #chat .mes[type="assistant_message"] .mes_button {
2
+ display: none;
3
+ }
4
+
5
+ .welcomePanel {
6
+ display: flex;
7
+ flex-direction: column;
8
+ gap: 5px;
9
+ padding: 10px;
10
+ width: 100%;
11
+ }
12
+
13
+ .welcomePanel:has(.showMoreChats) {
14
+ padding-bottom: 5px;
15
+ }
16
+
17
+ .welcomePanel.recentHidden .welcomeRecent,
18
+ .welcomePanel.recentHidden .recentChatsTitle,
19
+ .welcomePanel.recentHidden .hideRecentChats,
20
+ .welcomePanel:not(.recentHidden) .showRecentChats {
21
+ display: none;
22
+ }
23
+
24
+ body.bubblechat .welcomePanel {
25
+ border-radius: 10px;
26
+ background-color: var(--SmartThemeBotMesBlurTintColor);
27
+ border: 1px solid var(--SmartThemeBorderColor);
28
+ margin-bottom: 5px;
29
+ }
30
+
31
+ body.hideChatAvatars .welcomePanel .recentChatList .recentChat .avatar {
32
+ display: none;
33
+ }
34
+
35
+ .welcomePanel .welcomeHeader {
36
+ display: flex;
37
+ flex-direction: row;
38
+ align-items: center;
39
+ justify-content: flex-end;
40
+ }
41
+
42
+ .welcomePanel .recentChatsTitle {
43
+ flex-grow: 1;
44
+ font-size: calc(var(--mainFontSize) * 1.15);
45
+ font-weight: 600;
46
+ }
47
+
48
+ .welcomePanel .welcomeHeaderTitle {
49
+ margin: 0;
50
+ flex-grow: 1;
51
+ display: flex;
52
+ flex-direction: row;
53
+ align-items: center;
54
+ gap: 10px;
55
+ }
56
+
57
+ .welcomePanel .welcomeHeaderVersionDisplay {
58
+ font-size: calc(var(--mainFontSize) * 1.3);
59
+ font-weight: 600;
60
+ flex-grow: 1;
61
+ }
62
+
63
+ .welcomePanel .welcomeHeaderLogo {
64
+ width: 30px;
65
+ height: 30px;
66
+ }
67
+
68
+ .welcomePanel .welcomeShortcuts {
69
+ display: flex;
70
+ flex-direction: row;
71
+ flex-wrap: wrap;
72
+ align-items: center;
73
+ justify-content: center;
74
+ gap: 5px;
75
+ }
76
+
77
+ .welcomePanel .welcomeShortcuts .welcomeShortcutsSeparator {
78
+ margin: 0 2px;
79
+ color: var(--SmartThemeBorderColor);
80
+ font-size: calc(var(--mainFontSize) * 1.1);
81
+ }
82
+
83
+ .welcomeRecent .recentChatList {
84
+ display: flex;
85
+ flex-direction: column;
86
+ width: 100%;
87
+ gap: 2px;
88
+ }
89
+
90
+ .welcomeRecent .welcomePanelLoader {
91
+ display: flex;
92
+ justify-content: center;
93
+ align-items: center;
94
+ flex: 1;
95
+ width: 100%;
96
+ height: 100%;
97
+ position: absolute;
98
+ }
99
+
100
+ .welcomePanel .recentChatList .noRecentChat {
101
+ display: flex;
102
+ flex-direction: row;
103
+ justify-content: center;
104
+ align-items: baseline;
105
+ gap: 5px;
106
+ padding: 10px;
107
+ }
108
+
109
+ .welcomeRecent .recentChatList .recentChat {
110
+ display: flex;
111
+ flex-direction: row;
112
+ align-items: center;
113
+ padding: 5px 10px;
114
+ border-radius: 10px;
115
+ cursor: pointer;
116
+ gap: 10px;
117
+ border: 1px solid var(--SmartThemeBorderColor);
118
+ }
119
+
120
+ .welcomeRecent .recentChatList .recentChat .avatar {
121
+ flex: 0;
122
+ align-self: center;
123
+ }
124
+
125
+ .welcomeRecent .recentChatList .recentChat:hover {
126
+ background-color: var(--white30a);
127
+ }
128
+
129
+ .welcomeRecent .recentChatList .recentChat .recentChatInfo {
130
+ display: flex;
131
+ flex-direction: column;
132
+ flex-wrap: nowrap;
133
+ flex-grow: 1;
134
+ overflow: hidden;
135
+ justify-content: center;
136
+ align-self: flex-start;
137
+ }
138
+
139
+ .welcomeRecent .recentChatList .recentChat .chatNameContainer {
140
+ display: flex;
141
+ flex-direction: row;
142
+ justify-content: space-between;
143
+ align-items: baseline;
144
+ font-size: calc(var(--mainFontSize) * 1);
145
+ gap: 5px;
146
+ }
147
+
148
+ .welcomeRecent .recentChatList .recentChat .chatNameContainer .chatName {
149
+ white-space: nowrap;
150
+ text-overflow: ellipsis;
151
+ overflow: hidden;
152
+ flex: 1;
153
+ }
154
+
155
+ .welcomeRecent .recentChatList .recentChat .chatActions {
156
+ display: flex;
157
+ flex-direction: row;
158
+ align-items: center;
159
+ justify-content: center;
160
+ gap: 5px;
161
+ }
162
+
163
+ .welcomeRecent .recentChatList .recentChat .chatActions button {
164
+ margin: 0;
165
+ font-size: 0.8em;
166
+ cursor: pointer;
167
+ }
168
+
169
+ .welcomeRecent .recentChatList .recentChat .chatMessageContainer {
170
+ display: flex;
171
+ flex-direction: row;
172
+ align-items: center;
173
+ justify-content: space-between;
174
+ gap: 5px;
175
+ font-size: calc(var(--mainFontSize) * 0.85);
176
+ }
177
+
178
+ .welcomeRecent .recentChatList .recentChat .chatMessageContainer .chatMessage {
179
+ display: -webkit-box;
180
+ -webkit-box-orient: vertical;
181
+ -webkit-line-clamp: 2;
182
+ line-clamp: 2;
183
+ overflow: hidden;
184
+ }
185
+
186
+ body.big-avatars .welcomeRecent .recentChatList .recentChat .chatMessageContainer .chatMessage {
187
+ -webkit-line-clamp: 4;
188
+ line-clamp: 4;
189
+ }
190
+
191
+ .welcomeRecent .recentChatList .recentChat .chatStats {
192
+ display: flex;
193
+ flex-direction: row;
194
+ justify-content: flex-end;
195
+ align-items: baseline;
196
+ align-self: flex-start;
197
+ gap: 5px;
198
+ }
199
+
200
+ .welcomeRecent .recentChatList .recentChat .chatStats .counterBlock {
201
+ display: flex;
202
+ flex-direction: row;
203
+ align-items: baseline;
204
+ gap: 5px;
205
+ }
206
+
207
+ .welcomeRecent .recentChatList .recentChat .chatStats .counterBlock::after {
208
+ content: "|";
209
+ color: var(--SmartThemeBorderColor);
210
+ font-size: calc(var(--mainFontSize) * 0.95);
211
+ }
212
+
213
+ .welcomeRecent .recentChatList .recentChat.hidden {
214
+ display: none;
215
+ }
216
+
217
+ .welcomeRecent .recentChatList .showMoreChats {
218
+ align-self: center;
219
+ }
220
+
221
+ .welcomeRecent .recentChatList .showMoreChats.rotated {
222
+ transform: rotate(180deg);
223
+ }
224
+
225
+ @media screen and (max-width: 1000px) {
226
+ .welcomePanel .welcomeShortcuts a span {
227
+ display: none;
228
+ }
229
+ }
public/css/world-info.css ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .world_info_select_block {
2
+ display: flex;
3
+ flex-direction: row;
4
+ align-items: baseline;
5
+ gap: 5px;
6
+ }
7
+
8
+ .budget_cap_note {
9
+ flex-basis: 100%;
10
+ line-height: 0.1;
11
+ }
12
+
13
+ #world_popup {
14
+ min-height: 100px;
15
+ min-width: 100px;
16
+ left: 0;
17
+ right: 0;
18
+ flex-direction: column;
19
+ z-index: 3010;
20
+ overflow-y: hidden;
21
+ }
22
+
23
+ .WIEntryContentAndMemo {
24
+ width: 100% !important;
25
+ flex-wrap: nowrap !important;
26
+ }
27
+
28
+ .WIEntryContentAndMemo .world_entry_thin_controls {
29
+ flex: 1;
30
+ }
31
+
32
+ #world_popup_bottom_holder {
33
+ display: flex;
34
+ flex-flow: row;
35
+ justify-content: space-evenly;
36
+ align-items: center;
37
+ }
38
+
39
+ #world_popup_bottom_holder div {
40
+ width: fit-content;
41
+ user-select: none;
42
+ }
43
+
44
+ #form_rename_world {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: 5px;
48
+ }
49
+
50
+ .world_popup_expander {
51
+ flex-grow: 1;
52
+ }
53
+
54
+ #world_popup_entries_list {
55
+ flex-grow: 1;
56
+ overflow-y: auto;
57
+ }
58
+
59
+ #world_popup_entries_list:empty {
60
+ width: 100%;
61
+ height: 100%;
62
+ }
63
+
64
+ #world_popup_entries_list:empty::before {
65
+ content: 'No entries found.';
66
+ font-size: calc(var(--mainFontSize) + .1rem);
67
+ font-weight: bolder;
68
+ width: 100%;
69
+ height: 100%;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ opacity: 0.8;
74
+ }
75
+
76
+ .world_entry_form_control {
77
+ display: flex;
78
+ flex-direction: column;
79
+ position: relative;
80
+ }
81
+
82
+ .world_entry_form_control .keyprimarytextpole,
83
+ .world_entry_form_control .keysecondarytextpole {
84
+ padding-right: 25px;
85
+ }
86
+
87
+ .world_entry_thin_controls {
88
+ display: flex;
89
+ flex-direction: row;
90
+ }
91
+
92
+ /* .world_entry_thin_controls>div {
93
+ flex: 1;
94
+ } */
95
+
96
+ .world_entry_form_control label h4 {
97
+ margin-bottom: 0;
98
+ margin-top: 0;
99
+ }
100
+
101
+ .world_entry_form_control label h5 {
102
+ margin-top: 3px;
103
+ margin-bottom: 3px;
104
+ }
105
+
106
+ .world_entry_form_control textarea {
107
+ height: auto;
108
+ margin-top: 0;
109
+ margin-bottom: 0;
110
+ }
111
+
112
+ .delete_entry_button {
113
+ height: min-content;
114
+ }
115
+
116
+ .world_entry_form_control.world_entry_form_horizontal {
117
+ flex-direction: row;
118
+ align-items: center;
119
+ flex-wrap: wrap;
120
+ }
121
+
122
+ .world_entry .inline-drawer-header {
123
+ cursor: initial;
124
+ }
125
+
126
+ .world_entry .inline-drawer-header-pointer {
127
+ cursor: pointer;
128
+ }
129
+
130
+ .world_entry .killSwitch {
131
+ cursor: pointer;
132
+ }
133
+
134
+ .world_entry_form_control input[type=button] {
135
+ cursor: pointer;
136
+ }
137
+
138
+ .world_entry_form_horizontal h5 {
139
+ margin: 0 1rem;
140
+ }
141
+
142
+ .world_entry_form_control .checkbox {
143
+ align-items: center;
144
+ display: flex;
145
+ flex-direction: row;
146
+ column-gap: 10px;
147
+ }
148
+
149
+ .world_entry_form_control .checkbox h4 {
150
+ margin: 0;
151
+ display: inline-block;
152
+ }
153
+
154
+ .world_entry_form_radios label {
155
+ margin-left: 0;
156
+ }
157
+
158
+ .world_entry_form_radios h4 {
159
+ display: inline;
160
+ }
161
+
162
+ #world_popup h5 {
163
+ color: var(--grey70);
164
+ }
165
+
166
+ /* possible place for WI Entry header styling */
167
+ /* .world_entry_form .inline-drawer-header {
168
+ background-color: var(--SmartThemeShadowColor);
169
+ } */
170
+
171
+ #world_editor_select {
172
+ text-overflow: ellipsis;
173
+ white-space: nowrap;
174
+ }
175
+
176
+ #world_editor_select,
177
+ #world_editor_select~.select2-container,
178
+ #world_info_sort_order,
179
+ #world_info_search {
180
+ flex: 1;
181
+ }
182
+
183
+ #world_info_sort_order,
184
+ #world_info_search {
185
+ min-width: 6em;
186
+ }
187
+
188
+ #world_editor_select~.select2-container {
189
+ overflow: hidden;
190
+ }
191
+
192
+ #world_editor_select~.select2-container .select2-selection--single .select2-selection__rendered {
193
+ padding-right: 30px;
194
+ }
195
+
196
+ #world_editor_select~.select2-container .select2-selection .select2-selection__clear {
197
+ right: 20px;
198
+ display: flex;
199
+ align-items: center;
200
+ }
201
+
202
+ .world_entry .killSwitch.fa-toggle-on {
203
+ color: var(--SmartThemeQuoteColor);
204
+ }
205
+
206
+ .wi-card-entry {
207
+ border: 1px solid;
208
+ border-color: var(--SmartThemeBorderColor);
209
+ border-radius: 10px;
210
+ padding: 0 5px;
211
+ margin-bottom: 1px;
212
+ }
213
+
214
+ .world_entry {
215
+ transition: opacity var(--animation-duration-3x);
216
+ }
217
+
218
+ .world_entry_edit {
219
+ display: contents;
220
+ }
221
+
222
+ .disabledWIEntry {
223
+ opacity: 0.4;
224
+ filter: grayscale(1);
225
+ }
226
+
227
+ .disabledWIEntry:not(input):hover {
228
+ opacity: 1;
229
+ filter: grayscale(0.5);
230
+ }
231
+
232
+ .height32px {
233
+ height: 32px;
234
+ }
235
+
236
+ .WIEntryHeaderTitleMobile {
237
+ display: none;
238
+ }
239
+
240
+ .world_entry .select2-selection--multiple,
241
+ .world_entry textarea.keyprimarytextpole,
242
+ .world_entry textarea.keysecondarytextpole {
243
+ max-height: 160px;
244
+ overflow-y: auto;
245
+ overflow-x: hidden;
246
+ }
247
+
248
+ span.select2-container .select2-selection__choice__display:has(> .regex_item),
249
+ span.select2-container .select2-results__option:has(> .result_block .regex_item) {
250
+ background-color: #D27D2D30;
251
+ }
252
+
253
+ .regex_item .regex_icon {
254
+ background-color: var(--black30a);
255
+ color: var(--SmartThemeBodyColor);
256
+ border: 1px solid var(--SmartThemeBorderColor);
257
+ border-radius: 7px;
258
+ font-weight: bold;
259
+ font-size: calc(var(--mainFontSize) * 0.75);
260
+ padding: 0px 3px;
261
+ position: relative;
262
+ top: -1px;
263
+ margin-right: 3px;
264
+ }
265
+
266
+ .select2-results__option .regex_item .regex_icon {
267
+ margin-right: 6px;
268
+ }
269
+
270
+ .select2-results__option .item_count {
271
+ margin-left: 10px;
272
+ float: right;
273
+ }
274
+
275
+ select.keyselect+span.select2-container .select2-selection--multiple {
276
+ padding-right: 30px;
277
+ }
278
+
279
+ .switch_input_type_icon {
280
+ cursor: pointer;
281
+ font-weight: bold;
282
+ height: 20px;
283
+ width: fit-content;
284
+ margin-right: 5px;
285
+ margin-top: calc(5px + var(--mainFontSize));
286
+ position: absolute;
287
+ right: 0;
288
+ padding: 1px;
289
+
290
+ background-color: transparent;
291
+ border: none;
292
+ font-size: 1em;
293
+
294
+ opacity: 0.5;
295
+ color: var(--SmartThemeBodyColor);
296
+ transition: opacity var(--animation-duration-2x);
297
+ }
298
+
299
+ .switch_input_type_icon:hover {
300
+ opacity: 1;
301
+ }
302
+
303
+ #wiCheckboxes {
304
+ align-self: center;
305
+ width: 100%;
306
+ }
307
+
308
+ .world_entry:has(input[name="delay_until_recursion"]:not(:checked)) .world_entry_form_control:has(input[name="delayUntilRecursionLevel"]) {
309
+ display: none;
310
+ }
311
+
312
+ .world_entry:not(:has(select[name="position"] option[value="7"]:checked)) .world_entry_form_control:has(input[name="outletName"]) {
313
+ display: none;
314
+ }
315
+
316
+ .world_entry label[for="__invisible"] {
317
+ visibility: hidden;
318
+ pointer-events: none;
319
+ opacity: 0;
320
+ width: 0;
321
+ overflow: hidden;
322
+ }
323
+
324
+ #WIMultiSelector .select2-container .select2-selection--multiple {
325
+ max-height: 25vh;
326
+ overflow-y: auto;
327
+ overflow-x: hidden;
328
+ }
public/error/forbidden-by-whitelist.html ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <title>Forbidden</title>
6
+ </head>
7
+
8
+ <body>
9
+ <h1>Forbidden</h1>
10
+ <p>
11
+ If you are the system administrator, add your IP address to the
12
+ whitelist or disable whitelist mode by editing
13
+ <code>config.yaml</code> in the root directory of your installation.
14
+ </p>
15
+ <hr />
16
+ <p>
17
+ <em>Connection from {{ipDetails}} has been blocked. This attempt
18
+ has been logged.</em>
19
+ </p>
20
+ </body>
21
+
22
+ </html>
public/error/host-not-allowed.html ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <title>Forbidden</title>
6
+ </head>
7
+
8
+ <body>
9
+ <h1>Forbidden</h1>
10
+ <p>
11
+ If you are the system administrator, add the hostname you are accessing from to the
12
+ host whitelist, or disable host whitelisting in the
13
+ <code>config.yaml</code> file located in the root directory of your installation.
14
+ </p>
15
+ <hr />
16
+ <p>
17
+ <em>Access from this host is not allowed. This attempt has been logged.</em>
18
+ </p>
19
+ </body>
20
+
21
+ </html>
public/error/unauthorized.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <title>Unauthorized</title>
6
+ </head>
7
+
8
+ <body>
9
+ <h1>Unauthorized</h1>
10
+ <p>
11
+ If you are the system administrator, you can configure the
12
+ <code>basicAuthUser</code> credentials by editing
13
+ <code>config.yaml</code> in the root directory of your installation.
14
+ </p>
15
+ </body>
16
+
17
+ </html>
public/error/url-not-found.html ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <title>Not found</title>
6
+ </head>
7
+
8
+ <body>
9
+ <h1>Not found</h1>
10
+ <p>
11
+ The requested URL was not found on this server.
12
+ </p>
13
+ </body>
14
+
15
+ </html>
public/favicon.ico ADDED
public/global.d.ts ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import libs from './lib';
2
+ import getContext from './scripts/st-context';
3
+ import { power_user } from './scripts/power-user';
4
+ import { QuickReplyApi } from './scripts/extensions/quick-reply/api/QuickReplyApi';
5
+ import { oai_settings } from './scripts/openai';
6
+ import { textgenerationwebui_settings } from './scripts/textgen-settings';
7
+ import { FileAttachment } from './scripts/chats';
8
+ import { ReasoningMessageExtra } from './scripts/reasoning';
9
+ import { IGNORE_SYMBOL, OVERSWIPE_BEHAVIOR } from './scripts/constants';
10
+ import { ToolInvocation } from './scripts/tool-calling';
11
+ import { getWorldInfoSettings } from './scripts/world-info';
12
+
13
+ declare global {
14
+ // Custom types
15
+ type InstructSettings = typeof power_user.instruct;
16
+ type ContextSettings = typeof power_user.context;
17
+ type ReasoningSettings = typeof power_user.reasoning;
18
+ type ChatCompletionSettings = typeof oai_settings;
19
+ type TextCompletionSettings = typeof textgenerationwebui_settings;
20
+ type WorldInfoSettings = ReturnType<typeof getWorldInfoSettings>;
21
+ type MessageTimestamp = string | number | Date;
22
+ type Character = import('./scripts/char-data').v1CharData;
23
+ type ChatMessageExtra = BaseMessageExtra & Partial<ReasoningMessageExtra> & Record<string, any>;
24
+
25
+ interface Group {
26
+ id: string;
27
+ name: string;
28
+ members: string[];
29
+ disabled_members: string[];
30
+ chat_id: string;
31
+ chats: string[];
32
+ generation_mode?: number;
33
+ generation_mode_join_prefix?: string;
34
+ generation_mode_join_suffix?: string;
35
+ activation_strategy?: number;
36
+ auto_mode_delay?: number;
37
+ allow_self_responses?: boolean;
38
+ avatar_url?: string;
39
+ hideMutedSprites?: boolean;
40
+ fav?: boolean;
41
+ }
42
+
43
+ interface ChatFile extends Array<ChatMessage> {
44
+ [index: number]: ChatMessage;
45
+ 0?: ChatHeader;
46
+ }
47
+
48
+ interface ChatHeader {
49
+ chat_metadata: ChatMetadata;
50
+ /** @deprecated For backward compatibility ONLY */
51
+ user_name: 'unused';
52
+ /** @deprecated For backward compatibility ONLY */
53
+ character_name: 'unused';
54
+ }
55
+
56
+ interface ChatMetadata {
57
+ tainted?: boolean;
58
+ integrity?: string;
59
+ scenario?: string;
60
+ persona?: string;
61
+ [key: string]: any;
62
+ }
63
+
64
+ interface ChatMessage {
65
+ name?: string;
66
+ mes?: string;
67
+ title?: string;
68
+ gen_started?: MessageTimestamp;
69
+ gen_finished?: MessageTimestamp;
70
+ send_date?: MessageTimestamp;
71
+ is_user?: boolean;
72
+ is_system?: boolean;
73
+ force_avatar?: string;
74
+ original_avatar?: string;
75
+ swipes?: string[];
76
+ swipe_info?: SwipeInfo[];
77
+ swipe_id?: number;
78
+ extra?: ChatMessageExtra;
79
+ };
80
+
81
+ interface SwipeInfo {
82
+ send_date?: MessageTimestamp;
83
+ gen_started?: MessageTimestamp;
84
+ gen_finished?: MessageTimestamp;
85
+ extra?: ChatMessageExtra;
86
+ }
87
+
88
+ interface BaseMessageExtra {
89
+ api?: string;
90
+ model?: string;
91
+ type?: string;
92
+ gen_id?: number;
93
+ bias?: string;
94
+ uses_system_ui?: boolean;
95
+ memory?: string;
96
+ display_text?: string;
97
+ reasoning_display_text?: string;
98
+ tool_invocations?: ToolInvocation[];
99
+ title?: string;
100
+ isSmallSys?: boolean;
101
+ token_count?: number;
102
+ /** When false, the message cannot be swiped. */
103
+ swipeable?: boolean;
104
+ overswipe_behavior?: OVERSWIPE_BEHAVIOR;
105
+ files?: FileAttachment[];
106
+ inline_image?: boolean;
107
+ media_display?: string;
108
+ media_index?: number;
109
+ media?: MediaAttachment[],
110
+ /** @deprecated Use `files` instead */
111
+ file?: FileAttachment;
112
+ /** @deprecated Use `media` instead */
113
+ image?: string;
114
+ /** @deprecated Use `media` instead */
115
+ video?: string;
116
+ /** @deprecated Use `media` with `media_display = 'gallery'` instead */
117
+ image_swipes?: string[];
118
+ /** @deprecated Use `MediaAttachment.append_title` instead */
119
+ append_title?: boolean;
120
+ /** @deprecated Use `MediaAttachment.generation_type` instead */
121
+ generationType?: number;
122
+ /** @deprecated Use `MediaAttachment.negative` instead */
123
+ negative?: string;
124
+ /** Will exclude this message from prompt processing */
125
+ [IGNORE_SYMBOL]?: boolean;
126
+ }
127
+
128
+ type MediaAttachment = MediaAttachmentProps & ImageGenerationAttachmentProps & ImageCaptionAttachmentProps;
129
+
130
+ interface MediaAttachmentProps {
131
+ url: string;
132
+ title?: string;
133
+ type: string;
134
+ source?: string;
135
+ }
136
+
137
+ interface ImageGenerationAttachmentProps {
138
+ generation_type?: number;
139
+ negative?: string;
140
+ }
141
+
142
+ interface ImageCaptionAttachmentProps {
143
+ /** Append title to the message text in case of non-inline captions. */
144
+ append_title?: boolean;
145
+ /** Marker for captioned images to prevent auto-caption from firing again. */
146
+ captioned?: boolean;
147
+ }
148
+
149
+ /** Media playback state */
150
+ interface MediaState {
151
+ /** Current playback time */
152
+ currentTime: number;
153
+ /** Whether the media is paused */
154
+ paused: boolean;
155
+ }
156
+
157
+ interface ChatCompletionMessage {
158
+ name?: string;
159
+ role: string;
160
+ content: string;
161
+ }
162
+
163
+ // Global namespace modules
164
+ interface Window {
165
+ ai: any;
166
+ }
167
+
168
+ var pdfjsLib;
169
+ var ePub;
170
+ var quickReplyApi: QuickReplyApi;
171
+
172
+ var SillyTavern: {
173
+ getContext(): typeof getContext;
174
+ llm: any;
175
+ libs: typeof libs;
176
+ };
177
+
178
+ // Jquery plugins
179
+ interface JQuery {
180
+ nanogallery2(options?: any): JQuery;
181
+ nanogallery2(method: string, options?: any): JQuery;
182
+ pagination(method: 'getCurrentPageNum'): number;
183
+ pagination(method: string, options?: any): JQuery;
184
+ pagination(options?: any): JQuery;
185
+ izoomify(options?: any): JQuery;
186
+ }
187
+
188
+ // NPM package doesn't have the 'queue' property in the type definition
189
+ interface JQueryTransitOptions {
190
+ queue?: boolean;
191
+ }
192
+
193
+ namespace Select2 {
194
+ interface Options<Result = DataFormat | GroupedDataFormat, RemoteResult = any> {
195
+ /**
196
+ * Extends Select2 v4 plugin by adding an option to set a placeholder for the 'search' input field
197
+ * [Custom Field]
198
+ * @default ''
199
+ */
200
+ searchInputPlaceholder?: string;
201
+
202
+ /**
203
+ * Extends select2 plugin by adding a custom css class for the 'search' input field
204
+ * [Custom Field]
205
+ * @default ''
206
+ */
207
+ searchInputCssClass?: string;
208
+ }
209
+ }
210
+
211
+ /**
212
+ * Translates a text to a target language using a translation provider.
213
+ * @param text Text to translate
214
+ * @param lang Target language
215
+ * @param provider Translation provider
216
+ */
217
+ function translate(text: string, lang: string, provider?: string | null): Promise<string>;
218
+
219
+ interface ConvertVideoArgs {
220
+ buffer: Uint8Array;
221
+ name: string;
222
+ }
223
+
224
+ /**
225
+ * Converts a video file to an animated WebP format using FFmpeg.
226
+ * @param args - The arguments for the conversion function.
227
+ */
228
+ function convertVideoToAnimatedWebp(args: ConvertVideoArgs): Promise<Uint8Array>;
229
+
230
+ type ColorPickerEvent = Omit<JQuery.ChangeEvent<HTMLElement>, "detail"> & {
231
+ detail: {
232
+ rgba: string;
233
+ }
234
+ };
235
+
236
+ type SwipeEvent = JQuery.TriggeredEvent<any, any, HTMLElement, HTMLElement>;
237
+ }
public/img/01ai.svg ADDED
public/img/No-Image-Placeholder.svg ADDED
public/img/ai21.svg ADDED
public/img/aimlapi.svg ADDED
public/img/aphrodite.svg ADDED
public/img/azure_openai.svg ADDED
public/img/blockentropy.svg ADDED
public/img/chutes.svg ADDED