catabler 1.0.0.pre.beta15.1 → 1.0.0.pre.beta20.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +34 -0
- data/app/assets/javascript/tabler.esm.js +2276 -3120
- data/app/assets/javascript/tabler.esm.min.js +8 -8
- data/app/assets/javascript/tabler.js +2276 -3120
- data/app/assets/javascript/tabler.min.js +8 -8
- data/app/assets/stylesheets/tabler-flags.css +1084 -0
- data/app/assets/stylesheets/tabler-flags.min.css +9 -0
- data/app/assets/stylesheets/tabler-flags.rtl.css +1084 -0
- data/app/assets/stylesheets/tabler-flags.rtl.min.css +9 -0
- data/app/assets/stylesheets/tabler-payments.css +528 -0
- data/app/assets/stylesheets/tabler-payments.min.css +9 -0
- data/app/assets/stylesheets/tabler-payments.rtl.css +528 -0
- data/app/assets/stylesheets/tabler-payments.rtl.min.css +9 -0
- data/app/assets/stylesheets/tabler-social.css +10 -0
- data/app/assets/stylesheets/tabler-social.min.css +8 -0
- data/app/assets/stylesheets/tabler-social.rtl.css +10 -0
- data/app/assets/stylesheets/tabler-social.rtl.min.css +8 -0
- data/app/assets/stylesheets/tabler-vendors.css +1504 -0
- data/app/assets/stylesheets/tabler-vendors.min.css +9 -0
- data/app/assets/stylesheets/tabler-vendors.rtl.css +1504 -0
- data/app/assets/stylesheets/tabler-vendors.rtl.min.css +9 -0
- data/app/assets/stylesheets/tabler.css +6964 -3571
- data/app/assets/stylesheets/tabler.min.css +9 -10
- data/app/assets/stylesheets/tabler.rtl.css +25777 -0
- data/app/assets/stylesheets/tabler.rtl.min.css +13 -0
- data/lib/catabler/version.rb +1 -1
- metadata +22 -4
@@ -0,0 +1,1504 @@
|
|
1
|
+
/*!
|
2
|
+
* Tabler v1.0.0-beta20 (https://tabler.io)
|
3
|
+
* @version 1.0.0-beta20
|
4
|
+
* @link https://tabler.io
|
5
|
+
* Copyright 2018-2023 The Tabler Authors
|
6
|
+
* Copyright 2018-2023 codecalm.net Paweł Kuna
|
7
|
+
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
|
8
|
+
*/
|
9
|
+
/* prettier-ignore */
|
10
|
+
/* prettier-ignore */
|
11
|
+
/* Functional styling;
|
12
|
+
* These styles are required for noUiSlider to function.
|
13
|
+
* You don't need to change these rules to apply your design.
|
14
|
+
*/
|
15
|
+
.noUi-target,
|
16
|
+
.noUi-target * {
|
17
|
+
-webkit-touch-callout: none;
|
18
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
19
|
+
-webkit-user-select: none;
|
20
|
+
touch-action: none;
|
21
|
+
-ms-user-select: none;
|
22
|
+
-moz-user-select: none;
|
23
|
+
user-select: none;
|
24
|
+
box-sizing: border-box;
|
25
|
+
}
|
26
|
+
|
27
|
+
.noUi-target {
|
28
|
+
position: relative;
|
29
|
+
}
|
30
|
+
|
31
|
+
.noUi-base,
|
32
|
+
.noUi-connects {
|
33
|
+
width: 100%;
|
34
|
+
height: 100%;
|
35
|
+
position: relative;
|
36
|
+
z-index: 1;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Wrapper for all connect elements.
|
40
|
+
*/
|
41
|
+
.noUi-connects {
|
42
|
+
overflow: hidden;
|
43
|
+
z-index: 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
.noUi-connect,
|
47
|
+
.noUi-origin {
|
48
|
+
will-change: transform;
|
49
|
+
position: absolute;
|
50
|
+
z-index: 1;
|
51
|
+
top: 0;
|
52
|
+
left: 0;
|
53
|
+
height: 100%;
|
54
|
+
width: 100%;
|
55
|
+
-ms-transform-origin: 100% 0;
|
56
|
+
-webkit-transform-origin: 100% 0;
|
57
|
+
-webkit-transform-style: preserve-3d;
|
58
|
+
transform-origin: 100% 0;
|
59
|
+
transform-style: flat;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Offset direction
|
63
|
+
*/
|
64
|
+
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
|
65
|
+
right: 0;
|
66
|
+
left: auto;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Give origins 0 height/width so they don't interfere with clicking the
|
70
|
+
* connect elements.
|
71
|
+
*/
|
72
|
+
.noUi-vertical .noUi-origin {
|
73
|
+
top: -100%;
|
74
|
+
width: 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
.noUi-horizontal .noUi-origin {
|
78
|
+
height: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
.noUi-handle {
|
82
|
+
-webkit-backface-visibility: hidden;
|
83
|
+
backface-visibility: hidden;
|
84
|
+
position: absolute;
|
85
|
+
}
|
86
|
+
|
87
|
+
.noUi-touch-area {
|
88
|
+
height: 100%;
|
89
|
+
width: 100%;
|
90
|
+
}
|
91
|
+
|
92
|
+
.noUi-state-tap .noUi-connect,
|
93
|
+
.noUi-state-tap .noUi-origin {
|
94
|
+
transition: transform 0.3s;
|
95
|
+
}
|
96
|
+
|
97
|
+
.noUi-state-drag * {
|
98
|
+
cursor: inherit !important;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* Slider size and handle placement;
|
102
|
+
*/
|
103
|
+
.noUi-horizontal {
|
104
|
+
height: 18px;
|
105
|
+
}
|
106
|
+
|
107
|
+
.noUi-horizontal .noUi-handle {
|
108
|
+
width: 34px;
|
109
|
+
height: 28px;
|
110
|
+
left: -17px;
|
111
|
+
top: -6px;
|
112
|
+
}
|
113
|
+
|
114
|
+
.noUi-vertical {
|
115
|
+
width: 18px;
|
116
|
+
}
|
117
|
+
|
118
|
+
.noUi-vertical .noUi-handle {
|
119
|
+
width: 28px;
|
120
|
+
height: 34px;
|
121
|
+
left: -6px;
|
122
|
+
bottom: -17px;
|
123
|
+
}
|
124
|
+
|
125
|
+
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
|
126
|
+
right: -17px;
|
127
|
+
left: auto;
|
128
|
+
}
|
129
|
+
|
130
|
+
/* Styling;
|
131
|
+
* Giving the connect element a border radius causes issues with using transform: scale
|
132
|
+
*/
|
133
|
+
.noUi-target {
|
134
|
+
background: #FAFAFA;
|
135
|
+
border-radius: 4px;
|
136
|
+
border: 1px solid #D3D3D3;
|
137
|
+
box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
|
138
|
+
}
|
139
|
+
|
140
|
+
.noUi-connects {
|
141
|
+
border-radius: 3px;
|
142
|
+
}
|
143
|
+
|
144
|
+
.noUi-connect {
|
145
|
+
background: #3FB8AF;
|
146
|
+
}
|
147
|
+
|
148
|
+
/* Handles and cursors;
|
149
|
+
*/
|
150
|
+
.noUi-draggable {
|
151
|
+
cursor: ew-resize;
|
152
|
+
}
|
153
|
+
|
154
|
+
.noUi-vertical .noUi-draggable {
|
155
|
+
cursor: ns-resize;
|
156
|
+
}
|
157
|
+
|
158
|
+
.noUi-handle {
|
159
|
+
border: 1px solid #D9D9D9;
|
160
|
+
border-radius: 3px;
|
161
|
+
background: #FFF;
|
162
|
+
cursor: default;
|
163
|
+
box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
|
164
|
+
}
|
165
|
+
|
166
|
+
.noUi-active {
|
167
|
+
box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
|
168
|
+
}
|
169
|
+
|
170
|
+
/* Handle stripes;
|
171
|
+
*/
|
172
|
+
.noUi-handle:before,
|
173
|
+
.noUi-handle:after {
|
174
|
+
content: "";
|
175
|
+
display: block;
|
176
|
+
position: absolute;
|
177
|
+
height: 14px;
|
178
|
+
width: 1px;
|
179
|
+
background: #E8E7E6;
|
180
|
+
right: 14px;
|
181
|
+
top: 6px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.noUi-handle:after {
|
185
|
+
right: 17px;
|
186
|
+
}
|
187
|
+
|
188
|
+
.noUi-vertical .noUi-handle:before,
|
189
|
+
.noUi-vertical .noUi-handle:after {
|
190
|
+
width: 14px;
|
191
|
+
height: 1px;
|
192
|
+
right: 6px;
|
193
|
+
top: 14px;
|
194
|
+
}
|
195
|
+
|
196
|
+
.noUi-vertical .noUi-handle:after {
|
197
|
+
top: 17px;
|
198
|
+
}
|
199
|
+
|
200
|
+
/* Disabled state;
|
201
|
+
*/
|
202
|
+
[disabled] .noUi-connect {
|
203
|
+
background: #B8B8B8;
|
204
|
+
}
|
205
|
+
|
206
|
+
[disabled].noUi-target,
|
207
|
+
[disabled].noUi-handle,
|
208
|
+
[disabled] .noUi-handle {
|
209
|
+
cursor: not-allowed;
|
210
|
+
}
|
211
|
+
|
212
|
+
/* Base;
|
213
|
+
*
|
214
|
+
*/
|
215
|
+
.noUi-pips,
|
216
|
+
.noUi-pips * {
|
217
|
+
box-sizing: border-box;
|
218
|
+
}
|
219
|
+
|
220
|
+
.noUi-pips {
|
221
|
+
position: absolute;
|
222
|
+
color: #999;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Values;
|
226
|
+
*
|
227
|
+
*/
|
228
|
+
.noUi-value {
|
229
|
+
position: absolute;
|
230
|
+
white-space: nowrap;
|
231
|
+
text-align: center;
|
232
|
+
}
|
233
|
+
|
234
|
+
.noUi-value-sub {
|
235
|
+
color: #ccc;
|
236
|
+
font-size: 10px;
|
237
|
+
}
|
238
|
+
|
239
|
+
/* Markings;
|
240
|
+
*
|
241
|
+
*/
|
242
|
+
.noUi-marker {
|
243
|
+
position: absolute;
|
244
|
+
background: #CCC;
|
245
|
+
}
|
246
|
+
|
247
|
+
.noUi-marker-sub {
|
248
|
+
background: #AAA;
|
249
|
+
}
|
250
|
+
|
251
|
+
.noUi-marker-large {
|
252
|
+
background: #AAA;
|
253
|
+
}
|
254
|
+
|
255
|
+
/* Horizontal layout;
|
256
|
+
*
|
257
|
+
*/
|
258
|
+
.noUi-pips-horizontal {
|
259
|
+
padding: 10px 0;
|
260
|
+
height: 80px;
|
261
|
+
top: 100%;
|
262
|
+
right: 0;
|
263
|
+
width: 100%;
|
264
|
+
}
|
265
|
+
|
266
|
+
.noUi-value-horizontal {
|
267
|
+
transform: translate(50%, 50%);
|
268
|
+
}
|
269
|
+
|
270
|
+
.noUi-rtl .noUi-value-horizontal {
|
271
|
+
transform: translate(-50%, 50%);
|
272
|
+
}
|
273
|
+
|
274
|
+
.noUi-marker-horizontal.noUi-marker {
|
275
|
+
margin-right: -1px;
|
276
|
+
width: 2px;
|
277
|
+
height: 5px;
|
278
|
+
}
|
279
|
+
|
280
|
+
.noUi-marker-horizontal.noUi-marker-sub {
|
281
|
+
height: 10px;
|
282
|
+
}
|
283
|
+
|
284
|
+
.noUi-marker-horizontal.noUi-marker-large {
|
285
|
+
height: 15px;
|
286
|
+
}
|
287
|
+
|
288
|
+
/* Vertical layout;
|
289
|
+
*
|
290
|
+
*/
|
291
|
+
.noUi-pips-vertical {
|
292
|
+
padding: 0 10px;
|
293
|
+
height: 100%;
|
294
|
+
top: 0;
|
295
|
+
right: 100%;
|
296
|
+
}
|
297
|
+
|
298
|
+
.noUi-value-vertical {
|
299
|
+
transform: translate(0, -50%);
|
300
|
+
padding-right: 25px;
|
301
|
+
}
|
302
|
+
|
303
|
+
.noUi-rtl .noUi-value-vertical {
|
304
|
+
transform: translate(0, 50%);
|
305
|
+
}
|
306
|
+
|
307
|
+
.noUi-marker-vertical.noUi-marker {
|
308
|
+
width: 5px;
|
309
|
+
height: 2px;
|
310
|
+
margin-top: -1px;
|
311
|
+
}
|
312
|
+
|
313
|
+
.noUi-marker-vertical.noUi-marker-sub {
|
314
|
+
width: 10px;
|
315
|
+
}
|
316
|
+
|
317
|
+
.noUi-marker-vertical.noUi-marker-large {
|
318
|
+
width: 15px;
|
319
|
+
}
|
320
|
+
|
321
|
+
.noUi-tooltip {
|
322
|
+
display: block;
|
323
|
+
position: absolute;
|
324
|
+
border: 1px solid #D9D9D9;
|
325
|
+
border-radius: 3px;
|
326
|
+
background: #fff;
|
327
|
+
color: #000;
|
328
|
+
padding: 5px;
|
329
|
+
text-align: center;
|
330
|
+
white-space: nowrap;
|
331
|
+
}
|
332
|
+
|
333
|
+
.noUi-horizontal .noUi-tooltip {
|
334
|
+
transform: translate(50%, 0);
|
335
|
+
right: 50%;
|
336
|
+
bottom: 120%;
|
337
|
+
}
|
338
|
+
|
339
|
+
.noUi-vertical .noUi-tooltip {
|
340
|
+
transform: translate(0, -50%);
|
341
|
+
top: 50%;
|
342
|
+
left: 120%;
|
343
|
+
}
|
344
|
+
|
345
|
+
.noUi-horizontal .noUi-origin > .noUi-tooltip {
|
346
|
+
transform: translate(-50%, 0);
|
347
|
+
right: auto;
|
348
|
+
bottom: 10px;
|
349
|
+
}
|
350
|
+
|
351
|
+
.noUi-vertical .noUi-origin > .noUi-tooltip {
|
352
|
+
transform: translate(0, -18px);
|
353
|
+
top: auto;
|
354
|
+
left: 28px;
|
355
|
+
}
|
356
|
+
|
357
|
+
.noUi-target {
|
358
|
+
border: 0;
|
359
|
+
box-shadow: none;
|
360
|
+
background: none;
|
361
|
+
border-radius: 0;
|
362
|
+
color: var(--tblr-primary);
|
363
|
+
}
|
364
|
+
|
365
|
+
.noUi-horizontal {
|
366
|
+
height: 1.25rem;
|
367
|
+
padding: 0.5rem 0;
|
368
|
+
}
|
369
|
+
|
370
|
+
.noUi-base {
|
371
|
+
background: var(--tblr-border-color);
|
372
|
+
border-radius: 1rem;
|
373
|
+
}
|
374
|
+
|
375
|
+
.noUi-handle {
|
376
|
+
width: 1rem;
|
377
|
+
height: 1rem;
|
378
|
+
border: 2px var(--tblr-border-style) #ffffff;
|
379
|
+
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
|
380
|
+
border-radius: 1rem;
|
381
|
+
background: currentColor;
|
382
|
+
outline: 0;
|
383
|
+
}
|
384
|
+
.noUi-handle:before, .noUi-handle:after {
|
385
|
+
content: none;
|
386
|
+
}
|
387
|
+
.noUi-horizontal .noUi-handle {
|
388
|
+
width: 1rem;
|
389
|
+
height: 1rem;
|
390
|
+
top: -0.5rem;
|
391
|
+
left: -0.5rem;
|
392
|
+
margin: 1px 0 0 1px;
|
393
|
+
}
|
394
|
+
.noUi-handle.noUi-active, .noUi-handle:focus {
|
395
|
+
box-shadow: 0 0 0 1px #f6f8fb, 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
396
|
+
}
|
397
|
+
|
398
|
+
.noUi-connect {
|
399
|
+
background: currentColor;
|
400
|
+
}
|
401
|
+
|
402
|
+
.litepicker {
|
403
|
+
--litepicker-month-weekday-color: var(--tblr-secondary);
|
404
|
+
--litepicker-button-prev-month-color: var(--tblr-secondary);
|
405
|
+
--litepicker-button-next-month-color: var(--tblr-secondary);
|
406
|
+
--litepicker-button-prev-month-color-hover: var(--tblr-primary);
|
407
|
+
--litepicker-button-next-month-color-hover: var(--tblr-primary);
|
408
|
+
--litepicker-day-color: var(--tblr-body-color);
|
409
|
+
--litepicker-day-color-hover: var(--tblr-primary);
|
410
|
+
--litepicker-is-end-color-bg: var(--tblr-primary);
|
411
|
+
--litepicker-is-today-color: var(--tblr-primary);
|
412
|
+
--litepicker-month-header-color: var(--tblr-body-color);
|
413
|
+
--litepicker-container-months-color-bg: var(--tblr-bg-surface);
|
414
|
+
font: inherit;
|
415
|
+
-webkit-user-select: none;
|
416
|
+
-moz-user-select: none;
|
417
|
+
-ms-user-select: none;
|
418
|
+
user-select: none;
|
419
|
+
}
|
420
|
+
.litepicker svg {
|
421
|
+
fill: none !important;
|
422
|
+
}
|
423
|
+
.litepicker .container__main {
|
424
|
+
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
425
|
+
border-radius: var(--tblr-border-radius);
|
426
|
+
box-shadow: none;
|
427
|
+
}
|
428
|
+
.litepicker .container__months .month-item-name,
|
429
|
+
.litepicker .container__months .month-item-year {
|
430
|
+
font-weight: var(--tblr-font-weight-medium) !important;
|
431
|
+
}
|
432
|
+
.litepicker .container__months .button-next-month,
|
433
|
+
.litepicker .container__months .button-prev-month {
|
434
|
+
cursor: pointer !important;
|
435
|
+
}
|
436
|
+
.litepicker .container__months .month-item-weekdays-row > div {
|
437
|
+
padding: 0.5rem 0 !important;
|
438
|
+
font-size: 0.75rem;
|
439
|
+
}
|
440
|
+
.litepicker .container__days .day-item {
|
441
|
+
cursor: pointer !important;
|
442
|
+
padding: 0.5rem 0 !important;
|
443
|
+
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
|
444
|
+
}
|
445
|
+
@media (prefers-reduced-motion: reduce) {
|
446
|
+
.litepicker .container__days .day-item {
|
447
|
+
transition: none;
|
448
|
+
}
|
449
|
+
}
|
450
|
+
.datepicker-inline .litepicker {
|
451
|
+
box-shadow: var(--tblr-box-shadow-input);
|
452
|
+
}
|
453
|
+
.datepicker-inline .litepicker .container__months {
|
454
|
+
box-shadow: none;
|
455
|
+
background-color: var(--tblr-bg-forms);
|
456
|
+
}
|
457
|
+
|
458
|
+
/**
|
459
|
+
* Tom Select bootstrap 5
|
460
|
+
*/
|
461
|
+
/**
|
462
|
+
* tom-select.css (v//@@version)
|
463
|
+
* Copyright (c) contributors
|
464
|
+
*
|
465
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
466
|
+
* file except in compliance with the License. You may obtain a copy of the License at:
|
467
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
468
|
+
*
|
469
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
470
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
471
|
+
* ANY KIND, either express or implied. See the License for the specific language
|
472
|
+
* governing permissions and limitations under the License.
|
473
|
+
*
|
474
|
+
*/
|
475
|
+
:root {
|
476
|
+
--ts-pr-clear-button: 0;
|
477
|
+
--ts-pr-caret: 0;
|
478
|
+
--ts-pr-min: .75rem;
|
479
|
+
}
|
480
|
+
|
481
|
+
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
|
482
|
+
cursor: pointer;
|
483
|
+
}
|
484
|
+
|
485
|
+
.ts-control {
|
486
|
+
padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
.ts-wrapper.plugin-drag_drop.multi > .ts-control > div.ui-sortable-placeholder {
|
490
|
+
visibility: visible !important;
|
491
|
+
background: #f2f2f2 !important;
|
492
|
+
background: rgba(0, 0, 0, 0.06) !important;
|
493
|
+
border: 0 none !important;
|
494
|
+
box-shadow: inset 0 0 12px 4px #fff;
|
495
|
+
}
|
496
|
+
.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder::after {
|
497
|
+
content: "!";
|
498
|
+
visibility: hidden;
|
499
|
+
}
|
500
|
+
.ts-wrapper.plugin-drag_drop .ui-sortable-helper {
|
501
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
502
|
+
}
|
503
|
+
|
504
|
+
.plugin-checkbox_options .option input {
|
505
|
+
margin-left: 0.5rem;
|
506
|
+
}
|
507
|
+
|
508
|
+
.plugin-clear_button {
|
509
|
+
--ts-pr-clear-button: 1em;
|
510
|
+
}
|
511
|
+
.plugin-clear_button .clear-button {
|
512
|
+
opacity: 0;
|
513
|
+
position: absolute;
|
514
|
+
top: 50%;
|
515
|
+
transform: translateY(-50%);
|
516
|
+
left: calc(0.75rem - 5px);
|
517
|
+
margin-left: 0 !important;
|
518
|
+
background: transparent !important;
|
519
|
+
transition: opacity 0.5s;
|
520
|
+
cursor: pointer;
|
521
|
+
}
|
522
|
+
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
|
523
|
+
left: max( var(--ts-pr-caret), 0.75rem);
|
524
|
+
}
|
525
|
+
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
|
526
|
+
opacity: 1;
|
527
|
+
}
|
528
|
+
|
529
|
+
.ts-wrapper .dropdown-header {
|
530
|
+
position: relative;
|
531
|
+
padding: 6px 0.75rem;
|
532
|
+
border-bottom: 1px solid #d0d0d0;
|
533
|
+
background: #f8f8f8;
|
534
|
+
border-radius: var(--tblr-border-radius) var(--tblr-border-radius) 0 0;
|
535
|
+
}
|
536
|
+
.ts-wrapper .dropdown-header-close {
|
537
|
+
position: absolute;
|
538
|
+
left: 0.75rem;
|
539
|
+
top: 50%;
|
540
|
+
color: #182433;
|
541
|
+
opacity: 0.4;
|
542
|
+
margin-top: -12px;
|
543
|
+
line-height: 20px;
|
544
|
+
font-size: 20px !important;
|
545
|
+
}
|
546
|
+
.ts-wrapper .dropdown-header-close:hover {
|
547
|
+
color: black;
|
548
|
+
}
|
549
|
+
|
550
|
+
.plugin-dropdown_input.focus.dropdown-active .ts-control {
|
551
|
+
box-shadow: none;
|
552
|
+
border: 1px solid var(--tblr-border-color);
|
553
|
+
box-shadow: var(--tblr-box-shadow-input);
|
554
|
+
}
|
555
|
+
.plugin-dropdown_input .dropdown-input {
|
556
|
+
border: 1px solid #d0d0d0;
|
557
|
+
border-width: 0 0 1px 0;
|
558
|
+
display: block;
|
559
|
+
padding: 0.5625rem 0.75rem;
|
560
|
+
box-shadow: none;
|
561
|
+
width: 100%;
|
562
|
+
background: transparent;
|
563
|
+
}
|
564
|
+
.plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
|
565
|
+
border-color: #80aad3;
|
566
|
+
outline: 0;
|
567
|
+
box-shadow: var(--tblr-box-shadow-input), 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
568
|
+
}
|
569
|
+
.plugin-dropdown_input .items-placeholder {
|
570
|
+
border: 0 none !important;
|
571
|
+
box-shadow: none !important;
|
572
|
+
width: 100%;
|
573
|
+
}
|
574
|
+
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
|
575
|
+
display: none !important;
|
576
|
+
}
|
577
|
+
|
578
|
+
.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
|
579
|
+
min-width: 0;
|
580
|
+
}
|
581
|
+
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
|
582
|
+
flex: none;
|
583
|
+
min-width: 4px;
|
584
|
+
}
|
585
|
+
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-webkit-input-placeholder {
|
586
|
+
color: transparent;
|
587
|
+
}
|
588
|
+
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input:-ms-input-placeholder {
|
589
|
+
color: transparent;
|
590
|
+
}
|
591
|
+
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
|
592
|
+
color: transparent;
|
593
|
+
}
|
594
|
+
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
|
595
|
+
color: transparent;
|
596
|
+
}
|
597
|
+
|
598
|
+
.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
|
599
|
+
display: flex;
|
600
|
+
}
|
601
|
+
.ts-dropdown.plugin-optgroup_columns .optgroup {
|
602
|
+
border-left: 1px solid #f2f2f2;
|
603
|
+
border-top: 0 none;
|
604
|
+
flex-grow: 1;
|
605
|
+
flex-basis: 0;
|
606
|
+
min-width: 0;
|
607
|
+
}
|
608
|
+
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
|
609
|
+
border-left: 0 none;
|
610
|
+
}
|
611
|
+
.ts-dropdown.plugin-optgroup_columns .optgroup:before {
|
612
|
+
display: none;
|
613
|
+
}
|
614
|
+
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
|
615
|
+
border-top: 0 none;
|
616
|
+
}
|
617
|
+
|
618
|
+
.ts-wrapper.plugin-remove_button .item {
|
619
|
+
display: inline-flex;
|
620
|
+
align-items: center;
|
621
|
+
padding-left: 0 !important;
|
622
|
+
}
|
623
|
+
.ts-wrapper.plugin-remove_button .item .remove {
|
624
|
+
color: inherit;
|
625
|
+
text-decoration: none;
|
626
|
+
vertical-align: middle;
|
627
|
+
display: inline-block;
|
628
|
+
padding: 0 5px;
|
629
|
+
border-radius: 2px 0 0 2px;
|
630
|
+
box-sizing: border-box;
|
631
|
+
}
|
632
|
+
.ts-wrapper.plugin-remove_button .item .remove:hover {
|
633
|
+
background: rgba(0, 0, 0, 0.05);
|
634
|
+
}
|
635
|
+
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
|
636
|
+
background: none;
|
637
|
+
}
|
638
|
+
.ts-wrapper.plugin-remove_button .remove-single {
|
639
|
+
position: absolute;
|
640
|
+
left: 0;
|
641
|
+
top: 0;
|
642
|
+
font-size: 23px;
|
643
|
+
}
|
644
|
+
|
645
|
+
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
|
646
|
+
border-right: 1px solid #dadfe5;
|
647
|
+
margin-right: 5px;
|
648
|
+
}
|
649
|
+
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
|
650
|
+
border-right-color: rgba(0, 0, 0, 0);
|
651
|
+
}
|
652
|
+
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
|
653
|
+
border-right-color: white;
|
654
|
+
}
|
655
|
+
|
656
|
+
.ts-wrapper.plugin-remove_button.rtl .item .remove {
|
657
|
+
border-left: 1px solid #dadfe5;
|
658
|
+
margin-left: 5px;
|
659
|
+
}
|
660
|
+
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
|
661
|
+
border-left-color: rgba(0, 0, 0, 0);
|
662
|
+
}
|
663
|
+
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
|
664
|
+
border-left-color: white;
|
665
|
+
}
|
666
|
+
|
667
|
+
.ts-wrapper {
|
668
|
+
position: relative;
|
669
|
+
}
|
670
|
+
|
671
|
+
.ts-dropdown,
|
672
|
+
.ts-control,
|
673
|
+
.ts-control input {
|
674
|
+
color: #182433;
|
675
|
+
font-family: inherit;
|
676
|
+
font-size: inherit;
|
677
|
+
line-height: 1.4285714286;
|
678
|
+
font-smoothing: inherit;
|
679
|
+
}
|
680
|
+
|
681
|
+
.ts-control,
|
682
|
+
.ts-wrapper.single.input-active .ts-control {
|
683
|
+
background: var(--tblr-bg-forms);
|
684
|
+
cursor: text;
|
685
|
+
}
|
686
|
+
|
687
|
+
.ts-control {
|
688
|
+
border: 1px solid var(--tblr-border-color);
|
689
|
+
padding: 0.5625rem 0.75rem;
|
690
|
+
width: 100%;
|
691
|
+
overflow: hidden;
|
692
|
+
position: relative;
|
693
|
+
z-index: 1;
|
694
|
+
box-sizing: border-box;
|
695
|
+
box-shadow: none;
|
696
|
+
border-radius: var(--tblr-border-radius);
|
697
|
+
display: flex;
|
698
|
+
flex-wrap: wrap;
|
699
|
+
}
|
700
|
+
.ts-wrapper.multi.has-items .ts-control {
|
701
|
+
padding: calc( 0.5625rem - 1px - 0px) 0.75rem calc( 0.5625rem - 1px - 3px - 0px);
|
702
|
+
}
|
703
|
+
.full .ts-control {
|
704
|
+
background-color: var(--tblr-bg-forms);
|
705
|
+
}
|
706
|
+
.disabled .ts-control, .disabled .ts-control * {
|
707
|
+
cursor: default !important;
|
708
|
+
}
|
709
|
+
.focus .ts-control {
|
710
|
+
box-shadow: none;
|
711
|
+
}
|
712
|
+
.ts-control > * {
|
713
|
+
vertical-align: baseline;
|
714
|
+
display: inline-block;
|
715
|
+
}
|
716
|
+
.ts-wrapper.multi .ts-control > div {
|
717
|
+
cursor: pointer;
|
718
|
+
margin: 0 0 3px 3px;
|
719
|
+
padding: 1px 5px;
|
720
|
+
background: #efefef;
|
721
|
+
color: #182433;
|
722
|
+
border: 0px solid #dadfe5;
|
723
|
+
}
|
724
|
+
.ts-wrapper.multi .ts-control > div.active {
|
725
|
+
background: #0054a6;
|
726
|
+
color: #fff;
|
727
|
+
border: 0px solid rgba(0, 0, 0, 0);
|
728
|
+
}
|
729
|
+
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
|
730
|
+
color: #727272;
|
731
|
+
background: white;
|
732
|
+
border: 0px solid white;
|
733
|
+
}
|
734
|
+
.ts-control > input {
|
735
|
+
flex: 1 1 auto;
|
736
|
+
min-width: 7rem;
|
737
|
+
display: inline-block !important;
|
738
|
+
padding: 0 !important;
|
739
|
+
min-height: 0 !important;
|
740
|
+
max-height: none !important;
|
741
|
+
max-width: 100% !important;
|
742
|
+
margin: 0 !important;
|
743
|
+
text-indent: 0 !important;
|
744
|
+
border: 0 none !important;
|
745
|
+
background: none !important;
|
746
|
+
line-height: inherit !important;
|
747
|
+
-webkit-user-select: auto !important;
|
748
|
+
-moz-user-select: auto !important;
|
749
|
+
-ms-user-select: auto !important;
|
750
|
+
user-select: auto !important;
|
751
|
+
box-shadow: none !important;
|
752
|
+
}
|
753
|
+
.ts-control > input::-ms-clear {
|
754
|
+
display: none;
|
755
|
+
}
|
756
|
+
.ts-control > input:focus {
|
757
|
+
outline: none !important;
|
758
|
+
}
|
759
|
+
.has-items .ts-control > input {
|
760
|
+
margin: 0px 4px !important;
|
761
|
+
}
|
762
|
+
.ts-control.rtl {
|
763
|
+
text-align: left;
|
764
|
+
}
|
765
|
+
.ts-control.rtl.single .ts-control:after {
|
766
|
+
right: calc(0.75rem + 5px);
|
767
|
+
left: auto;
|
768
|
+
}
|
769
|
+
.ts-control.rtl .ts-control > input {
|
770
|
+
margin: 0px -2px 0px 4px !important;
|
771
|
+
}
|
772
|
+
.disabled .ts-control {
|
773
|
+
opacity: 0.5;
|
774
|
+
background-color: var(--tblr-bg-surface-secondary);
|
775
|
+
}
|
776
|
+
.input-hidden .ts-control > input {
|
777
|
+
opacity: 0;
|
778
|
+
position: absolute;
|
779
|
+
right: -10000px;
|
780
|
+
}
|
781
|
+
|
782
|
+
.ts-dropdown {
|
783
|
+
position: absolute;
|
784
|
+
top: 100%;
|
785
|
+
right: 0;
|
786
|
+
width: 100%;
|
787
|
+
z-index: 10;
|
788
|
+
border: 1px solid #d0d0d0;
|
789
|
+
background: #fff;
|
790
|
+
margin: 0.25rem 0 0 0;
|
791
|
+
border-top: 0 none;
|
792
|
+
box-sizing: border-box;
|
793
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
794
|
+
border-radius: 0 0 var(--tblr-border-radius) var(--tblr-border-radius);
|
795
|
+
}
|
796
|
+
.ts-dropdown [data-selectable] {
|
797
|
+
cursor: pointer;
|
798
|
+
overflow: hidden;
|
799
|
+
}
|
800
|
+
.ts-dropdown [data-selectable] .highlight {
|
801
|
+
background: rgba(255, 237, 40, 0.4);
|
802
|
+
border-radius: 1px;
|
803
|
+
}
|
804
|
+
.ts-dropdown .option,
|
805
|
+
.ts-dropdown .optgroup-header,
|
806
|
+
.ts-dropdown .no-results,
|
807
|
+
.ts-dropdown .create {
|
808
|
+
padding: 3px 0.75rem;
|
809
|
+
}
|
810
|
+
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
|
811
|
+
cursor: inherit;
|
812
|
+
opacity: 0.5;
|
813
|
+
}
|
814
|
+
.ts-dropdown [data-selectable].option {
|
815
|
+
opacity: 1;
|
816
|
+
cursor: pointer;
|
817
|
+
}
|
818
|
+
.ts-dropdown .optgroup:first-child .optgroup-header {
|
819
|
+
border-top: 0 none;
|
820
|
+
}
|
821
|
+
.ts-dropdown .optgroup-header {
|
822
|
+
color: #667382;
|
823
|
+
background: var(--tblr-bg-surface);
|
824
|
+
cursor: default;
|
825
|
+
}
|
826
|
+
.ts-dropdown .active {
|
827
|
+
background-color: rgba(var(--tblr-text-secondary-rgb), 0.04);
|
828
|
+
color: inherit;
|
829
|
+
}
|
830
|
+
.ts-dropdown .active.create {
|
831
|
+
color: inherit;
|
832
|
+
}
|
833
|
+
.ts-dropdown .create {
|
834
|
+
color: rgba(24, 36, 51, 0.5);
|
835
|
+
}
|
836
|
+
.ts-dropdown .spinner {
|
837
|
+
display: inline-block;
|
838
|
+
width: 30px;
|
839
|
+
height: 30px;
|
840
|
+
margin: 3px 0.75rem;
|
841
|
+
}
|
842
|
+
.ts-dropdown .spinner:after {
|
843
|
+
content: " ";
|
844
|
+
display: block;
|
845
|
+
width: 24px;
|
846
|
+
height: 24px;
|
847
|
+
margin: 3px;
|
848
|
+
border-radius: 50%;
|
849
|
+
border: 5px solid #d0d0d0;
|
850
|
+
border-color: #d0d0d0 transparent #d0d0d0 transparent;
|
851
|
+
animation: lds-dual-ring 1.2s linear infinite;
|
852
|
+
}
|
853
|
+
@keyframes lds-dual-ring {
|
854
|
+
0% {
|
855
|
+
transform: rotate(0deg);
|
856
|
+
}
|
857
|
+
100% {
|
858
|
+
transform: rotate(-360deg);
|
859
|
+
}
|
860
|
+
}
|
861
|
+
|
862
|
+
.ts-dropdown-content {
|
863
|
+
overflow-y: auto;
|
864
|
+
overflow-x: hidden;
|
865
|
+
max-height: 200px;
|
866
|
+
overflow-scrolling: touch;
|
867
|
+
scroll-behavior: smooth;
|
868
|
+
}
|
869
|
+
|
870
|
+
.ts-hidden-accessible {
|
871
|
+
border: 0 !important;
|
872
|
+
clip: rect(0 0 0 0) !important;
|
873
|
+
-webkit-clip-path: inset(50%) !important;
|
874
|
+
clip-path: inset(50%) !important;
|
875
|
+
overflow: hidden !important;
|
876
|
+
padding: 0 !important;
|
877
|
+
position: absolute !important;
|
878
|
+
width: 1px !important;
|
879
|
+
white-space: nowrap !important;
|
880
|
+
}
|
881
|
+
|
882
|
+
.ts-wrapper.form-control,
|
883
|
+
.ts-wrapper.form-select {
|
884
|
+
padding: 0 !important;
|
885
|
+
height: auto;
|
886
|
+
box-shadow: none;
|
887
|
+
display: flex;
|
888
|
+
}
|
889
|
+
|
890
|
+
.ts-dropdown,
|
891
|
+
.ts-dropdown.form-control,
|
892
|
+
.ts-dropdown.form-select {
|
893
|
+
height: auto;
|
894
|
+
padding: 0;
|
895
|
+
z-index: 1000;
|
896
|
+
background: #fff;
|
897
|
+
border: 1px solid var(--tblr-border-color-translucent);
|
898
|
+
border-radius: 4px;
|
899
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
900
|
+
}
|
901
|
+
|
902
|
+
.ts-dropdown .optgroup-header {
|
903
|
+
font-size: 0.765625rem;
|
904
|
+
line-height: 1.4285714286;
|
905
|
+
}
|
906
|
+
.ts-dropdown .optgroup:first-child:before {
|
907
|
+
display: none;
|
908
|
+
}
|
909
|
+
.ts-dropdown .optgroup:before {
|
910
|
+
content: " ";
|
911
|
+
display: block;
|
912
|
+
height: 0;
|
913
|
+
margin: var(--tblr-spacer) 0;
|
914
|
+
overflow: hidden;
|
915
|
+
border-top: 1px solid var(--tblr-border-color-translucent);
|
916
|
+
margin-right: -0.75rem;
|
917
|
+
margin-left: -0.75rem;
|
918
|
+
}
|
919
|
+
.ts-dropdown .create {
|
920
|
+
padding-right: 0.75rem;
|
921
|
+
}
|
922
|
+
|
923
|
+
.ts-dropdown-content {
|
924
|
+
padding: 5px 0;
|
925
|
+
}
|
926
|
+
|
927
|
+
.ts-control {
|
928
|
+
box-shadow: var(--tblr-box-shadow-input);
|
929
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
930
|
+
display: flex;
|
931
|
+
align-items: center;
|
932
|
+
}
|
933
|
+
@media (prefers-reduced-motion: reduce) {
|
934
|
+
.ts-control {
|
935
|
+
transition: none;
|
936
|
+
}
|
937
|
+
}
|
938
|
+
.ts-control.dropdown -active {
|
939
|
+
border-radius: var(--tblr-border-radius);
|
940
|
+
}
|
941
|
+
.focus .ts-control {
|
942
|
+
border-color: #80aad3;
|
943
|
+
outline: 0;
|
944
|
+
box-shadow: var(--tblr-box-shadow-input), 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
945
|
+
}
|
946
|
+
.ts-control .item {
|
947
|
+
display: flex;
|
948
|
+
align-items: center;
|
949
|
+
}
|
950
|
+
|
951
|
+
.ts-wrapper.is-invalid,
|
952
|
+
.was-validated .invalid,
|
953
|
+
.was-validated :invalid + .ts-wrapper {
|
954
|
+
border-color: var(--tblr-form-invalid-color);
|
955
|
+
}
|
956
|
+
.ts-wrapper.is-invalid:not(.single),
|
957
|
+
.was-validated .invalid:not(.single),
|
958
|
+
.was-validated :invalid + .ts-wrapper:not(.single) {
|
959
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
|
960
|
+
background-position: left calc(0.3571428572em + 0.28125rem) center;
|
961
|
+
background-size: calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
962
|
+
background-repeat: no-repeat;
|
963
|
+
}
|
964
|
+
.ts-wrapper.is-invalid.single,
|
965
|
+
.was-validated .invalid.single,
|
966
|
+
.was-validated :invalid + .ts-wrapper.single {
|
967
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23929dab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
|
968
|
+
background-position: left 0.75rem center, center left 2.25rem;
|
969
|
+
background-size: 16px 12px, calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
970
|
+
background-repeat: no-repeat;
|
971
|
+
}
|
972
|
+
.ts-wrapper.is-invalid.focus .ts-control,
|
973
|
+
.was-validated .invalid.focus .ts-control,
|
974
|
+
.was-validated :invalid + .ts-wrapper.focus .ts-control {
|
975
|
+
border-color: var(--tblr-form-invalid-color);
|
976
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-form-invalid-color), 0.25);
|
977
|
+
}
|
978
|
+
|
979
|
+
.ts-wrapper.is-valid,
|
980
|
+
.was-validated .valid,
|
981
|
+
.was-validated :valid + .ts-wrapper {
|
982
|
+
border-color: var(--tblr-form-valid-color);
|
983
|
+
}
|
984
|
+
.ts-wrapper.is-valid:not(.single),
|
985
|
+
.was-validated .valid:not(.single),
|
986
|
+
.was-validated :valid + .ts-wrapper:not(.single) {
|
987
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
|
988
|
+
background-position: left calc(0.3571428572em + 0.28125rem) center;
|
989
|
+
background-size: calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
990
|
+
background-repeat: no-repeat;
|
991
|
+
}
|
992
|
+
.ts-wrapper.is-valid.single,
|
993
|
+
.was-validated .valid.single,
|
994
|
+
.was-validated :valid + .ts-wrapper.single {
|
995
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23929dab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
|
996
|
+
background-position: left 0.75rem center, center left 2.25rem;
|
997
|
+
background-size: 16px 12px, calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
998
|
+
background-repeat: no-repeat;
|
999
|
+
}
|
1000
|
+
.ts-wrapper.is-valid.focus .ts-control,
|
1001
|
+
.was-validated .valid.focus .ts-control,
|
1002
|
+
.was-validated :valid + .ts-wrapper.focus .ts-control {
|
1003
|
+
border-color: var(--tblr-form-valid-color);
|
1004
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-form-valid-color), 0.25);
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
.ts-wrapper {
|
1008
|
+
min-height: calc(1.4285714286em + 1.125rem + calc(var(--tblr-border-width) * 2));
|
1009
|
+
display: flex;
|
1010
|
+
}
|
1011
|
+
.input-group-sm > .ts-wrapper, .ts-wrapper.form-select-sm, .ts-wrapper.form-control-sm {
|
1012
|
+
min-height: calc(1.4285714286em + 0.25rem + calc(var(--tblr-border-width) * 2));
|
1013
|
+
}
|
1014
|
+
.input-group-sm > .ts-wrapper .ts-control, .ts-wrapper.form-select-sm .ts-control, .ts-wrapper.form-control-sm .ts-control {
|
1015
|
+
border-radius: var(--tblr-border-radius-sm);
|
1016
|
+
font-size: 0.75rem;
|
1017
|
+
}
|
1018
|
+
.input-group-sm > .ts-wrapper.has-items .ts-control, .ts-wrapper.form-select-sm.has-items .ts-control, .ts-wrapper.form-control-sm.has-items .ts-control {
|
1019
|
+
font-size: 0.75rem;
|
1020
|
+
padding-bottom: 0;
|
1021
|
+
}
|
1022
|
+
.input-group-sm > .ts-wrapper.multi.has-items .ts-control, .ts-wrapper.form-select-sm.multi.has-items .ts-control, .ts-wrapper.form-control-sm.multi.has-items .ts-control {
|
1023
|
+
padding-top: calc((calc(1.4285714286em + 0.25rem + calc(var(--tblr-border-width) * 2)) - (1.4285714286 * 0.75rem) - 4px) / 2) !important;
|
1024
|
+
}
|
1025
|
+
.ts-wrapper.multi.has-items .ts-control {
|
1026
|
+
padding-right: calc(0.75rem - 5px);
|
1027
|
+
--ts-pr-min: calc(0.75rem - 5px);
|
1028
|
+
}
|
1029
|
+
.ts-wrapper.multi .ts-control > div {
|
1030
|
+
border-radius: calc(var(--tblr-border-radius) - 1px);
|
1031
|
+
}
|
1032
|
+
.input-group-lg > .ts-wrapper, .ts-wrapper.form-control-lg, .ts-wrapper.form-select-lg {
|
1033
|
+
min-height: calc(1.4285714286em + 1rem + calc(var(--tblr-border-width) * 2));
|
1034
|
+
}
|
1035
|
+
.input-group-lg > .ts-wrapper .ts-control, .ts-wrapper.form-control-lg .ts-control, .ts-wrapper.form-select-lg .ts-control {
|
1036
|
+
border-radius: var(--tblr-border-radius-lg);
|
1037
|
+
font-size: 1.25rem;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.ts-wrapper:not(.form-control):not(.form-select) {
|
1041
|
+
padding: 0;
|
1042
|
+
border: none;
|
1043
|
+
height: auto;
|
1044
|
+
box-shadow: none;
|
1045
|
+
background: none;
|
1046
|
+
}
|
1047
|
+
.ts-wrapper:not(.form-control):not(.form-select).single .ts-control {
|
1048
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23929dab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
|
1049
|
+
background-repeat: no-repeat;
|
1050
|
+
background-position: left 0.75rem center;
|
1051
|
+
background-size: 16px 12px;
|
1052
|
+
}
|
1053
|
+
.ts-wrapper.form-select, .ts-wrapper.single {
|
1054
|
+
--ts-pr-caret: 2.25rem;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.ts-wrapper.form-control .ts-control, .ts-wrapper.form-control.single.input-active .ts-control,
|
1058
|
+
.ts-wrapper.form-select .ts-control,
|
1059
|
+
.ts-wrapper.form-select.single.input-active .ts-control {
|
1060
|
+
border: none !important;
|
1061
|
+
}
|
1062
|
+
.ts-wrapper.form-control:not(.disabled) .ts-control, .ts-wrapper.form-control:not(.disabled).single.input-active .ts-control,
|
1063
|
+
.ts-wrapper.form-select:not(.disabled) .ts-control,
|
1064
|
+
.ts-wrapper.form-select:not(.disabled).single.input-active .ts-control {
|
1065
|
+
background: transparent !important;
|
1066
|
+
}
|
1067
|
+
|
1068
|
+
.input-group > .ts-wrapper {
|
1069
|
+
flex-grow: 1;
|
1070
|
+
}
|
1071
|
+
.input-group > .ts-wrapper:not(:nth-child(2)) > .ts-control {
|
1072
|
+
border-top-right-radius: 0;
|
1073
|
+
border-bottom-right-radius: 0;
|
1074
|
+
}
|
1075
|
+
.input-group > .ts-wrapper:not(:last-child) > .ts-control {
|
1076
|
+
border-top-left-radius: 0;
|
1077
|
+
border-bottom-left-radius: 0;
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
:root {
|
1081
|
+
--ts-pr-clear-button: 0rem;
|
1082
|
+
--ts-pr-caret: 0rem;
|
1083
|
+
}
|
1084
|
+
|
1085
|
+
.ts-input {
|
1086
|
+
color: inherit;
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
.ts-control {
|
1090
|
+
color: inherit;
|
1091
|
+
}
|
1092
|
+
.ts-control .dropdown-menu {
|
1093
|
+
width: 100%;
|
1094
|
+
height: auto;
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
.ts-wrapper .form-control,
|
1098
|
+
.ts-wrapper .form-select, .ts-wrapper.form-control, .ts-wrapper.form-select {
|
1099
|
+
box-shadow: var(--tblr-box-shadow-input);
|
1100
|
+
}
|
1101
|
+
.ts-wrapper.is-invalid .ts-control, .ts-wrapper.is-valid .ts-control {
|
1102
|
+
--ts-pr-clear-button: 1.5rem;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.ts-dropdown {
|
1106
|
+
background: var(--tblr-bg-surface);
|
1107
|
+
color: var(--tblr-body-color);
|
1108
|
+
box-shadow: var(--tblr-box-shadow-dropdown);
|
1109
|
+
}
|
1110
|
+
.ts-dropdown .option {
|
1111
|
+
padding: 0.5rem 0.75rem;
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
.ts-control,
|
1115
|
+
.ts-control input {
|
1116
|
+
color: var(--tblr-body-color);
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
.ts-control input::-webkit-input-placeholder {
|
1120
|
+
color: #929dab;
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
.ts-control input:-ms-input-placeholder {
|
1124
|
+
color: #929dab;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.ts-control input::-ms-input-placeholder {
|
1128
|
+
color: #929dab;
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
.ts-control input::placeholder {
|
1132
|
+
color: #929dab;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.ts-wrapper.multi .ts-control > div {
|
1136
|
+
background: var(--tblr-bg-surface-secondary);
|
1137
|
+
border: 1px solid var(--tblr-border-color);
|
1138
|
+
color: var(--tblr-body-color);
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.apexcharts-tooltip {
|
1142
|
+
color: var(--tblr-light) !important;
|
1143
|
+
background: var(--tblr-bg-surface-dark) !important;
|
1144
|
+
font-size: 0.765625rem !important;
|
1145
|
+
padding: 0.25rem !important;
|
1146
|
+
box-shadow: none !important;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.apexcharts-tooltip-title {
|
1150
|
+
background: transparent !important;
|
1151
|
+
border: 0 !important;
|
1152
|
+
margin: 0 !important;
|
1153
|
+
font-weight: var(--tblr-font-weight-bold);
|
1154
|
+
padding: 0.25rem 0.5rem !important;
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.apexcharts-tooltip-y-group {
|
1158
|
+
padding: 2px 0 !important;
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
.apexcharts-tooltip-series-group {
|
1162
|
+
padding: 0 0.5rem 0 !important;
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
.apexcharts-tooltip-marker {
|
1166
|
+
width: 10px !important;
|
1167
|
+
height: 10px !important;
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
.apexcharts-text {
|
1171
|
+
fill: var(--tblr-body-color) !important;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.apexcharts-gridline {
|
1175
|
+
stroke: var(--tblr-border-color) !important;
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
.apexcharts-legend-text {
|
1179
|
+
color: inherit !important;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
.apexcharts-radialbar-area {
|
1183
|
+
stroke: var(--tblr-border-color-dark) !important;
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
svg {
|
1187
|
+
touch-action: none;
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
image, text, .jvm-zoomin, .jvm-zoomout {
|
1191
|
+
-webkit-user-select: none;
|
1192
|
+
-moz-user-select: none;
|
1193
|
+
-ms-user-select: none;
|
1194
|
+
user-select: none;
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
.jvm-container {
|
1198
|
+
touch-action: none;
|
1199
|
+
position: relative;
|
1200
|
+
overflow: hidden;
|
1201
|
+
height: 100%;
|
1202
|
+
width: 100%;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.jvm-tooltip {
|
1206
|
+
border-radius: 3px;
|
1207
|
+
background-color: #5c5cff;
|
1208
|
+
font-family: sans-serif, Verdana;
|
1209
|
+
font-size: smaller;
|
1210
|
+
box-shadow: -1px 2px 12px rgba(0, 0, 0, 0.2);
|
1211
|
+
padding: 3px 5px;
|
1212
|
+
white-space: nowrap;
|
1213
|
+
position: absolute;
|
1214
|
+
display: none;
|
1215
|
+
color: #FFF;
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
.jvm-tooltip.active {
|
1219
|
+
display: block;
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
.jvm-zoom-btn {
|
1223
|
+
border-radius: 3px;
|
1224
|
+
background-color: #292929;
|
1225
|
+
padding: 3px;
|
1226
|
+
box-sizing: border-box;
|
1227
|
+
position: absolute;
|
1228
|
+
line-height: 10px;
|
1229
|
+
cursor: pointer;
|
1230
|
+
color: #FFF;
|
1231
|
+
height: 15px;
|
1232
|
+
width: 15px;
|
1233
|
+
right: 10px;
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
.jvm-zoom-btn.jvm-zoomout {
|
1237
|
+
top: 30px;
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
.jvm-zoom-btn.jvm-zoomin {
|
1241
|
+
top: 10px;
|
1242
|
+
}
|
1243
|
+
|
1244
|
+
.jvm-series-container {
|
1245
|
+
left: 15px;
|
1246
|
+
position: absolute;
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.jvm-series-container.jvm-series-h {
|
1250
|
+
bottom: 15px;
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.jvm-series-container.jvm-series-v {
|
1254
|
+
top: 15px;
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.jvm-series-container .jvm-legend {
|
1258
|
+
background-color: #FFF;
|
1259
|
+
border: 1px solid #e5e7eb;
|
1260
|
+
margin-right: 0.75rem;
|
1261
|
+
border-radius: 0.25rem;
|
1262
|
+
border-color: #e5e7eb;
|
1263
|
+
padding: 0.6rem;
|
1264
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
1265
|
+
float: right;
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
.jvm-series-container .jvm-legend .jvm-legend-title {
|
1269
|
+
line-height: 1;
|
1270
|
+
border-bottom: 1px solid #e5e7eb;
|
1271
|
+
padding-bottom: 0.5rem;
|
1272
|
+
margin-bottom: 0.575rem;
|
1273
|
+
text-align: right;
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner {
|
1277
|
+
overflow: hidden;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick {
|
1281
|
+
overflow: hidden;
|
1282
|
+
min-width: 40px;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child) {
|
1286
|
+
margin-top: 0.575rem;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample {
|
1290
|
+
border-radius: 4px;
|
1291
|
+
margin-left: 0.65rem;
|
1292
|
+
height: 16px;
|
1293
|
+
width: 16px;
|
1294
|
+
float: right;
|
1295
|
+
}
|
1296
|
+
|
1297
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text {
|
1298
|
+
font-size: 12px;
|
1299
|
+
text-align: center;
|
1300
|
+
float: right;
|
1301
|
+
}
|
1302
|
+
|
1303
|
+
.jvm-line[animation=true] {
|
1304
|
+
animation: jvm-line-animation 10s linear forwards infinite;
|
1305
|
+
}
|
1306
|
+
@keyframes jvm-line-animation {
|
1307
|
+
from {
|
1308
|
+
stroke-dashoffset: 250;
|
1309
|
+
}
|
1310
|
+
}
|
1311
|
+
.jvm-tooltip {
|
1312
|
+
background: #182433;
|
1313
|
+
font-family: inherit;
|
1314
|
+
font-size: 0.75rem;
|
1315
|
+
box-shadow: var(--tblr-shadow-card);
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
.jvm-series-container .jvm-legend .jvm-legend-title {
|
1319
|
+
border-bottom: 0;
|
1320
|
+
font-weight: var(--tblr-font-weight-medium);
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
.jvm-series-container .jvm-legend {
|
1324
|
+
background-color: var(--tblr-card-bg, var(--tblr-bg-surface));
|
1325
|
+
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
1326
|
+
min-width: 8rem;
|
1327
|
+
}
|
1328
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick {
|
1329
|
+
display: flex;
|
1330
|
+
align-items: center;
|
1331
|
+
}
|
1332
|
+
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample {
|
1333
|
+
width: 0.75rem;
|
1334
|
+
height: 0.75rem;
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.jvm-zoom-btn {
|
1338
|
+
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
1339
|
+
background: var(--tblr-card-bg, var(--tblr-bg-surface));
|
1340
|
+
color: var(--tblr-body-color);
|
1341
|
+
padding: 0;
|
1342
|
+
display: flex;
|
1343
|
+
align-items: center;
|
1344
|
+
justify-content: center;
|
1345
|
+
line-height: 1;
|
1346
|
+
width: 1.5rem;
|
1347
|
+
height: 1.5rem;
|
1348
|
+
font-size: 1rem;
|
1349
|
+
box-shadow: var(--tblr-shadow-card);
|
1350
|
+
}
|
1351
|
+
.jvm-zoom-btn.jvm-zoomout {
|
1352
|
+
top: 2.5rem;
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
.dropzone {
|
1356
|
+
border: var(--tblr-border-width) dashed var(--tblr-border-color);
|
1357
|
+
color: var(--tblr-secondary);
|
1358
|
+
padding: 1rem;
|
1359
|
+
}
|
1360
|
+
.dropzone.dz-drag-hover {
|
1361
|
+
border: var(--tblr-border-width) dashed var(--tblr-primary);
|
1362
|
+
background: rgba(var(--tblr-primary-rgb), 0.01);
|
1363
|
+
color: var(--tblr-primary);
|
1364
|
+
}
|
1365
|
+
.dropzone.dz-drag-hover .dz-message {
|
1366
|
+
opacity: 1;
|
1367
|
+
}
|
1368
|
+
.dropzone .dz-preview {
|
1369
|
+
margin: 0.5rem;
|
1370
|
+
}
|
1371
|
+
.dropzone .dz-preview .dz-image {
|
1372
|
+
border-radius: var(--tblr-border-radius);
|
1373
|
+
}
|
1374
|
+
.dropzone .dz-preview .dz-success-mark {
|
1375
|
+
height: 54px;
|
1376
|
+
}
|
1377
|
+
|
1378
|
+
.fslightbox-container {
|
1379
|
+
font-family: inherit !important;
|
1380
|
+
background: rgba(24, 36, 51, 0.24) !important;
|
1381
|
+
-webkit-backdrop-filter: blur(4px) !important;
|
1382
|
+
backdrop-filter: blur(4px) !important;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.fslightbox-slide-number-container {
|
1386
|
+
color: inherit !important;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.fslightbox-slash {
|
1390
|
+
background: currentColor !important;
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
body {
|
1394
|
+
--plyr-color-main: var(--tblr-primary);
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.tox-tinymce {
|
1398
|
+
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color) !important;
|
1399
|
+
border-radius: 4px !important;
|
1400
|
+
font-family: var(--tblr-font-sans-serif) !important;
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
.tox-toolbar__group {
|
1404
|
+
padding: 0 0.5rem 0;
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
.tox .tox-toolbar__primary {
|
1408
|
+
background: transparent !important;
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
.tox:not(.tox-tinymce-inline) .tox-editor-header {
|
1412
|
+
border-bottom: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color) !important;
|
1413
|
+
box-shadow: none !important;
|
1414
|
+
padding: 0 !important;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.tox-tbtn {
|
1418
|
+
margin: 0 !important;
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.tox-statusbar {
|
1422
|
+
border-top: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color) !important;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.tox .tox-toolbar-overlord,
|
1426
|
+
.tox:not(.tox-tinymce-inline) .tox-editor-header {
|
1427
|
+
background: transparent !important;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
:root {
|
1431
|
+
--gl-star-size: auto;
|
1432
|
+
--gl-star-color: var(--tblr-yellow);
|
1433
|
+
--gl-star-color-inactive: var(--tblr-border-color);
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
[data-star-rating] svg {
|
1437
|
+
width: var(--tblr-icon-size, --gl-star-size);
|
1438
|
+
height: var(--tblr-icon-size, --gl-star-size);
|
1439
|
+
}
|
1440
|
+
[data-star-rating] :not(.gl-active) > .gl-star-full {
|
1441
|
+
color: var(--gl-star-color-inactive) !important;
|
1442
|
+
}
|
1443
|
+
[data-star-rating] .gl-active > .gl-star-full {
|
1444
|
+
color: var(--gl-star-color);
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.clr-picker {
|
1448
|
+
box-shadow: var(--tblr-box-shadow-dropdown);
|
1449
|
+
background-color: var(--tblr-bg-surface);
|
1450
|
+
}
|
1451
|
+
|
1452
|
+
input.clr-color {
|
1453
|
+
border-radius: var(--tblr-border-radius);
|
1454
|
+
color: var(--tblr-body-color);
|
1455
|
+
border-color: var(--tblr-border-color);
|
1456
|
+
background: transparent;
|
1457
|
+
}
|
1458
|
+
input.clr-color:focus {
|
1459
|
+
outline: 0;
|
1460
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
1461
|
+
border-color: rgba(var(--tblr-primary-rgb), 0.25);
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
.clr-swatches button {
|
1465
|
+
border-radius: var(--tblr-border-radius);
|
1466
|
+
padding: 0 2px 4px 2px;
|
1467
|
+
}
|
1468
|
+
.clr-swatches button:focus {
|
1469
|
+
outline: 0;
|
1470
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.clr-preview {
|
1474
|
+
border-radius: var(--tblr-border-radius);
|
1475
|
+
overflow: visible;
|
1476
|
+
}
|
1477
|
+
.clr-preview button, .clr-preview:before, .clr-preview:after {
|
1478
|
+
border-radius: var(--tblr-border-radius);
|
1479
|
+
}
|
1480
|
+
.clr-preview button:focus {
|
1481
|
+
outline: 0;
|
1482
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.clr-field {
|
1486
|
+
display: block;
|
1487
|
+
}
|
1488
|
+
.clr-field button {
|
1489
|
+
width: 1.5rem;
|
1490
|
+
height: 1.5rem;
|
1491
|
+
right: 6px;
|
1492
|
+
left: auto;
|
1493
|
+
border-radius: var(--tblr-border-radius);
|
1494
|
+
}
|
1495
|
+
.clr-field button:after {
|
1496
|
+
box-shadow: inset 0 0 0 1px var(--tblr-border-color-translucent);
|
1497
|
+
}
|
1498
|
+
.clr-field button:focus {
|
1499
|
+
outline: 0;
|
1500
|
+
box-shadow: 0 0 0 0.25rem rgba(var(--tblr-primary-rgb), 0.25);
|
1501
|
+
}
|
1502
|
+
.clr-field input {
|
1503
|
+
padding-right: 2.5rem;
|
1504
|
+
}
|