llms-py 3.0.0b1__py3-none-any.whl → 3.0.0b3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- llms/__pycache__/__init__.cpython-312.pyc +0 -0
- llms/__pycache__/__init__.cpython-313.pyc +0 -0
- llms/__pycache__/__init__.cpython-314.pyc +0 -0
- llms/__pycache__/__main__.cpython-312.pyc +0 -0
- llms/__pycache__/__main__.cpython-314.pyc +0 -0
- llms/__pycache__/llms.cpython-312.pyc +0 -0
- llms/__pycache__/main.cpython-312.pyc +0 -0
- llms/__pycache__/main.cpython-313.pyc +0 -0
- llms/__pycache__/main.cpython-314.pyc +0 -0
- llms/__pycache__/plugins.cpython-314.pyc +0 -0
- llms/index.html +27 -57
- llms/llms.json +48 -15
- llms/main.py +923 -624
- llms/providers/__pycache__/anthropic.cpython-314.pyc +0 -0
- llms/providers/__pycache__/chutes.cpython-314.pyc +0 -0
- llms/providers/__pycache__/google.cpython-314.pyc +0 -0
- llms/providers/__pycache__/nvidia.cpython-314.pyc +0 -0
- llms/providers/__pycache__/openai.cpython-314.pyc +0 -0
- llms/providers/__pycache__/openrouter.cpython-314.pyc +0 -0
- llms/providers/anthropic.py +189 -0
- llms/providers/chutes.py +152 -0
- llms/providers/google.py +306 -0
- llms/providers/nvidia.py +107 -0
- llms/providers/openai.py +159 -0
- llms/providers/openrouter.py +70 -0
- llms/providers-extra.json +356 -0
- llms/providers.json +1 -1
- llms/ui/App.mjs +150 -57
- llms/ui/ai.mjs +84 -50
- llms/ui/app.css +1 -4963
- llms/ui/ctx.mjs +196 -0
- llms/ui/index.mjs +117 -0
- llms/ui/lib/charts.mjs +9 -13
- llms/ui/markdown.mjs +6 -0
- llms/ui/{Analytics.mjs → modules/analytics.mjs} +76 -64
- llms/ui/{Main.mjs → modules/chat/ChatBody.mjs} +91 -179
- llms/ui/{SettingsDialog.mjs → modules/chat/SettingsDialog.mjs} +8 -8
- llms/ui/{ChatPrompt.mjs → modules/chat/index.mjs} +281 -96
- llms/ui/modules/layout.mjs +267 -0
- llms/ui/modules/model-selector.mjs +851 -0
- llms/ui/{Recents.mjs → modules/threads/Recents.mjs} +10 -11
- llms/ui/{Sidebar.mjs → modules/threads/index.mjs} +48 -45
- llms/ui/{threadStore.mjs → modules/threads/threadStore.mjs} +21 -7
- llms/ui/tailwind.input.css +441 -79
- llms/ui/utils.mjs +83 -123
- {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b3.dist-info}/METADATA +1 -1
- llms_py-3.0.0b3.dist-info/RECORD +65 -0
- llms/ui/Avatar.mjs +0 -85
- llms/ui/Brand.mjs +0 -52
- llms/ui/ModelSelector.mjs +0 -693
- llms/ui/OAuthSignIn.mjs +0 -92
- llms/ui/ProviderIcon.mjs +0 -36
- llms/ui/ProviderStatus.mjs +0 -105
- llms/ui/SignIn.mjs +0 -64
- llms/ui/SystemPromptEditor.mjs +0 -31
- llms/ui/SystemPromptSelector.mjs +0 -56
- llms/ui/Welcome.mjs +0 -8
- llms/ui.json +0 -1069
- llms_py-3.0.0b1.dist-info/RECORD +0 -49
- {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b3.dist-info}/WHEEL +0 -0
- {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b3.dist-info}/entry_points.txt +0 -0
- {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b3.dist-info}/licenses/LICENSE +0 -0
- {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b3.dist-info}/top_level.txt +0 -0
llms/ui/tailwind.input.css
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* tailwindcss -i ./tailwind.input.css -o ./ui/app.css --watch */
|
|
2
2
|
@import "tailwindcss";
|
|
3
3
|
@source "./lib/servicestack-vue.mjs";
|
|
4
|
+
@source "../../extensions";
|
|
4
5
|
|
|
5
6
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
6
7
|
|
|
@@ -13,6 +14,7 @@
|
|
|
13
14
|
--ring: 221.2 83.2% 53.3%;
|
|
14
15
|
--radius: 0.5rem;
|
|
15
16
|
}
|
|
17
|
+
|
|
16
18
|
:root.dark {
|
|
17
19
|
--background: 222.2 84% 4.9%;
|
|
18
20
|
--foreground: 210 40% 98%;
|
|
@@ -37,17 +39,37 @@
|
|
|
37
39
|
@layer base {
|
|
38
40
|
|
|
39
41
|
/*vue*/
|
|
40
|
-
[v-cloak] {
|
|
42
|
+
[v-cloak] {
|
|
43
|
+
display: none
|
|
44
|
+
}
|
|
41
45
|
|
|
42
46
|
/* override element defaults */
|
|
43
|
-
b,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
47
|
+
b,
|
|
48
|
+
strong {
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
::-webkit-scrollbar {
|
|
53
|
+
width: 8px;
|
|
54
|
+
height: 8px
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
::-webkit-scrollbar-thumb {
|
|
58
|
+
background-color: #ccc
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.dark ::-webkit-scrollbar {
|
|
62
|
+
background: #1f2937
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.dark ::-webkit-scrollbar-thumb {
|
|
66
|
+
background-color: #4b5563
|
|
67
|
+
}
|
|
68
|
+
|
|
48
69
|
[role=dialog].z-10 {
|
|
49
70
|
z-index: 60;
|
|
50
71
|
}
|
|
72
|
+
|
|
51
73
|
em {
|
|
52
74
|
color: #3b82f6;
|
|
53
75
|
font-weight: 400;
|
|
@@ -58,18 +80,24 @@
|
|
|
58
80
|
margin-right: 0.125em;
|
|
59
81
|
font-style: normal;
|
|
60
82
|
}
|
|
83
|
+
|
|
61
84
|
.message em {
|
|
62
|
-
background-color: #eff6ff;
|
|
85
|
+
background-color: #eff6ff;
|
|
86
|
+
border: 1px solid #3b83f680;
|
|
87
|
+
border-radius: .25rem;
|
|
88
|
+
padding: .2rem .25rem .1rem .25rem
|
|
63
89
|
}
|
|
64
90
|
|
|
65
91
|
/* Chat-specific styles */
|
|
66
92
|
.prose {
|
|
67
93
|
max-width: none;
|
|
68
94
|
}
|
|
69
|
-
|
|
95
|
+
|
|
96
|
+
.prose>pre {
|
|
70
97
|
margin-top: 0;
|
|
71
98
|
margin-bottom: 0;
|
|
72
99
|
}
|
|
100
|
+
|
|
73
101
|
.prose pre {
|
|
74
102
|
background-color: #1f2937;
|
|
75
103
|
color: #f9fafb;
|
|
@@ -77,6 +105,7 @@
|
|
|
77
105
|
padding: 1rem;
|
|
78
106
|
overflow-x: auto;
|
|
79
107
|
}
|
|
108
|
+
|
|
80
109
|
.prose code {
|
|
81
110
|
background-color: #f3f4f6;
|
|
82
111
|
color: #1f2937;
|
|
@@ -84,62 +113,196 @@
|
|
|
84
113
|
border-radius: 0.25rem;
|
|
85
114
|
font-size: 0.875em;
|
|
86
115
|
}
|
|
116
|
+
|
|
87
117
|
.prose pre code {
|
|
88
118
|
background-color: transparent;
|
|
89
119
|
color: inherit;
|
|
90
120
|
padding: 0;
|
|
91
121
|
}
|
|
122
|
+
|
|
92
123
|
.prose blockquote {
|
|
93
124
|
border-left: 4px solid #e5e7eb;
|
|
94
125
|
padding-left: 1rem;
|
|
95
126
|
font-style: italic;
|
|
96
127
|
color: #6b7280;
|
|
97
128
|
}
|
|
129
|
+
|
|
98
130
|
.prose table {
|
|
99
131
|
border-collapse: collapse;
|
|
100
132
|
width: 100%;
|
|
101
133
|
}
|
|
134
|
+
|
|
102
135
|
.prose th,
|
|
103
136
|
.prose td {
|
|
104
137
|
border: 1px solid #e5e7eb;
|
|
105
138
|
padding: 0.5rem;
|
|
106
139
|
text-align: left;
|
|
107
140
|
}
|
|
141
|
+
|
|
108
142
|
.prose th {
|
|
109
143
|
background-color: #f9fafb;
|
|
110
144
|
font-weight: 600;
|
|
111
145
|
}
|
|
112
146
|
|
|
113
147
|
/* highlight.js - vs.css */
|
|
114
|
-
.hljs {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
.hljs-
|
|
120
|
-
.hljs-
|
|
121
|
-
.hljs-
|
|
122
|
-
|
|
123
|
-
|
|
148
|
+
.hljs {
|
|
149
|
+
background: white;
|
|
150
|
+
color: black
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.hljs-comment,
|
|
154
|
+
.hljs-quote,
|
|
155
|
+
.hljs-variable {
|
|
156
|
+
color: #008000
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.hljs-keyword,
|
|
160
|
+
.hljs-selector-tag,
|
|
161
|
+
.hljs-built_in,
|
|
162
|
+
.hljs-name,
|
|
163
|
+
.hljs-tag {
|
|
164
|
+
color: #00f
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.hljs-string,
|
|
168
|
+
.hljs-title,
|
|
169
|
+
.hljs-section,
|
|
170
|
+
.hljs-attribute,
|
|
171
|
+
.hljs-literal,
|
|
172
|
+
.hljs-template-tag,
|
|
173
|
+
.hljs-template-variable,
|
|
174
|
+
.hljs-type,
|
|
175
|
+
.hljs-addition {
|
|
176
|
+
color: #a31515
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.hljs-deletion,
|
|
180
|
+
.hljs-selector-attr,
|
|
181
|
+
.hljs-selector-pseudo,
|
|
182
|
+
.hljs-meta {
|
|
183
|
+
color: #2b91af
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.hljs-doctag {
|
|
187
|
+
color: #808080
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.hljs-attr {
|
|
191
|
+
color: #f00
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.hljs-symbol,
|
|
195
|
+
.hljs-bullet,
|
|
196
|
+
.hljs-link {
|
|
197
|
+
color: #00b0e8
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.hljs-emphasis {
|
|
201
|
+
font-style: italic
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.hljs-strong {
|
|
205
|
+
font-weight: bold
|
|
206
|
+
}
|
|
124
207
|
|
|
125
208
|
/* https://unpkg.com/@highlightjs/cdn-assets/styles/atom-one-dark.min.css */
|
|
126
|
-
pre code.hljs
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
.hljs
|
|
133
|
-
|
|
134
|
-
|
|
209
|
+
pre code.hljs {
|
|
210
|
+
display: block;
|
|
211
|
+
overflow-x: auto;
|
|
212
|
+
padding: 1em
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
code.hljs {
|
|
216
|
+
padding: 3px 5px
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.hljs {
|
|
220
|
+
color: #abb2bf;
|
|
221
|
+
background: #282c34
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.hljs-comment,
|
|
225
|
+
.hljs-quote {
|
|
226
|
+
color: #5c6370;
|
|
227
|
+
font-style: italic
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.hljs-doctag,
|
|
231
|
+
.hljs-formula,
|
|
232
|
+
.hljs-keyword {
|
|
233
|
+
color: #c678dd
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.hljs-deletion,
|
|
237
|
+
.hljs-name,
|
|
238
|
+
.hljs-section,
|
|
239
|
+
.hljs-selector-tag,
|
|
240
|
+
.hljs-subst,
|
|
241
|
+
.hljs-tag {
|
|
242
|
+
color: #e06c75
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.hljs-literal {
|
|
246
|
+
color: #56b6c2
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.hljs-addition,
|
|
250
|
+
.hljs-attribute,
|
|
251
|
+
.hljs-meta .hljs-string,
|
|
252
|
+
.hljs-regexp,
|
|
253
|
+
.hljs-string {
|
|
254
|
+
color: #98c379
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.hljs-attr,
|
|
258
|
+
.hljs-number,
|
|
259
|
+
.hljs-selector-attr,
|
|
260
|
+
.hljs-selector-class,
|
|
261
|
+
.hljs-selector-pseudo,
|
|
262
|
+
.hljs-template-variable,
|
|
263
|
+
.hljs-type,
|
|
264
|
+
.hljs-variable {
|
|
265
|
+
color: #d19a66
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.hljs-bullet,
|
|
269
|
+
.hljs-link,
|
|
270
|
+
.hljs-meta,
|
|
271
|
+
.hljs-selector-id,
|
|
272
|
+
.hljs-symbol,
|
|
273
|
+
.hljs-title {
|
|
274
|
+
color: #61aeee
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.hljs-built_in,
|
|
278
|
+
.hljs-class .hljs-title,
|
|
279
|
+
.hljs-title.class_ {
|
|
280
|
+
color: #e6c07b
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.hljs-emphasis {
|
|
284
|
+
font-style: italic
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.hljs-strong {
|
|
288
|
+
font-weight: 700
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.hljs-link {
|
|
292
|
+
text-decoration: underline
|
|
293
|
+
}
|
|
135
294
|
|
|
136
295
|
/*highlightjs*/
|
|
137
|
-
.hljs,
|
|
296
|
+
.hljs,
|
|
297
|
+
.prose :where(pre):not(:where([class~="not-prose"] *)) .hljs {
|
|
138
298
|
color: #e5e7eb !important;
|
|
139
299
|
background-color: #282c34 !important;
|
|
140
300
|
}
|
|
141
|
-
|
|
142
|
-
|
|
301
|
+
|
|
302
|
+
.hljs-comment,
|
|
303
|
+
.hljs-quote {
|
|
304
|
+
color: rgb(148 163 184);
|
|
305
|
+
/*text-slate-400*/
|
|
143
306
|
}
|
|
144
307
|
|
|
145
308
|
pre {
|
|
@@ -155,15 +318,18 @@
|
|
|
155
318
|
min-width: fit-content;
|
|
156
319
|
background-color: #282c34 !important;
|
|
157
320
|
}
|
|
321
|
+
|
|
158
322
|
pre code.hljs {
|
|
159
323
|
display: block;
|
|
160
324
|
overflow-x: auto;
|
|
161
325
|
padding: 1em;
|
|
162
326
|
}
|
|
327
|
+
|
|
163
328
|
.message pre {
|
|
164
329
|
max-width: 100%;
|
|
165
330
|
min-width: auto;
|
|
166
331
|
}
|
|
332
|
+
|
|
167
333
|
.message pre code.hljs {
|
|
168
334
|
overflow-x: unset;
|
|
169
335
|
width: 100%;
|
|
@@ -182,57 +348,250 @@
|
|
|
182
348
|
outline-offset: 2px;
|
|
183
349
|
box-shadow: 0 0 0 2px #3b82f6;
|
|
184
350
|
}
|
|
351
|
+
|
|
185
352
|
/* @tailwindcss/forms css */
|
|
186
|
-
[type='text'],
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
[type='
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
[type='
|
|
217
|
-
|
|
218
|
-
[type='
|
|
219
|
-
|
|
220
|
-
[type='
|
|
221
|
-
|
|
222
|
-
[type='
|
|
223
|
-
|
|
224
|
-
[
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
[type='
|
|
231
|
-
[type='
|
|
232
|
-
[type='
|
|
353
|
+
[type='text'],
|
|
354
|
+
[type='email'],
|
|
355
|
+
[type='url'],
|
|
356
|
+
[type='password'],
|
|
357
|
+
[type='number'],
|
|
358
|
+
[type='date'],
|
|
359
|
+
[type='datetime-local'],
|
|
360
|
+
[type='month'],
|
|
361
|
+
[type='week'],
|
|
362
|
+
[type='search'],
|
|
363
|
+
[type='tel'],
|
|
364
|
+
[type='time'],
|
|
365
|
+
[type='color'],
|
|
366
|
+
[multiple],
|
|
367
|
+
textarea,
|
|
368
|
+
select {
|
|
369
|
+
-webkit-appearance: none;
|
|
370
|
+
-moz-appearance: none;
|
|
371
|
+
appearance: none;
|
|
372
|
+
background-color: #fff;
|
|
373
|
+
border-width: 1px;
|
|
374
|
+
padding: 0.5rem 0.75rem;
|
|
375
|
+
font-size: 1rem
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.dark [type='text'],
|
|
379
|
+
.dark [type='email'],
|
|
380
|
+
.dark [type='url'],
|
|
381
|
+
.dark [type='password'],
|
|
382
|
+
.dark [type='number'],
|
|
383
|
+
.dark [type='date'],
|
|
384
|
+
.dark [type='datetime-local'],
|
|
385
|
+
.dark [type='month'],
|
|
386
|
+
.dark [type='week'],
|
|
387
|
+
.dark [type='search'],
|
|
388
|
+
.dark [type='tel'],
|
|
389
|
+
.dark [type='time'],
|
|
390
|
+
.dark [type='color'],
|
|
391
|
+
.dark [multiple],
|
|
392
|
+
.dark textarea,
|
|
393
|
+
.dark select {
|
|
394
|
+
background-color: var(--color-gray-800)
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
[type='text']:focus,
|
|
398
|
+
[type='email']:focus,
|
|
399
|
+
[type='url']:focus,
|
|
400
|
+
[type='password']:focus,
|
|
401
|
+
[type='number']:focus,
|
|
402
|
+
[type='date']:focus,
|
|
403
|
+
[type='datetime-local']:focus,
|
|
404
|
+
[type='month']:focus,
|
|
405
|
+
[type='week']:focus,
|
|
406
|
+
[type='search']:focus,
|
|
407
|
+
[type='tel']:focus,
|
|
408
|
+
[type='time']:focus,
|
|
409
|
+
[type='color']:focus,
|
|
410
|
+
[multiple]:focus,
|
|
411
|
+
textarea:focus,
|
|
412
|
+
select:focus {
|
|
413
|
+
outline: 2px solid transparent;
|
|
414
|
+
outline-offset: 2px;
|
|
415
|
+
--tw-ring-inset: var(--tw-empty,
|
|
416
|
+
/*!*/
|
|
417
|
+
/*!*/
|
|
418
|
+
);
|
|
419
|
+
--tw-ring-offset-width: 0px;
|
|
420
|
+
--tw-ring-offset-color: #fff;
|
|
421
|
+
--tw-ring-color: #2563eb;
|
|
422
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
423
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
424
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
425
|
+
border-color: #2563eb;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
input::-moz-placeholder,
|
|
429
|
+
textarea::-moz-placeholder {
|
|
430
|
+
color: #6b7280;
|
|
431
|
+
opacity: 1
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
input:-ms-input-placeholder,
|
|
435
|
+
textarea:-ms-input-placeholder {
|
|
436
|
+
color: #6b7280;
|
|
437
|
+
opacity: 1
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
input::placeholder,
|
|
441
|
+
textarea::placeholder {
|
|
442
|
+
color: #6b7280;
|
|
443
|
+
opacity: 1
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
select {
|
|
447
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
|
448
|
+
background-position: right 0.5rem center;
|
|
449
|
+
background-repeat: no-repeat;
|
|
450
|
+
background-size: 1.5em 1.5em;
|
|
451
|
+
padding-right: 2.5rem;
|
|
452
|
+
-webkit-print-color-adjust: exact;
|
|
453
|
+
color-adjust: exact
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
[multiple] {
|
|
457
|
+
background-image: initial;
|
|
458
|
+
background-position: initial;
|
|
459
|
+
background-repeat: unset;
|
|
460
|
+
background-size: initial;
|
|
461
|
+
padding-right: 0.75rem;
|
|
462
|
+
-webkit-print-color-adjust: unset;
|
|
463
|
+
color-adjust: unset;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
[type='checkbox'],
|
|
467
|
+
[type='radio'] {
|
|
468
|
+
-webkit-appearance: none;
|
|
469
|
+
-moz-appearance: none;
|
|
470
|
+
appearance: none;
|
|
471
|
+
padding: 0;
|
|
472
|
+
-webkit-print-color-adjust: exact;
|
|
473
|
+
color-adjust: exact;
|
|
474
|
+
display: inline-block;
|
|
475
|
+
vertical-align: middle;
|
|
476
|
+
background-origin: border-box;
|
|
477
|
+
-webkit-user-select: none;
|
|
478
|
+
-moz-user-select: none;
|
|
479
|
+
-ms-user-select: none;
|
|
480
|
+
user-select: none;
|
|
481
|
+
flex-shrink: 0;
|
|
482
|
+
height: 1rem;
|
|
483
|
+
width: 1rem;
|
|
484
|
+
color: #2563eb;
|
|
485
|
+
background-color: #fff;
|
|
486
|
+
border-width: 1px
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
[type='radio'] {
|
|
490
|
+
border-radius: 100%
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
[type='checkbox']:focus,
|
|
494
|
+
[type='radio']:focus {
|
|
495
|
+
outline: 2px solid transparent;
|
|
496
|
+
outline-offset: 2px;
|
|
497
|
+
--tw-ring-inset: var(--tw-empty,
|
|
498
|
+
/*!*/
|
|
499
|
+
/*!*/
|
|
500
|
+
);
|
|
501
|
+
--tw-ring-offset-width: 2px;
|
|
502
|
+
--tw-ring-offset-color: #fff;
|
|
503
|
+
--tw-ring-color: #2563eb;
|
|
504
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
505
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
506
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
[type='checkbox']:checked,
|
|
510
|
+
[type='radio']:checked {
|
|
511
|
+
border-color: transparent;
|
|
512
|
+
background-color: currentColor;
|
|
513
|
+
background-size: 100% 100%;
|
|
514
|
+
background-position: center;
|
|
515
|
+
background-repeat: no-repeat
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
[type='checkbox']:checked {
|
|
519
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
[type='radio']:checked {
|
|
523
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
[type='checkbox']:checked:hover,
|
|
527
|
+
[type='checkbox']:checked:focus,
|
|
528
|
+
[type='radio']:checked:hover,
|
|
529
|
+
[type='radio']:checked:focus {
|
|
530
|
+
border-color: transparent;
|
|
531
|
+
background-color: currentColor
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
[type='checkbox']:indeterminate {
|
|
535
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
|
536
|
+
border-color: transparent;
|
|
537
|
+
background-color: currentColor;
|
|
538
|
+
background-size: 100% 100%;
|
|
539
|
+
background-position: center;
|
|
540
|
+
background-repeat: no-repeat
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
[type='checkbox']:indeterminate:hover,
|
|
544
|
+
[type='checkbox']:indeterminate:focus {
|
|
545
|
+
border-color: transparent;
|
|
546
|
+
background-color: currentColor
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
[type='file'] {
|
|
550
|
+
background: unset;
|
|
551
|
+
border-color: inherit;
|
|
552
|
+
border-width: 0;
|
|
553
|
+
border-radius: 0;
|
|
554
|
+
padding: 0;
|
|
555
|
+
font-size: unset;
|
|
556
|
+
line-height: inherit
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
[type='file']:focus {
|
|
560
|
+
outline: 1px auto -webkit-focus-ring-color;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
[type='color'] {
|
|
564
|
+
height: 2.4rem;
|
|
565
|
+
padding: 2px 3px
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
[type='range'] {
|
|
569
|
+
height: 2.4rem
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
[type='button'],
|
|
573
|
+
button[type='submit'] {
|
|
574
|
+
cursor: pointer
|
|
575
|
+
}
|
|
233
576
|
|
|
234
577
|
@media (min-width: 640px) {
|
|
235
|
-
|
|
578
|
+
|
|
579
|
+
[type='text'],
|
|
580
|
+
[type='email'],
|
|
581
|
+
[type='url'],
|
|
582
|
+
[type='password'],
|
|
583
|
+
[type='number'],
|
|
584
|
+
[type='date'],
|
|
585
|
+
[type='datetime-local'],
|
|
586
|
+
[type='month'],
|
|
587
|
+
[type='week'],
|
|
588
|
+
[type='search'],
|
|
589
|
+
[type='tel'],
|
|
590
|
+
[type='time'],
|
|
591
|
+
[type='color'],
|
|
592
|
+
[multiple],
|
|
593
|
+
textarea,
|
|
594
|
+
select {
|
|
236
595
|
font-size: .875rem;
|
|
237
596
|
line-height: 1.25rem;
|
|
238
597
|
}
|
|
@@ -246,6 +605,7 @@
|
|
|
246
605
|
transition: background-color 5000s ease-in-out 0s;
|
|
247
606
|
-webkit-text-fill-color: #ffffff;
|
|
248
607
|
}
|
|
608
|
+
|
|
249
609
|
.dark input[data-autocompleted] {
|
|
250
610
|
background-color: transparent !important;
|
|
251
611
|
}
|
|
@@ -254,12 +614,14 @@
|
|
|
254
614
|
.aspect-h-9 {
|
|
255
615
|
--tw-aspect-h: 9;
|
|
256
616
|
}
|
|
617
|
+
|
|
257
618
|
.aspect-w-16 {
|
|
258
619
|
position: relative;
|
|
259
620
|
padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
|
|
260
621
|
--tw-aspect-w: 16;
|
|
261
622
|
}
|
|
262
|
-
|
|
623
|
+
|
|
624
|
+
.aspect-w-16>* {
|
|
263
625
|
position: absolute;
|
|
264
626
|
height: 100%;
|
|
265
627
|
width: 100%;
|