@tekkare/auriga 0.1.24 → 0.1.26
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/dist/module.json +1 -1
- package/dist/runtime/components/argBtn.vue +18 -6
- package/dist/runtime/components/argBtn.vue.d.ts +20 -0
- package/dist/runtime/components/argComplexSelect.vue +96 -17
- package/dist/runtime/components/argComplexSelect.vue.d.ts +79 -9
- package/dist/runtime/components/argDate.vue +4 -1
- package/dist/runtime/components/argDate.vue.d.ts +2 -0
- package/dist/runtime/components/argDropdownSelect.vue +58 -13
- package/dist/runtime/components/argDropdownSelect.vue.d.ts +64 -7
- package/dist/runtime/components/argMultipleSelect.vue +227 -189
- package/dist/runtime/components/argMultipleSelect.vue.d.ts +67 -7
- package/dist/runtime/components/argNoSelectedScope.vue +165 -0
- package/dist/runtime/components/argNoSelectedScope.vue.d.ts +34 -0
- package/dist/runtime/components/argRadioButtons.vue +7 -3
- package/dist/runtime/components/argRadioButtons.vue.d.ts +3 -3
- package/dist/runtime/components/argSimpleLabel.vue +14 -0
- package/dist/runtime/components/argStyle.vue +137 -176
- package/dist/runtime/components/argTags.vue +1 -1
- package/package.json +1 -1
|
@@ -291,10 +291,9 @@ button {
|
|
|
291
291
|
|
|
292
292
|
.oip_btn {
|
|
293
293
|
border-radius: 8px !important;
|
|
294
|
-
padding:
|
|
294
|
+
padding: 0px 16px !important;
|
|
295
295
|
outline: none !important;
|
|
296
296
|
cursor: pointer !important;
|
|
297
|
-
max-height: 16px;
|
|
298
297
|
white-space: nowrap;
|
|
299
298
|
display: flex;
|
|
300
299
|
justify-content: center;
|
|
@@ -309,54 +308,66 @@ button {
|
|
|
309
308
|
width: fit-content;
|
|
310
309
|
}
|
|
311
310
|
|
|
312
|
-
.
|
|
311
|
+
.oip_btn_s {
|
|
312
|
+
height: 32px;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.oip_btn_m {
|
|
316
|
+
height: 40px;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.oip_full_btn {
|
|
320
|
+
width: calc(100% - 32px) !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.oip_primary-fill_button {
|
|
313
324
|
background: var(--primary) !important;
|
|
314
325
|
border: 2px solid var(--primary) !important;
|
|
315
326
|
box-shadow: var(--primary-button-shadow) !important;
|
|
316
327
|
color: var(--pure-white) !important;
|
|
317
328
|
}
|
|
318
|
-
.
|
|
329
|
+
.oip_primary-fill_button .oip_button_spinner div {
|
|
319
330
|
border: 2px solid var(--pure-white);
|
|
320
331
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
321
332
|
}
|
|
322
333
|
|
|
323
|
-
.
|
|
324
|
-
.
|
|
334
|
+
.oip_primary-fill_button:hover,
|
|
335
|
+
.oip_primary-fill_button:focus {
|
|
325
336
|
background: var(--primary-hover2) !important;
|
|
326
337
|
border: 2px solid var(--primary-hover2) !important;
|
|
327
338
|
box-shadow: none !important;
|
|
328
339
|
color: var(--pure-white) !important;
|
|
329
340
|
}
|
|
330
|
-
.
|
|
331
|
-
.
|
|
332
|
-
.
|
|
333
|
-
background: var(--
|
|
334
|
-
border: 2px solid var(--
|
|
341
|
+
.oip_primary-fill_button.is-disabled,
|
|
342
|
+
.oip_primary-fill_button.is-disabled:hover,
|
|
343
|
+
.oip_primary-fill_button.is-disabled:focus {
|
|
344
|
+
background: var(--dividers) !important;
|
|
345
|
+
border: 2px solid var(--dividers) !important;
|
|
335
346
|
box-shadow: none !important;
|
|
336
|
-
color: var(--
|
|
347
|
+
color: var(--wild-blue-yonder) !important;
|
|
337
348
|
}
|
|
338
349
|
|
|
339
|
-
.
|
|
350
|
+
.oip_primary-fill_icon_button {
|
|
340
351
|
background: var(--primary) !important;
|
|
341
352
|
border: 2px solid var(--primary) !important;
|
|
342
353
|
box-shadow: var(--primary-button-shadow) !important;
|
|
343
354
|
color: var(--pure-white) !important;
|
|
344
|
-
padding:
|
|
355
|
+
padding: 0px 6px !important;
|
|
345
356
|
}
|
|
346
357
|
|
|
347
|
-
.
|
|
358
|
+
.oip_primary-fill_icon_button .oip_button_spinner div {
|
|
348
359
|
border: 2px solid var(--pure-white);
|
|
349
360
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
350
361
|
}
|
|
351
|
-
.
|
|
352
|
-
.
|
|
362
|
+
.oip_primary-fill_icon_button:hover,
|
|
363
|
+
.oip_primary-fill_icon_button:focus {
|
|
353
364
|
background: var(--primary-hover) !important;
|
|
354
365
|
border: 2px solid var(--primary-hover) !important;
|
|
355
366
|
box-shadow: var(--primary-button-shadow) !important;
|
|
356
367
|
color: var(--pure-white) !important;
|
|
357
368
|
}
|
|
358
369
|
|
|
359
|
-
|
|
370
|
+
/*.oip_secondary_button,
|
|
360
371
|
.oip_secondary_button:hover,
|
|
361
372
|
.oip_secondary_button:focus {
|
|
362
373
|
background: var(--pure-white) !important;
|
|
@@ -379,269 +390,255 @@ button {
|
|
|
379
390
|
box-shadow: none !important;
|
|
380
391
|
color: var(--wild-blue-yonder) !important;
|
|
381
392
|
padding: 10px !important;
|
|
382
|
-
}
|
|
393
|
+
}*/
|
|
383
394
|
|
|
384
|
-
.
|
|
385
|
-
.oip_dark_button,
|
|
386
|
-
.oip_tertiary_button {
|
|
395
|
+
.oip_secondary-fill_button {
|
|
387
396
|
background: var(--independence) !important;
|
|
388
397
|
border: 2px solid var(--independence) !important;
|
|
389
398
|
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
390
399
|
color: var(--pure-white) !important;
|
|
391
400
|
}
|
|
392
401
|
|
|
393
|
-
.
|
|
394
|
-
.
|
|
395
|
-
.
|
|
396
|
-
.
|
|
397
|
-
.oip_dark_button:hover,
|
|
398
|
-
.oip_dark_button:focus,
|
|
399
|
-
.oip_terciary_icon_button:hover,
|
|
400
|
-
.oip_terciary_icon_button:focus,
|
|
401
|
-
.oip_tertiary_icon_button:hover,
|
|
402
|
-
.oip_tertiary_icon_button:focus,
|
|
403
|
-
.oip_dark_icon_button:hover,
|
|
404
|
-
.oip_dark_icon_button:focus {
|
|
402
|
+
.oip_secondary-fill_button:hover,
|
|
403
|
+
.oip_secondary-fill_button:focus,
|
|
404
|
+
.oip_secondary-fill_icon_button:hover,
|
|
405
|
+
.oip_secondary-fill_icon_button:focus {
|
|
405
406
|
background: #21223d !important;
|
|
406
407
|
border: 2px solid #21223d !important;
|
|
407
408
|
box-shadow: none !important;
|
|
408
409
|
}
|
|
409
410
|
|
|
410
|
-
.
|
|
411
|
-
.
|
|
412
|
-
.oip_tertiary_icon_button .oip_button_spinner div,
|
|
413
|
-
.oip_dark_icon_button .oip_button_spinner div {
|
|
411
|
+
.oip_secondary-fill_button .oip_button_spinner div,
|
|
412
|
+
.oip_secondary-fill_icon_button .oip_button_spinner div {
|
|
414
413
|
border: 2px solid var(--pure-white);
|
|
415
414
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
416
415
|
}
|
|
417
416
|
|
|
418
|
-
.
|
|
419
|
-
.oip_tertiary_icon_button,
|
|
420
|
-
.oip_dark_icon_button {
|
|
417
|
+
.oip_secondary-fill_icon_button {
|
|
421
418
|
background: var(--independence) !important;
|
|
422
419
|
border: 2px solid var(--independence) !important;
|
|
423
420
|
box-shadow: 4px 7px 12px 0px rgba(62, 63, 94, 0.2) !important;
|
|
424
421
|
color: var(--pure-white) !important;
|
|
425
|
-
padding:
|
|
422
|
+
padding: 0px 6px !important;
|
|
426
423
|
}
|
|
427
424
|
|
|
428
425
|
.oip_disable_button,
|
|
429
426
|
.oip_disable_button:hover,
|
|
430
427
|
.oip_disable_button:focus {
|
|
431
|
-
background: var(--
|
|
432
|
-
border: 2px solid var(--
|
|
428
|
+
background: var(--dividers) !important;
|
|
429
|
+
border: 2px solid var(--dividers) !important;
|
|
433
430
|
box-shadow: none !important;
|
|
434
|
-
color: var(--
|
|
431
|
+
color: var(--wild-blue-yonder) !important;
|
|
435
432
|
}
|
|
436
433
|
|
|
437
434
|
.oip_disable_icon_button,
|
|
438
435
|
.oip_disable_icon_button:hover,
|
|
439
436
|
.oip_disable_icon_button:focus {
|
|
440
|
-
background: var(--
|
|
441
|
-
border: 2px solid var(--
|
|
437
|
+
background: var(--dividers) !important;
|
|
438
|
+
border: 2px solid var(--dividers) !important;
|
|
442
439
|
box-shadow: none !important;
|
|
443
|
-
color: var(--
|
|
440
|
+
color: var(--wild-blue-yonder) !important;
|
|
444
441
|
}
|
|
445
442
|
|
|
446
443
|
.el-button + .el-button {
|
|
447
444
|
margin-left: 0px !important;
|
|
448
445
|
}
|
|
449
|
-
.
|
|
446
|
+
.oip_secondary-stroke_button {
|
|
450
447
|
background: transparent !important;
|
|
451
448
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
452
449
|
box-shadow: none !important;
|
|
453
450
|
color: var(--independence) !important;
|
|
454
451
|
}
|
|
455
452
|
|
|
456
|
-
.
|
|
457
|
-
.
|
|
453
|
+
.oip_secondary-stroke_button:hover,
|
|
454
|
+
.oip_secondary-stroke_button:focus {
|
|
458
455
|
background: rgba(62, 63, 94, 0.05) !important;
|
|
459
456
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
460
457
|
box-shadow: none !important;
|
|
461
458
|
color: var(--independence) !important;
|
|
462
459
|
}
|
|
463
460
|
|
|
464
|
-
.
|
|
465
|
-
.
|
|
466
|
-
.
|
|
467
|
-
.
|
|
461
|
+
.oip_secondary-stroke_button:hover .oip__button_prefix_icon,
|
|
462
|
+
.oip_secondary-stroke_button:focus .oip__button_prefix_icon,
|
|
463
|
+
.oip_secondary-stroke_button:hover .oip__button_suffix_icon,
|
|
464
|
+
.oip_secondary-stroke_button:focus .oip__button_suffix_icon {
|
|
468
465
|
stroke: var(--independence) !important;
|
|
469
466
|
color: var(--independence) !important;
|
|
470
467
|
}
|
|
471
|
-
.
|
|
472
|
-
.
|
|
468
|
+
.oip_secondary-stroke_button .oip_button_spinner div,
|
|
469
|
+
.oip_secondary-stroke_icon_button .oip_button_spinner div {
|
|
473
470
|
border: 2px solid var(--independence);
|
|
474
471
|
border-color: var(--independence) transparent transparent transparent;
|
|
475
472
|
}
|
|
476
|
-
.
|
|
473
|
+
.oip_secondary-stroke_icon_button {
|
|
477
474
|
background: transparent !important;
|
|
478
475
|
border: 2px solid rgba(62, 63, 94, 0.2) !important;
|
|
479
476
|
box-shadow: none !important;
|
|
480
477
|
color: var(--independence) !important;
|
|
481
|
-
padding:
|
|
478
|
+
padding: 0px 6px !important;
|
|
482
479
|
}
|
|
483
480
|
|
|
484
|
-
.
|
|
485
|
-
.
|
|
481
|
+
.oip_secondary-stroke_icon_button:hover,
|
|
482
|
+
.oip_secondary-stroke_icon_button:focus {
|
|
486
483
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
487
484
|
}
|
|
488
|
-
.
|
|
489
|
-
.
|
|
490
|
-
.
|
|
491
|
-
.
|
|
485
|
+
.oip_secondary-stroke_icon_button:hover svg,
|
|
486
|
+
.oip_secondary-stroke_icon_buttonn:focus svg,
|
|
487
|
+
.oip_secondary-stroke_icon_button:hover svg,
|
|
488
|
+
.oip_secondary-stroke_icon_button:focus svg {
|
|
492
489
|
stroke: var(--primary) !important;
|
|
493
490
|
color: var(--primary) !important;
|
|
494
491
|
}
|
|
495
492
|
|
|
496
|
-
.
|
|
493
|
+
.oip_primary-stroke_button {
|
|
497
494
|
background: transparent !important;
|
|
498
495
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
499
496
|
box-shadow: none !important;
|
|
500
497
|
color: var(--primary) !important;
|
|
501
498
|
}
|
|
502
499
|
|
|
503
|
-
.
|
|
504
|
-
.
|
|
505
|
-
.
|
|
506
|
-
.
|
|
500
|
+
.oip_primary-stroke_button:hover,
|
|
501
|
+
.oip_primary-stroke_button:focus,
|
|
502
|
+
.oip_primary-stroke_icon_button:hover,
|
|
503
|
+
.oip_primary-stroke_icon_button:focus {
|
|
507
504
|
background: rgba(33, 118, 255, 0.05) !important;
|
|
508
505
|
color: var(--primary-hover2) !important;
|
|
509
506
|
}
|
|
510
|
-
.
|
|
511
|
-
.
|
|
507
|
+
.oip_primary-stroke_button .oip_button_spinner div,
|
|
508
|
+
.oip_primary-stroke_icon_button .oip_button_spinner div {
|
|
512
509
|
border: 2px solid var(--primary);
|
|
513
510
|
border-color: var(--primary) transparent transparent transparent;
|
|
514
511
|
}
|
|
515
|
-
.
|
|
512
|
+
.oip_primary-stroke_icon_button {
|
|
516
513
|
background: transparent !important;
|
|
517
514
|
border: 2px solid rgba(33, 118, 255, 0.2) !important;
|
|
518
515
|
box-shadow: none !important;
|
|
519
|
-
padding:
|
|
516
|
+
padding: 0px 6px !important;
|
|
520
517
|
color: var(--primary) !important;
|
|
521
518
|
}
|
|
522
|
-
.
|
|
519
|
+
.oip_warning-stroke_button {
|
|
523
520
|
background: transparent !important;
|
|
524
521
|
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
525
522
|
box-shadow: none !important;
|
|
526
523
|
color: var(--system-alert) !important;
|
|
527
524
|
}
|
|
528
|
-
.
|
|
529
|
-
.
|
|
530
|
-
.
|
|
531
|
-
.
|
|
525
|
+
.oip_warning-stroke_button:hover,
|
|
526
|
+
.oip_warning-stroke_button:focus,
|
|
527
|
+
.oip_warning-stroke_icon_button:hover,
|
|
528
|
+
.oip_warning-stroke_icon_button:focus {
|
|
532
529
|
background: rgba(239, 68, 68, 0.2) !important;
|
|
533
530
|
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
534
531
|
color: var(--alert-hover) !important;
|
|
535
532
|
}
|
|
536
|
-
.
|
|
537
|
-
.
|
|
533
|
+
.oip_warning-stroke_button .oip_button_spinner div,
|
|
534
|
+
.oip_warning-stroke_icon_button .oip_button_spinner div {
|
|
538
535
|
border: 2px solid var(--system-alert);
|
|
539
536
|
border-color: var(--system-alert) transparent transparent transparent;
|
|
540
537
|
}
|
|
541
|
-
.
|
|
542
|
-
.
|
|
538
|
+
.oip_warning-stroke_button:hover .oip_button_spinner div,
|
|
539
|
+
.oip_warning-stroke_icon_button:hover .oip_button_spinner div {
|
|
543
540
|
border: 2px solid var(--alert-hover);
|
|
544
541
|
border-color: var(--alert-hover) transparent transparent transparent;
|
|
545
542
|
}
|
|
546
|
-
.
|
|
547
|
-
.
|
|
548
|
-
.
|
|
549
|
-
.
|
|
543
|
+
.oip_warning-stroke_button:hover .oip__button_prefix_icon,
|
|
544
|
+
.oip_warning-stroke_button:focus .oip__button_prefix_icon,
|
|
545
|
+
.oip_warning-stroke_button:hover .oip__button_suffix_icon,
|
|
546
|
+
.oip_warning-stroke_button:focus .oip__button_suffix_icon {
|
|
550
547
|
stroke: var(--alert-hover) !important;
|
|
551
548
|
color: var(--alert-hover) !important;
|
|
552
549
|
}
|
|
553
|
-
.
|
|
550
|
+
.oip_warning-stroke_icon_button {
|
|
554
551
|
background: transparent !important;
|
|
555
552
|
border: 2px solid rgba(239, 68, 68, 0.2) !important;
|
|
556
553
|
box-shadow: none !important;
|
|
557
|
-
padding:
|
|
554
|
+
padding: 0px 6px !important;
|
|
558
555
|
color: var(--system-alert) !important;
|
|
559
556
|
}
|
|
560
|
-
.
|
|
561
|
-
.
|
|
557
|
+
.oip_warning-stroke_icon_button:hover,
|
|
558
|
+
.oip_warning-stroke_icon_button:hover {
|
|
562
559
|
border: 2px solid rgba(251, 70, 84, 0.2) !important;
|
|
563
560
|
color: var(--alert-hover) !important;
|
|
564
561
|
}
|
|
565
|
-
.
|
|
566
|
-
.
|
|
562
|
+
.oip_warning-stroke_icon_button:hover svg,
|
|
563
|
+
.oip_warning-stroke_icon_button:hover svg {
|
|
567
564
|
stroke: var(--alert-hover) !important;
|
|
568
565
|
color: var(--alert-hover) !important;
|
|
569
566
|
}
|
|
570
|
-
.
|
|
567
|
+
.oip_warning-fill_button {
|
|
571
568
|
background: var(--system-alert) !important;
|
|
572
569
|
border: 2px solid rgba(239, 68, 68, 0.2);
|
|
573
570
|
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
574
571
|
color: var(--pure-white) !important;
|
|
575
572
|
}
|
|
576
|
-
.
|
|
577
|
-
.
|
|
578
|
-
.
|
|
579
|
-
.
|
|
573
|
+
.oip_warning-fill_button:hover,
|
|
574
|
+
.oip_warning-fill_button:focus,
|
|
575
|
+
.oip_warning-fill_icon_button:hover,
|
|
576
|
+
.oip_warning-fill_icon_button:focus {
|
|
580
577
|
background: var(--alert-hover) !important;
|
|
581
578
|
border: 2px solid var(--alert-hover) !important;
|
|
582
579
|
box-shadow: none !important;
|
|
583
580
|
}
|
|
584
|
-
.
|
|
585
|
-
.
|
|
581
|
+
.oip_warning-fill_button .oip_button_spinner div,
|
|
582
|
+
.oip_warning-fill_icon_button .oip_button_spinner div {
|
|
586
583
|
border: 2px solid var(--pure-white);
|
|
587
584
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
588
585
|
}
|
|
589
|
-
.
|
|
586
|
+
.oip_warning-fill_icon_button {
|
|
590
587
|
background: var(--system-alert) !important;
|
|
591
588
|
border: 2px solid var(--system-alert) !important;
|
|
592
589
|
box-shadow: 4px 7px 12px 0px rgba(239, 68, 68, 0.2) !important;
|
|
593
|
-
padding:
|
|
590
|
+
padding: 0px 6px !important;
|
|
594
591
|
color: var(--pure-white) !important;
|
|
595
592
|
}
|
|
596
593
|
|
|
597
|
-
.
|
|
594
|
+
.oip_success-fill_button {
|
|
598
595
|
background: var(--green) !important;
|
|
599
596
|
border: 2px solid var(--green) !important;
|
|
600
597
|
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
601
598
|
color: var(--pure-white) !important;
|
|
602
599
|
}
|
|
603
|
-
.
|
|
604
|
-
.
|
|
605
|
-
.
|
|
606
|
-
.
|
|
600
|
+
.oip_success-fill_button:hover,
|
|
601
|
+
.oip_success-fill_button:focus,
|
|
602
|
+
.oip_success-fill_icon_button:hover,
|
|
603
|
+
.oip_success-fill_icon_button:focus {
|
|
607
604
|
background: #2eb830 !important;
|
|
608
605
|
border: 2px solid #2eb830 !important;
|
|
609
606
|
box-shadow: none !important;
|
|
610
607
|
}
|
|
611
|
-
.
|
|
612
|
-
.
|
|
608
|
+
.oip_success-fill_button .oip_button_spinner div,
|
|
609
|
+
.oip_success-fill_icon_button .oip_button_spinner div {
|
|
613
610
|
border: 2px solid var(--pure-white);
|
|
614
611
|
border-color: var(--pure-white) transparent transparent transparent;
|
|
615
612
|
}
|
|
616
|
-
.
|
|
613
|
+
.oip_success-fill_icon_button {
|
|
617
614
|
background: var(--green) !important;
|
|
618
615
|
border: 2px solid var(--green) !important;
|
|
619
616
|
box-shadow: 4px 7px 12px 0px rgba(34, 197, 94, 0.2) !important;
|
|
620
|
-
padding:
|
|
617
|
+
padding: 0px 6px !important;
|
|
621
618
|
color: var(--pure-white) !important;
|
|
622
619
|
}
|
|
623
620
|
|
|
624
|
-
.
|
|
621
|
+
.oip_success-stroke_button {
|
|
625
622
|
background: transparent !important;
|
|
626
623
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
627
624
|
color: var(--system-success) !important;
|
|
628
625
|
}
|
|
629
|
-
.
|
|
630
|
-
.
|
|
631
|
-
.
|
|
632
|
-
.
|
|
626
|
+
.oip_success-stroke_button:hover,
|
|
627
|
+
.oip_success-stroke_button:focus,
|
|
628
|
+
.oip_success-stroke_icon_button:hover,
|
|
629
|
+
.oip_success-stroke_icon_button:focus {
|
|
633
630
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
634
631
|
background: rgba(34, 197, 94, 0.05) !important;
|
|
635
632
|
color: #069a3d !important;
|
|
636
633
|
}
|
|
637
|
-
.
|
|
638
|
-
.
|
|
634
|
+
.oip_success-stroke_button .oip_button_spinner div,
|
|
635
|
+
.oip_success-stroke_icon_button .oip_button_spinner div {
|
|
639
636
|
border: 2px solid var(--system-success);
|
|
640
637
|
border-color: var(--system-success) transparent transparent transparent;
|
|
641
638
|
}
|
|
642
|
-
.
|
|
639
|
+
.oip_success-stroke_icon_button {
|
|
643
640
|
border: 2px solid rgba(34, 197, 94, 0.2) !important;
|
|
644
|
-
padding:
|
|
641
|
+
padding: 0px 6px !important;
|
|
645
642
|
color: var(--system-success) !important;
|
|
646
643
|
}
|
|
647
644
|
.oip_button_flex {
|
|
@@ -714,7 +711,6 @@ button {
|
|
|
714
711
|
padding: 4px 8px;
|
|
715
712
|
align-items: center;
|
|
716
713
|
gap: 8px;
|
|
717
|
-
height: 16px;
|
|
718
714
|
}
|
|
719
715
|
.oip_tag > svg {
|
|
720
716
|
cursor: pointer;
|
|
@@ -725,7 +721,7 @@ button {
|
|
|
725
721
|
background-color: var(--pure-white) !important;
|
|
726
722
|
color: var(--lavendar-grey) !important;
|
|
727
723
|
}
|
|
728
|
-
.oip_tag.
|
|
724
|
+
.oip_tag.is_rose {
|
|
729
725
|
background: rgba(244, 63, 94, 0.1) !important;
|
|
730
726
|
color: #9f1239;
|
|
731
727
|
}
|
|
@@ -733,7 +729,7 @@ button {
|
|
|
733
729
|
background: rgba(236, 72, 153, 0.1) !important;
|
|
734
730
|
color: #9d174d;
|
|
735
731
|
}
|
|
736
|
-
.oip_tag.
|
|
732
|
+
.oip_tag.is_fushia {
|
|
737
733
|
background: rgba(217, 70, 239, 0.1) !important;
|
|
738
734
|
color: #86198f;
|
|
739
735
|
}
|
|
@@ -741,19 +737,23 @@ button {
|
|
|
741
737
|
background: rgba(168, 85, 247, 0.1) !important;
|
|
742
738
|
color: #6b21a8;
|
|
743
739
|
}
|
|
744
|
-
.oip_tag.
|
|
740
|
+
.oip_tag.is_violet {
|
|
745
741
|
background: rgba(139, 92, 246, 0.1) !important;
|
|
746
742
|
color: #5b21b6;
|
|
747
743
|
}
|
|
748
|
-
.oip_tag.
|
|
744
|
+
.oip_tag.is_indigo {
|
|
749
745
|
background: rgba(99, 102, 241, 0.1) !important;
|
|
750
746
|
color: #3730a3;
|
|
751
747
|
}
|
|
752
|
-
.oip_tag.
|
|
748
|
+
.oip_tag.is_blue {
|
|
749
|
+
background: rgba(59, 130, 246, 0.1) !important;
|
|
750
|
+
color: #1e40af;
|
|
751
|
+
}
|
|
752
|
+
.oip_tag.is_sky {
|
|
753
753
|
background: rgba(14, 165, 233, 0.1) !important;
|
|
754
754
|
color: #075985;
|
|
755
755
|
}
|
|
756
|
-
.oip_tag.
|
|
756
|
+
.oip_tag.is_cyan {
|
|
757
757
|
background: rgba(6, 182, 212, 0.1) !important;
|
|
758
758
|
color: #155e75;
|
|
759
759
|
}
|
|
@@ -769,7 +769,7 @@ button {
|
|
|
769
769
|
background: rgba(34, 197, 94, 0.1) !important;
|
|
770
770
|
color: #166534;
|
|
771
771
|
}
|
|
772
|
-
.oip_tag.
|
|
772
|
+
.oip_tag.is_lime {
|
|
773
773
|
background: rgba(132, 204, 22, 0.1) !important;
|
|
774
774
|
color: #3f6212;
|
|
775
775
|
}
|
|
@@ -777,67 +777,23 @@ button {
|
|
|
777
777
|
background: rgba(234, 179, 8, 0.1) !important;
|
|
778
778
|
color: #854d0e;
|
|
779
779
|
}
|
|
780
|
-
.oip_tag.
|
|
780
|
+
.oip_tag.is_amber {
|
|
781
781
|
background: rgba(245, 158, 11, 0.1) !important;
|
|
782
782
|
color: #92400e;
|
|
783
783
|
}
|
|
784
|
-
.oip_tag.
|
|
784
|
+
.oip_tag.is_orange {
|
|
785
785
|
background: rgba(249, 115, 22, 0.1) !important;
|
|
786
786
|
color: #9a3412;
|
|
787
787
|
}
|
|
788
788
|
|
|
789
|
-
.oip_tag.
|
|
790
|
-
background: var(--orange) !important;
|
|
791
|
-
border: 1px solid var(--orange) !important;
|
|
792
|
-
}
|
|
793
|
-
.oip_tag.is_lime {
|
|
794
|
-
background: var(--lime) !important;
|
|
795
|
-
border: 1px solid var(--lime) !important;
|
|
796
|
-
}
|
|
797
|
-
.oip_tag.is_cyan {
|
|
798
|
-
background: var(--cyan) !important;
|
|
799
|
-
border: 1px solid var(--cyan) !important;
|
|
800
|
-
}
|
|
801
|
-
.oip_tag.is_primary {
|
|
802
|
-
background: var(--primary) !important;
|
|
803
|
-
border: 1px solid var(--primary) !important;
|
|
804
|
-
}
|
|
805
|
-
.oip_tag.is_accent {
|
|
806
|
-
background: var(--accent) !important;
|
|
807
|
-
border: 1px solid var(--accent) !important;
|
|
808
|
-
}
|
|
809
|
-
.oip_tag.is_alert {
|
|
810
|
-
background: var(--alert) !important;
|
|
811
|
-
border: 1px solid var(--alert) !important;
|
|
812
|
-
}
|
|
813
|
-
.oip_tag.is_warning {
|
|
814
|
-
background: var(--warning) !important;
|
|
815
|
-
border: 1px solid var(--warning) !important;
|
|
816
|
-
}
|
|
817
|
-
.oip_tag.is_success {
|
|
818
|
-
background: var(--success) !important;
|
|
819
|
-
border: 1px solid var(--success) !important;
|
|
820
|
-
}
|
|
821
|
-
.oip_tag.is_light_grey {
|
|
789
|
+
.oip_tag.is_gray {
|
|
822
790
|
background: var(--background) !important;
|
|
823
791
|
color: var(--independence) !important;
|
|
824
792
|
}
|
|
825
|
-
.oip_tag.
|
|
793
|
+
.oip_tag.is_gray svg {
|
|
826
794
|
stroke: var(--cool-grey);
|
|
827
795
|
color: var(--cool-grey);
|
|
828
796
|
}
|
|
829
|
-
.oip_tag.is_light_red {
|
|
830
|
-
background: rgba(251, 70, 84, 0.1) !important;
|
|
831
|
-
color: var(--alert) !important;
|
|
832
|
-
}
|
|
833
|
-
.oip_tag.is_light_green {
|
|
834
|
-
background: rgba(50, 209, 117, 0.1) !important;
|
|
835
|
-
color: var(--success) !important;
|
|
836
|
-
}
|
|
837
|
-
.oip_tag.is_light_primary {
|
|
838
|
-
background: #e9f1ff !important;
|
|
839
|
-
color: var(--primary) !important;
|
|
840
|
-
}
|
|
841
797
|
.oip_tag .oip_tag__close {
|
|
842
798
|
display: inline-block;
|
|
843
799
|
cursor: pointer;
|
|
@@ -1040,4 +996,9 @@ button {
|
|
|
1040
996
|
align-items: flex-start;
|
|
1041
997
|
gap: 4px;
|
|
1042
998
|
}
|
|
999
|
+
|
|
1000
|
+
.arg_page {
|
|
1001
|
+
height: 100%;
|
|
1002
|
+
width: 100%;
|
|
1003
|
+
}
|
|
1043
1004
|
</style>
|
|
@@ -18,7 +18,7 @@ export default defineComponent({
|
|
|
18
18
|
name: "argTags",
|
|
19
19
|
components: { argIcon, argStyle },
|
|
20
20
|
props: {
|
|
21
|
-
setStyle: { type: String, default: "
|
|
21
|
+
setStyle: { type: String, default: "gray" },
|
|
22
22
|
haveClose: { type: Boolean, default: false }
|
|
23
23
|
},
|
|
24
24
|
emits: ["onClose"],
|