@quandis/qbo4.logging 4.0.1-CI-20241007-230301 → 4.0.1-CI-20241009-220836
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.
- package/package.json +19 -19
- package/scss/qbo-find.scss +1 -1
- package/scss/qbo-logging.scss +1 -1
- package/scss/qbo-modal.scss +1 -1
- package/wwwroot/css/qbo-find.css +583 -10
- package/wwwroot/css/qbo-find.css.map +1 -1
- package/wwwroot/css/qbo-find.min.css +1 -1
- package/wwwroot/css/qbo-logging.css +579 -10
- package/wwwroot/css/qbo-logging.css.map +1 -1
- package/wwwroot/css/qbo-logging.min.css +1 -1
- package/wwwroot/css/qbo-modal.css +579 -10
- package/wwwroot/css/qbo-modal.css.map +1 -1
- package/wwwroot/css/qbo-modal.min.css +1 -1
- package/wwwroot/js/esm/qbo4.logging.js +63913 -0
- package/wwwroot/js/esm/qbo4.logging.min.js +126 -0
- package/wwwroot/js/esm/qbo4.logging.min.js.LICENSE.txt +43 -0
- package/wwwroot/js/esm/qbo4.logging.min.js.map +1 -0
- package/wwwroot/js/qbo4.logging.js +919 -914
- package/wwwroot/js/qbo4.logging.min.js +24 -24
- package/wwwroot/js/qbo4.logging.min.js.map +1 -1
- package/src/declarations.d.ts +0 -4
|
@@ -157,7 +157,7 @@ hr {
|
|
|
157
157
|
opacity: 0.25;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
h5, .h5, h1, .h1 {
|
|
160
|
+
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
|
|
161
161
|
margin-top: 0;
|
|
162
162
|
margin-bottom: 0.5rem;
|
|
163
163
|
font-weight: 500;
|
|
@@ -174,15 +174,60 @@ h1, .h1 {
|
|
|
174
174
|
}
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
+
h2, .h2 {
|
|
178
|
+
font-size: calc(1.325rem + 0.9vw);
|
|
179
|
+
}
|
|
180
|
+
@media (min-width: 1200px) {
|
|
181
|
+
h2, .h2 {
|
|
182
|
+
font-size: 2rem;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
h3, .h3 {
|
|
187
|
+
font-size: calc(1.3rem + 0.6vw);
|
|
188
|
+
}
|
|
189
|
+
@media (min-width: 1200px) {
|
|
190
|
+
h3, .h3 {
|
|
191
|
+
font-size: 1.75rem;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
h4, .h4 {
|
|
196
|
+
font-size: calc(1.275rem + 0.3vw);
|
|
197
|
+
}
|
|
198
|
+
@media (min-width: 1200px) {
|
|
199
|
+
h4, .h4 {
|
|
200
|
+
font-size: 1.5rem;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
177
204
|
h5, .h5 {
|
|
178
205
|
font-size: 1.25rem;
|
|
179
206
|
}
|
|
180
207
|
|
|
208
|
+
h6, .h6 {
|
|
209
|
+
font-size: 1rem;
|
|
210
|
+
}
|
|
211
|
+
|
|
181
212
|
p {
|
|
182
213
|
margin-top: 0;
|
|
183
214
|
margin-bottom: 1rem;
|
|
184
215
|
}
|
|
185
216
|
|
|
217
|
+
abbr[title] {
|
|
218
|
+
-webkit-text-decoration: underline dotted;
|
|
219
|
+
text-decoration: underline dotted;
|
|
220
|
+
cursor: help;
|
|
221
|
+
-webkit-text-decoration-skip-ink: none;
|
|
222
|
+
text-decoration-skip-ink: none;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
address {
|
|
226
|
+
margin-bottom: 1rem;
|
|
227
|
+
font-style: normal;
|
|
228
|
+
line-height: inherit;
|
|
229
|
+
}
|
|
230
|
+
|
|
186
231
|
ol,
|
|
187
232
|
ul {
|
|
188
233
|
padding-left: 2rem;
|
|
@@ -211,7 +256,12 @@ dd {
|
|
|
211
256
|
margin-left: 0;
|
|
212
257
|
}
|
|
213
258
|
|
|
214
|
-
|
|
259
|
+
blockquote {
|
|
260
|
+
margin: 0 0 1rem;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
b,
|
|
264
|
+
strong {
|
|
215
265
|
font-weight: bolder;
|
|
216
266
|
}
|
|
217
267
|
|
|
@@ -225,6 +275,22 @@ mark, .mark {
|
|
|
225
275
|
background-color: var(--bs-highlight-bg);
|
|
226
276
|
}
|
|
227
277
|
|
|
278
|
+
sub,
|
|
279
|
+
sup {
|
|
280
|
+
position: relative;
|
|
281
|
+
font-size: 0.75em;
|
|
282
|
+
line-height: 0;
|
|
283
|
+
vertical-align: baseline;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
sub {
|
|
287
|
+
bottom: -0.25em;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
sup {
|
|
291
|
+
top: -0.5em;
|
|
292
|
+
}
|
|
293
|
+
|
|
228
294
|
a {
|
|
229
295
|
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
|
230
296
|
text-decoration: underline;
|
|
@@ -238,12 +304,27 @@ a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
|
|
238
304
|
text-decoration: none;
|
|
239
305
|
}
|
|
240
306
|
|
|
241
|
-
|
|
242
|
-
code
|
|
307
|
+
pre,
|
|
308
|
+
code,
|
|
309
|
+
kbd,
|
|
310
|
+
samp {
|
|
243
311
|
font-family: var(--bs-font-monospace);
|
|
244
312
|
font-size: 1em;
|
|
245
313
|
}
|
|
246
314
|
|
|
315
|
+
pre {
|
|
316
|
+
display: block;
|
|
317
|
+
margin-top: 0;
|
|
318
|
+
margin-bottom: 1rem;
|
|
319
|
+
overflow: auto;
|
|
320
|
+
font-size: 0.875em;
|
|
321
|
+
}
|
|
322
|
+
pre code {
|
|
323
|
+
font-size: inherit;
|
|
324
|
+
color: inherit;
|
|
325
|
+
word-break: normal;
|
|
326
|
+
}
|
|
327
|
+
|
|
247
328
|
code {
|
|
248
329
|
font-size: 0.875em;
|
|
249
330
|
color: var(--bs-code-color);
|
|
@@ -253,7 +334,23 @@ a > code {
|
|
|
253
334
|
color: inherit;
|
|
254
335
|
}
|
|
255
336
|
|
|
337
|
+
kbd {
|
|
338
|
+
padding: 0.1875rem 0.375rem;
|
|
339
|
+
font-size: 0.875em;
|
|
340
|
+
color: var(--bs-body-bg);
|
|
341
|
+
background-color: var(--bs-body-color);
|
|
342
|
+
border-radius: 0.25rem;
|
|
343
|
+
}
|
|
344
|
+
kbd kbd {
|
|
345
|
+
padding: 0;
|
|
346
|
+
font-size: 1em;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
figure {
|
|
350
|
+
margin: 0 0 1rem;
|
|
351
|
+
}
|
|
256
352
|
|
|
353
|
+
img,
|
|
257
354
|
svg {
|
|
258
355
|
vertical-align: middle;
|
|
259
356
|
}
|
|
@@ -277,6 +374,7 @@ th {
|
|
|
277
374
|
|
|
278
375
|
thead,
|
|
279
376
|
tbody,
|
|
377
|
+
tfoot,
|
|
280
378
|
tr,
|
|
281
379
|
td,
|
|
282
380
|
th {
|
|
@@ -300,6 +398,7 @@ button:focus:not(:focus-visible) {
|
|
|
300
398
|
input,
|
|
301
399
|
button,
|
|
302
400
|
select,
|
|
401
|
+
optgroup,
|
|
303
402
|
textarea {
|
|
304
403
|
margin: 0;
|
|
305
404
|
font-family: inherit;
|
|
@@ -329,12 +428,14 @@ select:disabled {
|
|
|
329
428
|
|
|
330
429
|
button,
|
|
331
430
|
[type=button],
|
|
332
|
-
[type=reset]
|
|
431
|
+
[type=reset],
|
|
432
|
+
[type=submit] {
|
|
333
433
|
-webkit-appearance: button;
|
|
334
434
|
}
|
|
335
435
|
button:not(:disabled),
|
|
336
436
|
[type=button]:not(:disabled),
|
|
337
|
-
[type=reset]:not(:disabled)
|
|
437
|
+
[type=reset]:not(:disabled),
|
|
438
|
+
[type=submit]:not(:disabled) {
|
|
338
439
|
cursor: pointer;
|
|
339
440
|
}
|
|
340
441
|
|
|
@@ -347,6 +448,30 @@ textarea {
|
|
|
347
448
|
resize: vertical;
|
|
348
449
|
}
|
|
349
450
|
|
|
451
|
+
fieldset {
|
|
452
|
+
min-width: 0;
|
|
453
|
+
padding: 0;
|
|
454
|
+
margin: 0;
|
|
455
|
+
border: 0;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
legend {
|
|
459
|
+
float: left;
|
|
460
|
+
width: 100%;
|
|
461
|
+
padding: 0;
|
|
462
|
+
margin-bottom: 0.5rem;
|
|
463
|
+
font-size: calc(1.275rem + 0.3vw);
|
|
464
|
+
line-height: inherit;
|
|
465
|
+
}
|
|
466
|
+
@media (min-width: 1200px) {
|
|
467
|
+
legend {
|
|
468
|
+
font-size: 1.5rem;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
legend + * {
|
|
472
|
+
clear: left;
|
|
473
|
+
}
|
|
474
|
+
|
|
350
475
|
::-webkit-datetime-edit-fields-wrapper,
|
|
351
476
|
::-webkit-datetime-edit-text,
|
|
352
477
|
::-webkit-datetime-edit-minute,
|
|
@@ -391,11 +516,19 @@ output {
|
|
|
391
516
|
display: inline-block;
|
|
392
517
|
}
|
|
393
518
|
|
|
519
|
+
iframe {
|
|
520
|
+
border: 0;
|
|
521
|
+
}
|
|
522
|
+
|
|
394
523
|
summary {
|
|
395
524
|
display: list-item;
|
|
396
525
|
cursor: pointer;
|
|
397
526
|
}
|
|
398
527
|
|
|
528
|
+
progress {
|
|
529
|
+
vertical-align: baseline;
|
|
530
|
+
}
|
|
531
|
+
|
|
399
532
|
[hidden] {
|
|
400
533
|
display: none !important;
|
|
401
534
|
}
|
|
@@ -405,6 +538,18 @@ summary {
|
|
|
405
538
|
font-weight: 300;
|
|
406
539
|
}
|
|
407
540
|
|
|
541
|
+
.blockquote {
|
|
542
|
+
margin-bottom: 1rem;
|
|
543
|
+
font-size: 1.25rem;
|
|
544
|
+
}
|
|
545
|
+
.blockquote > :last-child {
|
|
546
|
+
margin-bottom: 0;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.figure {
|
|
550
|
+
display: inline-block;
|
|
551
|
+
}
|
|
552
|
+
|
|
408
553
|
.container {
|
|
409
554
|
--bs-gutter-x: 1.5rem;
|
|
410
555
|
--bs-gutter-y: 0;
|
|
@@ -470,6 +615,10 @@ summary {
|
|
|
470
615
|
.col {
|
|
471
616
|
flex: 1 0 0%;
|
|
472
617
|
}
|
|
618
|
+
|
|
619
|
+
.offset-1 {
|
|
620
|
+
margin-left: 8.33333333%;
|
|
621
|
+
}
|
|
473
622
|
.table {
|
|
474
623
|
--bs-table-color-type: initial;
|
|
475
624
|
--bs-table-bg-type: initial;
|
|
@@ -587,6 +736,100 @@ textarea.form-control {
|
|
|
587
736
|
min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
|
|
588
737
|
}
|
|
589
738
|
|
|
739
|
+
.form-check {
|
|
740
|
+
display: block;
|
|
741
|
+
min-height: 1.5rem;
|
|
742
|
+
padding-left: 1.5em;
|
|
743
|
+
margin-bottom: 0.125rem;
|
|
744
|
+
}
|
|
745
|
+
.form-check .form-check-input {
|
|
746
|
+
float: left;
|
|
747
|
+
margin-left: -1.5em;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.form-check-input {
|
|
751
|
+
--bs-form-check-bg: var(--bs-body-bg);
|
|
752
|
+
flex-shrink: 0;
|
|
753
|
+
width: 1em;
|
|
754
|
+
height: 1em;
|
|
755
|
+
margin-top: 0.25em;
|
|
756
|
+
vertical-align: top;
|
|
757
|
+
-webkit-appearance: none;
|
|
758
|
+
-moz-appearance: none;
|
|
759
|
+
appearance: none;
|
|
760
|
+
background-color: var(--bs-form-check-bg);
|
|
761
|
+
background-image: var(--bs-form-check-bg-image);
|
|
762
|
+
background-repeat: no-repeat;
|
|
763
|
+
background-position: center;
|
|
764
|
+
background-size: contain;
|
|
765
|
+
border: var(--bs-border-width) solid var(--bs-border-color);
|
|
766
|
+
-webkit-print-color-adjust: exact;
|
|
767
|
+
print-color-adjust: exact;
|
|
768
|
+
}
|
|
769
|
+
.form-check-input[type=checkbox] {
|
|
770
|
+
border-radius: 0.25em;
|
|
771
|
+
}
|
|
772
|
+
.form-check-input[type=radio] {
|
|
773
|
+
border-radius: 50%;
|
|
774
|
+
}
|
|
775
|
+
.form-check-input:active {
|
|
776
|
+
filter: brightness(90%);
|
|
777
|
+
}
|
|
778
|
+
.form-check-input:focus {
|
|
779
|
+
border-color: rgb(134, 182.5, 254);
|
|
780
|
+
outline: 0;
|
|
781
|
+
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
782
|
+
}
|
|
783
|
+
.form-check-input:checked {
|
|
784
|
+
background-color: #0d6efd;
|
|
785
|
+
border-color: #0d6efd;
|
|
786
|
+
}
|
|
787
|
+
.form-check-input:checked[type=checkbox] {
|
|
788
|
+
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
|
|
789
|
+
}
|
|
790
|
+
.form-check-input:checked[type=radio] {
|
|
791
|
+
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
|
|
792
|
+
}
|
|
793
|
+
.form-check-input[type=checkbox]:indeterminate {
|
|
794
|
+
background-color: #0d6efd;
|
|
795
|
+
border-color: #0d6efd;
|
|
796
|
+
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
|
|
797
|
+
}
|
|
798
|
+
.form-check-input:disabled {
|
|
799
|
+
pointer-events: none;
|
|
800
|
+
filter: none;
|
|
801
|
+
opacity: 0.5;
|
|
802
|
+
}
|
|
803
|
+
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
|
|
804
|
+
cursor: default;
|
|
805
|
+
opacity: 0.5;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.form-switch {
|
|
809
|
+
padding-left: 2.5em;
|
|
810
|
+
}
|
|
811
|
+
.form-switch .form-check-input {
|
|
812
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
|
|
813
|
+
width: 2em;
|
|
814
|
+
margin-left: -2.5em;
|
|
815
|
+
background-image: var(--bs-form-switch-bg);
|
|
816
|
+
background-position: left center;
|
|
817
|
+
border-radius: 2em;
|
|
818
|
+
transition: background-position 0.15s ease-in-out;
|
|
819
|
+
}
|
|
820
|
+
@media (prefers-reduced-motion: reduce) {
|
|
821
|
+
.form-switch .form-check-input {
|
|
822
|
+
transition: none;
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
.form-switch .form-check-input:focus {
|
|
826
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
|
|
827
|
+
}
|
|
828
|
+
.form-switch .form-check-input:checked {
|
|
829
|
+
background-position: right center;
|
|
830
|
+
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
|
|
831
|
+
}
|
|
832
|
+
|
|
590
833
|
.btn-check {
|
|
591
834
|
position: absolute;
|
|
592
835
|
clip: rect(0, 0, 0, 0);
|
|
@@ -598,6 +841,97 @@ textarea.form-control {
|
|
|
598
841
|
opacity: 0.65;
|
|
599
842
|
}
|
|
600
843
|
|
|
844
|
+
.form-floating {
|
|
845
|
+
position: relative;
|
|
846
|
+
}
|
|
847
|
+
.form-floating > .form-control {
|
|
848
|
+
height: calc(3.5rem + calc(var(--bs-border-width) * 2));
|
|
849
|
+
min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
|
|
850
|
+
line-height: 1.25;
|
|
851
|
+
}
|
|
852
|
+
.form-floating > label {
|
|
853
|
+
position: absolute;
|
|
854
|
+
top: 0;
|
|
855
|
+
left: 0;
|
|
856
|
+
z-index: 2;
|
|
857
|
+
height: 100%;
|
|
858
|
+
padding: 1rem 0.75rem;
|
|
859
|
+
overflow: hidden;
|
|
860
|
+
text-align: start;
|
|
861
|
+
text-overflow: ellipsis;
|
|
862
|
+
white-space: nowrap;
|
|
863
|
+
pointer-events: none;
|
|
864
|
+
border: var(--bs-border-width) solid transparent;
|
|
865
|
+
transform-origin: 0 0;
|
|
866
|
+
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
|
|
867
|
+
}
|
|
868
|
+
@media (prefers-reduced-motion: reduce) {
|
|
869
|
+
.form-floating > label {
|
|
870
|
+
transition: none;
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
.form-floating > .form-control {
|
|
874
|
+
padding: 1rem 0.75rem;
|
|
875
|
+
}
|
|
876
|
+
.form-floating > .form-control::-moz-placeholder {
|
|
877
|
+
color: transparent;
|
|
878
|
+
}
|
|
879
|
+
.form-floating > .form-control::placeholder {
|
|
880
|
+
color: transparent;
|
|
881
|
+
}
|
|
882
|
+
.form-floating > .form-control:not(:-moz-placeholder-shown) {
|
|
883
|
+
padding-top: 1.625rem;
|
|
884
|
+
padding-bottom: 0.625rem;
|
|
885
|
+
}
|
|
886
|
+
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
|
|
887
|
+
padding-top: 1.625rem;
|
|
888
|
+
padding-bottom: 0.625rem;
|
|
889
|
+
}
|
|
890
|
+
.form-floating > .form-control:-webkit-autofill {
|
|
891
|
+
padding-top: 1.625rem;
|
|
892
|
+
padding-bottom: 0.625rem;
|
|
893
|
+
}
|
|
894
|
+
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
|
|
895
|
+
color: rgba(var(--bs-body-color-rgb), 0.65);
|
|
896
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
897
|
+
}
|
|
898
|
+
.form-floating > .form-control:focus ~ label,
|
|
899
|
+
.form-floating > .form-control:not(:placeholder-shown) ~ label {
|
|
900
|
+
color: rgba(var(--bs-body-color-rgb), 0.65);
|
|
901
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
902
|
+
}
|
|
903
|
+
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
|
|
904
|
+
position: absolute;
|
|
905
|
+
inset: 1rem 0.375rem;
|
|
906
|
+
z-index: -1;
|
|
907
|
+
height: 1.5em;
|
|
908
|
+
content: "";
|
|
909
|
+
background-color: var(--bs-body-bg);
|
|
910
|
+
border-radius: var(--bs-border-radius);
|
|
911
|
+
}
|
|
912
|
+
.form-floating > .form-control:focus ~ label::after,
|
|
913
|
+
.form-floating > .form-control:not(:placeholder-shown) ~ label::after {
|
|
914
|
+
position: absolute;
|
|
915
|
+
inset: 1rem 0.375rem;
|
|
916
|
+
z-index: -1;
|
|
917
|
+
height: 1.5em;
|
|
918
|
+
content: "";
|
|
919
|
+
background-color: var(--bs-body-bg);
|
|
920
|
+
border-radius: var(--bs-border-radius);
|
|
921
|
+
}
|
|
922
|
+
.form-floating > .form-control:-webkit-autofill ~ label {
|
|
923
|
+
color: rgba(var(--bs-body-color-rgb), 0.65);
|
|
924
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
925
|
+
}
|
|
926
|
+
.form-floating > :disabled ~ label,
|
|
927
|
+
.form-floating > .form-control:disabled ~ label {
|
|
928
|
+
color: #6c757d;
|
|
929
|
+
}
|
|
930
|
+
.form-floating > :disabled ~ label::after,
|
|
931
|
+
.form-floating > .form-control:disabled ~ label::after {
|
|
932
|
+
background-color: var(--bs-secondary-bg);
|
|
933
|
+
}
|
|
934
|
+
|
|
601
935
|
.input-group {
|
|
602
936
|
position: relative;
|
|
603
937
|
display: flex;
|
|
@@ -605,13 +939,15 @@ textarea.form-control {
|
|
|
605
939
|
align-items: stretch;
|
|
606
940
|
width: 100%;
|
|
607
941
|
}
|
|
608
|
-
.input-group > .form-control
|
|
942
|
+
.input-group > .form-control,
|
|
943
|
+
.input-group > .form-floating {
|
|
609
944
|
position: relative;
|
|
610
945
|
flex: 1 1 auto;
|
|
611
946
|
width: 1%;
|
|
612
947
|
min-width: 0;
|
|
613
948
|
}
|
|
614
|
-
.input-group > .form-control:focus
|
|
949
|
+
.input-group > .form-control:focus,
|
|
950
|
+
.input-group > .form-floating:focus-within {
|
|
615
951
|
z-index: 5;
|
|
616
952
|
}
|
|
617
953
|
.input-group .btn, .input-group .qbo-modal > div > div > div:nth-of-type(3) .btn-secondary, .qbo-modal > div > div > div:nth-of-type(3) .input-group .btn-secondary {
|
|
@@ -622,7 +958,15 @@ textarea.form-control {
|
|
|
622
958
|
z-index: 5;
|
|
623
959
|
}
|
|
624
960
|
|
|
625
|
-
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating)
|
|
961
|
+
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
|
|
962
|
+
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
|
|
963
|
+
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control {
|
|
964
|
+
border-top-right-radius: 0;
|
|
965
|
+
border-bottom-right-radius: 0;
|
|
966
|
+
}
|
|
967
|
+
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
|
|
968
|
+
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
|
|
969
|
+
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control {
|
|
626
970
|
border-top-right-radius: 0;
|
|
627
971
|
border-bottom-right-radius: 0;
|
|
628
972
|
}
|
|
@@ -631,6 +975,54 @@ textarea.form-control {
|
|
|
631
975
|
border-top-left-radius: 0;
|
|
632
976
|
border-bottom-left-radius: 0;
|
|
633
977
|
}
|
|
978
|
+
.input-group > .form-floating:not(:first-child) > .form-control {
|
|
979
|
+
border-top-left-radius: 0;
|
|
980
|
+
border-bottom-left-radius: 0;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.valid-feedback {
|
|
984
|
+
display: none;
|
|
985
|
+
width: 100%;
|
|
986
|
+
margin-top: 0.25rem;
|
|
987
|
+
font-size: 0.875em;
|
|
988
|
+
color: var(--bs-form-valid-color);
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.valid-tooltip {
|
|
992
|
+
position: absolute;
|
|
993
|
+
top: 100%;
|
|
994
|
+
z-index: 5;
|
|
995
|
+
display: none;
|
|
996
|
+
max-width: 100%;
|
|
997
|
+
padding: 0.25rem 0.5rem;
|
|
998
|
+
margin-top: 0.1rem;
|
|
999
|
+
font-size: 0.875rem;
|
|
1000
|
+
color: #fff;
|
|
1001
|
+
background-color: var(--bs-success);
|
|
1002
|
+
border-radius: var(--bs-border-radius);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.invalid-feedback {
|
|
1006
|
+
display: none;
|
|
1007
|
+
width: 100%;
|
|
1008
|
+
margin-top: 0.25rem;
|
|
1009
|
+
font-size: 0.875em;
|
|
1010
|
+
color: var(--bs-form-invalid-color);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.invalid-tooltip {
|
|
1014
|
+
position: absolute;
|
|
1015
|
+
top: 100%;
|
|
1016
|
+
z-index: 5;
|
|
1017
|
+
display: none;
|
|
1018
|
+
max-width: 100%;
|
|
1019
|
+
padding: 0.25rem 0.5rem;
|
|
1020
|
+
margin-top: 0.1rem;
|
|
1021
|
+
font-size: 0.875rem;
|
|
1022
|
+
color: #fff;
|
|
1023
|
+
background-color: var(--bs-danger);
|
|
1024
|
+
border-radius: var(--bs-border-radius);
|
|
1025
|
+
}
|
|
634
1026
|
|
|
635
1027
|
.btn, .qbo-modal > div > div > div:nth-of-type(3) .btn-secondary {
|
|
636
1028
|
--bs-btn-padding-x: 0.75rem;
|
|
@@ -705,7 +1097,7 @@ textarea.form-control {
|
|
|
705
1097
|
.btn-check:checked:focus-visible + .btn, .qbo-modal > div > div > div:nth-of-type(3) .btn-check:checked:focus-visible + .btn-secondary {
|
|
706
1098
|
box-shadow: var(--bs-btn-focus-box-shadow);
|
|
707
1099
|
}
|
|
708
|
-
.btn:disabled, .qbo-modal > div > div > div:nth-of-type(3) .btn-secondary:disabled, .btn.disabled, .qbo-modal > div > div > div:nth-of-type(3) .disabled.btn-secondary {
|
|
1100
|
+
.btn:disabled, .qbo-modal > div > div > div:nth-of-type(3) .btn-secondary:disabled, .btn.disabled, .qbo-modal > div > div > div:nth-of-type(3) .disabled.btn-secondary, fieldset:disabled .btn, fieldset:disabled .qbo-modal > div > div > div:nth-of-type(3) .btn-secondary, .qbo-modal > div > div > div:nth-of-type(3) fieldset:disabled .btn-secondary {
|
|
709
1101
|
color: var(--bs-btn-disabled-color);
|
|
710
1102
|
pointer-events: none;
|
|
711
1103
|
background-color: var(--bs-btn-disabled-bg);
|
|
@@ -785,6 +1177,81 @@ textarea.form-control {
|
|
|
785
1177
|
display: none;
|
|
786
1178
|
}
|
|
787
1179
|
|
|
1180
|
+
.collapsing {
|
|
1181
|
+
height: 0;
|
|
1182
|
+
overflow: hidden;
|
|
1183
|
+
transition: height 0.35s ease;
|
|
1184
|
+
}
|
|
1185
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1186
|
+
.collapsing {
|
|
1187
|
+
transition: none;
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.dropdown-toggle {
|
|
1192
|
+
white-space: nowrap;
|
|
1193
|
+
}
|
|
1194
|
+
.dropdown-toggle::after {
|
|
1195
|
+
display: inline-block;
|
|
1196
|
+
margin-left: 0.255em;
|
|
1197
|
+
vertical-align: 0.255em;
|
|
1198
|
+
content: "";
|
|
1199
|
+
border-top: 0.3em solid;
|
|
1200
|
+
border-right: 0.3em solid transparent;
|
|
1201
|
+
border-bottom: 0;
|
|
1202
|
+
border-left: 0.3em solid transparent;
|
|
1203
|
+
}
|
|
1204
|
+
.dropdown-toggle:empty::after {
|
|
1205
|
+
margin-left: 0;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.dropdown-menu {
|
|
1209
|
+
--bs-dropdown-zindex: 1000;
|
|
1210
|
+
--bs-dropdown-min-width: 10rem;
|
|
1211
|
+
--bs-dropdown-padding-x: 0;
|
|
1212
|
+
--bs-dropdown-padding-y: 0.5rem;
|
|
1213
|
+
--bs-dropdown-spacer: 0.125rem;
|
|
1214
|
+
--bs-dropdown-font-size: 1rem;
|
|
1215
|
+
--bs-dropdown-color: var(--bs-body-color);
|
|
1216
|
+
--bs-dropdown-bg: var(--bs-body-bg);
|
|
1217
|
+
--bs-dropdown-border-color: var(--bs-border-color-translucent);
|
|
1218
|
+
--bs-dropdown-border-radius: var(--bs-border-radius);
|
|
1219
|
+
--bs-dropdown-border-width: var(--bs-border-width);
|
|
1220
|
+
--bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
|
|
1221
|
+
--bs-dropdown-divider-bg: var(--bs-border-color-translucent);
|
|
1222
|
+
--bs-dropdown-divider-margin-y: 0.5rem;
|
|
1223
|
+
--bs-dropdown-box-shadow: var(--bs-box-shadow);
|
|
1224
|
+
--bs-dropdown-link-color: var(--bs-body-color);
|
|
1225
|
+
--bs-dropdown-link-hover-color: var(--bs-body-color);
|
|
1226
|
+
--bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
|
|
1227
|
+
--bs-dropdown-link-active-color: #fff;
|
|
1228
|
+
--bs-dropdown-link-active-bg: #0d6efd;
|
|
1229
|
+
--bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
|
|
1230
|
+
--bs-dropdown-item-padding-x: 1rem;
|
|
1231
|
+
--bs-dropdown-item-padding-y: 0.25rem;
|
|
1232
|
+
--bs-dropdown-header-color: #6c757d;
|
|
1233
|
+
--bs-dropdown-header-padding-x: 1rem;
|
|
1234
|
+
--bs-dropdown-header-padding-y: 0.5rem;
|
|
1235
|
+
position: absolute;
|
|
1236
|
+
z-index: var(--bs-dropdown-zindex);
|
|
1237
|
+
display: none;
|
|
1238
|
+
min-width: var(--bs-dropdown-min-width);
|
|
1239
|
+
padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
|
|
1240
|
+
margin: 0;
|
|
1241
|
+
font-size: var(--bs-dropdown-font-size);
|
|
1242
|
+
color: var(--bs-dropdown-color);
|
|
1243
|
+
text-align: left;
|
|
1244
|
+
list-style: none;
|
|
1245
|
+
background-color: var(--bs-dropdown-bg);
|
|
1246
|
+
background-clip: padding-box;
|
|
1247
|
+
border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
|
|
1248
|
+
border-radius: var(--bs-dropdown-border-radius);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.dropdown-menu.show {
|
|
1252
|
+
display: block;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
788
1255
|
.nav {
|
|
789
1256
|
--bs-nav-link-padding-x: 1rem;
|
|
790
1257
|
--bs-nav-link-padding-y: 0.5rem;
|
|
@@ -818,11 +1285,46 @@ textarea.form-control {
|
|
|
818
1285
|
border-radius: var(--bs-breadcrumb-border-radius);
|
|
819
1286
|
}
|
|
820
1287
|
|
|
1288
|
+
.alert {
|
|
1289
|
+
--bs-alert-bg: transparent;
|
|
1290
|
+
--bs-alert-padding-x: 1rem;
|
|
1291
|
+
--bs-alert-padding-y: 1rem;
|
|
1292
|
+
--bs-alert-margin-bottom: 1rem;
|
|
1293
|
+
--bs-alert-color: inherit;
|
|
1294
|
+
--bs-alert-border-color: transparent;
|
|
1295
|
+
--bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
|
|
1296
|
+
--bs-alert-border-radius: var(--bs-border-radius);
|
|
1297
|
+
--bs-alert-link-color: inherit;
|
|
1298
|
+
position: relative;
|
|
1299
|
+
padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
|
|
1300
|
+
margin-bottom: var(--bs-alert-margin-bottom);
|
|
1301
|
+
color: var(--bs-alert-color);
|
|
1302
|
+
background-color: var(--bs-alert-bg);
|
|
1303
|
+
border: var(--bs-alert-border);
|
|
1304
|
+
border-radius: var(--bs-alert-border-radius);
|
|
1305
|
+
}
|
|
1306
|
+
|
|
821
1307
|
@keyframes progress-bar-stripes {
|
|
822
1308
|
0% {
|
|
823
1309
|
background-position-x: 1rem;
|
|
824
1310
|
}
|
|
825
1311
|
}
|
|
1312
|
+
.progress {
|
|
1313
|
+
--bs-progress-height: 1rem;
|
|
1314
|
+
--bs-progress-font-size: 0.75rem;
|
|
1315
|
+
--bs-progress-bg: var(--bs-secondary-bg);
|
|
1316
|
+
--bs-progress-border-radius: var(--bs-border-radius);
|
|
1317
|
+
--bs-progress-box-shadow: var(--bs-box-shadow-inset);
|
|
1318
|
+
--bs-progress-bar-color: #fff;
|
|
1319
|
+
--bs-progress-bar-bg: #0d6efd;
|
|
1320
|
+
--bs-progress-bar-transition: width 0.6s ease;
|
|
1321
|
+
display: flex;
|
|
1322
|
+
height: var(--bs-progress-height);
|
|
1323
|
+
overflow: hidden;
|
|
1324
|
+
font-size: var(--bs-progress-font-size);
|
|
1325
|
+
background-color: var(--bs-progress-bg);
|
|
1326
|
+
border-radius: var(--bs-progress-border-radius);
|
|
1327
|
+
}
|
|
826
1328
|
|
|
827
1329
|
.list-group {
|
|
828
1330
|
--bs-list-group-color: var(--bs-body-color);
|
|
@@ -1342,6 +1844,43 @@ textarea.form-control {
|
|
|
1342
1844
|
--bs-modal-width: 1140px;
|
|
1343
1845
|
}
|
|
1344
1846
|
}
|
|
1847
|
+
.tooltip {
|
|
1848
|
+
--bs-tooltip-zindex: 1080;
|
|
1849
|
+
--bs-tooltip-max-width: 200px;
|
|
1850
|
+
--bs-tooltip-padding-x: 0.5rem;
|
|
1851
|
+
--bs-tooltip-padding-y: 0.25rem;
|
|
1852
|
+
--bs-tooltip-margin: ;
|
|
1853
|
+
--bs-tooltip-font-size: 0.875rem;
|
|
1854
|
+
--bs-tooltip-color: var(--bs-body-bg);
|
|
1855
|
+
--bs-tooltip-bg: var(--bs-emphasis-color);
|
|
1856
|
+
--bs-tooltip-border-radius: var(--bs-border-radius);
|
|
1857
|
+
--bs-tooltip-opacity: 0.9;
|
|
1858
|
+
--bs-tooltip-arrow-width: 0.8rem;
|
|
1859
|
+
--bs-tooltip-arrow-height: 0.4rem;
|
|
1860
|
+
z-index: var(--bs-tooltip-zindex);
|
|
1861
|
+
display: block;
|
|
1862
|
+
margin: var(--bs-tooltip-margin);
|
|
1863
|
+
font-family: var(--bs-font-sans-serif);
|
|
1864
|
+
font-style: normal;
|
|
1865
|
+
font-weight: 400;
|
|
1866
|
+
line-height: 1.5;
|
|
1867
|
+
text-align: left;
|
|
1868
|
+
text-align: start;
|
|
1869
|
+
text-decoration: none;
|
|
1870
|
+
text-shadow: none;
|
|
1871
|
+
text-transform: none;
|
|
1872
|
+
letter-spacing: normal;
|
|
1873
|
+
word-break: normal;
|
|
1874
|
+
white-space: normal;
|
|
1875
|
+
word-spacing: normal;
|
|
1876
|
+
line-break: auto;
|
|
1877
|
+
font-size: var(--bs-tooltip-font-size);
|
|
1878
|
+
word-wrap: break-word;
|
|
1879
|
+
opacity: 0;
|
|
1880
|
+
}
|
|
1881
|
+
.tooltip.show {
|
|
1882
|
+
opacity: var(--bs-tooltip-opacity);
|
|
1883
|
+
}
|
|
1345
1884
|
|
|
1346
1885
|
/* rtl:begin:ignore */
|
|
1347
1886
|
|
|
@@ -1448,6 +1987,23 @@ textarea.form-control {
|
|
|
1448
1987
|
}
|
|
1449
1988
|
}
|
|
1450
1989
|
|
|
1990
|
+
.ratio {
|
|
1991
|
+
position: relative;
|
|
1992
|
+
width: 100%;
|
|
1993
|
+
}
|
|
1994
|
+
.ratio::before {
|
|
1995
|
+
display: block;
|
|
1996
|
+
padding-top: var(--bs-aspect-ratio);
|
|
1997
|
+
content: "";
|
|
1998
|
+
}
|
|
1999
|
+
.ratio > * {
|
|
2000
|
+
position: absolute;
|
|
2001
|
+
top: 0;
|
|
2002
|
+
left: 0;
|
|
2003
|
+
width: 100%;
|
|
2004
|
+
height: 100%;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
1451
2007
|
.vr {
|
|
1452
2008
|
display: inline-block;
|
|
1453
2009
|
align-self: stretch;
|
|
@@ -1490,10 +2046,19 @@ textarea.form-control {
|
|
|
1490
2046
|
margin-bottom: 1rem !important;
|
|
1491
2047
|
}
|
|
1492
2048
|
|
|
2049
|
+
.p-1 {
|
|
2050
|
+
padding: 0.25rem !important;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
1493
2053
|
/* rtl:begin:remove */
|
|
1494
2054
|
|
|
1495
2055
|
/* rtl:end:remove */
|
|
1496
2056
|
|
|
2057
|
+
.bg-success {
|
|
2058
|
+
--bs-bg-opacity: 1;
|
|
2059
|
+
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
1497
2062
|
.rounded {
|
|
1498
2063
|
border-radius: var(--bs-border-radius) !important;
|
|
1499
2064
|
}
|
|
@@ -1502,4 +2067,8 @@ textarea.form-control {
|
|
|
1502
2067
|
visibility: visible !important;
|
|
1503
2068
|
}
|
|
1504
2069
|
|
|
2070
|
+
.invisible {
|
|
2071
|
+
visibility: hidden !important;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
1505
2074
|
/*# sourceMappingURL=qbo-modal.css.map */
|