kaui 4.0.14 → 4.0.16
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/kaui/multi_functions_bar_utils.js +55 -13
- data/app/assets/stylesheets/kaui/account.css +170 -2
- data/app/assets/stylesheets/kaui/common.css +243 -0
- data/app/assets/stylesheets/kaui/invoice.css +148 -2
- data/app/assets/stylesheets/kaui/payment.css +148 -2
- data/app/assets/stylesheets/kaui/queues.css +176 -88
- data/app/assets/stylesheets/kaui/tenants.css +2 -1
- data/app/controllers/kaui/admin_tenants_controller.rb +25 -0
- data/app/controllers/kaui/engine_controller.rb +2 -1
- data/app/controllers/kaui/engine_controller_util.rb +26 -2
- data/app/controllers/kaui/invoices_controller.rb +3 -3
- data/app/controllers/kaui/payments_controller.rb +3 -3
- data/app/views/kaui/accounts/_account_filterbar.html.erb +10 -212
- data/app/views/kaui/accounts/index.html.erb +9 -2
- data/app/views/kaui/admin_tenants/_show_overdue.erb +11 -0
- data/app/views/kaui/bundles/_bundle_filterbar.html.erb +56 -39
- data/app/views/kaui/invoices/_invoice_filterbar.html.erb +15 -226
- data/app/views/kaui/invoices/index.html.erb +3 -3
- data/app/views/kaui/payments/_payment_filterbar.html.erb +15 -212
- data/app/views/kaui/queues/index.html.erb +212 -191
- data/app/views/kaui/shared/_advanced_search_filterbar.html.erb +253 -0
- data/config/locales/en.yml +32 -0
- data/config/routes.rb +2 -1
- data/lib/kaui/error_handler.rb +2 -1
- data/lib/kaui/version.rb +1 -1
- metadata +3 -2
|
@@ -497,9 +497,15 @@ table.invoice-totals tr:last-of-type {
|
|
|
497
497
|
background: transparent;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
+
.invoice-index #advanceSearchModal .modal-dialog {
|
|
501
|
+
max-width: 52rem;
|
|
502
|
+
width: calc(100% - 2rem);
|
|
503
|
+
}
|
|
504
|
+
|
|
500
505
|
.invoice-index .modal-content {
|
|
501
506
|
border-radius: 1rem;
|
|
502
507
|
min-width: 40.5rem;
|
|
508
|
+
width: 100%;
|
|
503
509
|
}
|
|
504
510
|
|
|
505
511
|
.invoice-index .modal-body {
|
|
@@ -512,9 +518,74 @@ table.invoice-totals tr:last-of-type {
|
|
|
512
518
|
}
|
|
513
519
|
|
|
514
520
|
.invoice-index .modal-footer {
|
|
521
|
+
align-items: center;
|
|
522
|
+
border-top: 0.0625rem solid #E9EAEB;
|
|
523
|
+
display: flex;
|
|
524
|
+
gap: 0.75rem;
|
|
525
|
+
justify-content: space-between;
|
|
515
526
|
padding: 1rem 1.5rem 1.5rem 1.5rem !important;
|
|
516
527
|
}
|
|
517
528
|
|
|
529
|
+
.invoice-index .advanced-search-footer-left,
|
|
530
|
+
.invoice-index .advanced-search-footer-right {
|
|
531
|
+
display: flex;
|
|
532
|
+
align-items: center;
|
|
533
|
+
gap: 0.75rem;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.invoice-index .advanced-search-button {
|
|
537
|
+
border-radius: 0.75rem;
|
|
538
|
+
font-size: 0.875rem;
|
|
539
|
+
font-weight: 600;
|
|
540
|
+
height: 2.75rem;
|
|
541
|
+
justify-content: center;
|
|
542
|
+
line-height: 1.25rem;
|
|
543
|
+
min-width: 7.75rem;
|
|
544
|
+
padding: 0.625rem 1rem;
|
|
545
|
+
text-transform: none;
|
|
546
|
+
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.invoice-index .advanced-search-button:focus {
|
|
550
|
+
box-shadow: 0 0 0 0.25rem rgba(46, 144, 250, 0.16);
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.invoice-index .advanced-search-button-secondary {
|
|
554
|
+
background: #FFFFFF;
|
|
555
|
+
border: 0.0625rem solid #B2DDFF;
|
|
556
|
+
color: #175CD3;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.invoice-index .advanced-search-button-secondary:hover {
|
|
560
|
+
background: #EFF6FF;
|
|
561
|
+
border-color: #84CAFF;
|
|
562
|
+
color: #175CD3;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.invoice-index .advanced-search-button-ghost {
|
|
566
|
+
background: #FFFFFF;
|
|
567
|
+
border: 0.0625rem solid #D5D7DA;
|
|
568
|
+
color: #414651;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.invoice-index .advanced-search-button-ghost:hover {
|
|
572
|
+
background: #FAFAFA;
|
|
573
|
+
border-color: #A4A7AE;
|
|
574
|
+
color: #181D27;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.invoice-index .advanced-search-button-primary {
|
|
578
|
+
background: #2E90FA;
|
|
579
|
+
border: 0.0625rem solid #2E90FA;
|
|
580
|
+
color: #FFFFFF;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.invoice-index .advanced-search-button-primary:hover {
|
|
584
|
+
background: #175CD3;
|
|
585
|
+
border-color: #175CD3;
|
|
586
|
+
color: #FFFFFF;
|
|
587
|
+
}
|
|
588
|
+
|
|
518
589
|
.invoice-index .modal-title {
|
|
519
590
|
font-weight: 600;
|
|
520
591
|
font-size: 1.125rem;
|
|
@@ -636,10 +707,84 @@ table.invoice-totals tr:last-of-type {
|
|
|
636
707
|
}
|
|
637
708
|
|
|
638
709
|
.invoice-index #search-fields-container {
|
|
710
|
+
display: flex;
|
|
711
|
+
flex-direction: column;
|
|
712
|
+
margin: 0;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.invoice-index .advanced-search-builder {
|
|
639
716
|
display: flex;
|
|
640
717
|
flex-direction: column;
|
|
641
718
|
gap: 1rem;
|
|
642
|
-
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.invoice-index .advanced-search-group {
|
|
722
|
+
background: #EFF6FF;
|
|
723
|
+
border: 0.125rem solid #B2DDFF;
|
|
724
|
+
border-radius: 0.75rem;
|
|
725
|
+
padding: 1rem;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.invoice-index .advanced-search-rules {
|
|
729
|
+
gap: 0;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.invoice-index .search-field {
|
|
733
|
+
display: flex;
|
|
734
|
+
flex-direction: column;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.invoice-index .search-field + .search-field::before {
|
|
738
|
+
align-self: center;
|
|
739
|
+
color: #2E90FA;
|
|
740
|
+
content: 'AND';
|
|
741
|
+
font-size: 0.875rem;
|
|
742
|
+
font-weight: 700;
|
|
743
|
+
line-height: 1.25rem;
|
|
744
|
+
padding: 0.75rem 0;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.invoice-index .advanced-search-rule-row {
|
|
748
|
+
align-items: center;
|
|
749
|
+
background: #FFFFFF;
|
|
750
|
+
border-radius: 0.75rem;
|
|
751
|
+
display: grid;
|
|
752
|
+
gap: 0.75rem;
|
|
753
|
+
grid-template-columns: minmax(10rem, 1fr) minmax(13.75rem, 1.1fr) minmax(12rem, 1.6fr) 2.5rem;
|
|
754
|
+
padding: 0.75rem;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.invoice-index .advanced-search-rule-row .search-field-filter {
|
|
758
|
+
min-width: 13.75rem;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.invoice-index .advanced-search-rule-row .form-control {
|
|
762
|
+
height: 2.5rem;
|
|
763
|
+
margin-right: 0;
|
|
764
|
+
border-radius: 0.375rem;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.invoice-index .advanced-search-rule-row .form-control:focus {
|
|
768
|
+
outline: none;
|
|
769
|
+
box-shadow: none;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.invoice-index .advanced-search-add-rule {
|
|
773
|
+
align-items: center;
|
|
774
|
+
align-self: flex-start;
|
|
775
|
+
background: #FFFFFF;
|
|
776
|
+
border: 0.0625rem solid #D5D7DA;
|
|
777
|
+
border-radius: 0.75rem;
|
|
778
|
+
color: #535862;
|
|
779
|
+
display: inline-flex;
|
|
780
|
+
font-weight: 500;
|
|
781
|
+
gap: 0.5rem;
|
|
782
|
+
height: 2.75rem;
|
|
783
|
+
padding: 0.625rem 1rem;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.invoice-index .advanced-search-add-rule:hover {
|
|
787
|
+
background: #FFFFFF;
|
|
643
788
|
}
|
|
644
789
|
|
|
645
790
|
.invoice-index .filter-bar-container {
|
|
@@ -673,7 +818,8 @@ table.invoice-totals tr:last-of-type {
|
|
|
673
818
|
height: 1.25rem;
|
|
674
819
|
}
|
|
675
820
|
|
|
676
|
-
.invoice-index .form-group select.form-control
|
|
821
|
+
.invoice-index .form-group select.form-control,
|
|
822
|
+
.invoice-index .advanced-search-rule-row select.form-control {
|
|
677
823
|
appearance: none;
|
|
678
824
|
-webkit-appearance: none;
|
|
679
825
|
-moz-appearance: none;
|
|
@@ -444,9 +444,15 @@
|
|
|
444
444
|
|
|
445
445
|
/* app/views/kaui/payments/_payment_filterbar.html.erb */
|
|
446
446
|
|
|
447
|
+
.payments-index #advanceSearchModal .modal-dialog {
|
|
448
|
+
max-width: 52rem;
|
|
449
|
+
width: calc(100% - 2rem);
|
|
450
|
+
}
|
|
451
|
+
|
|
447
452
|
.payments-index .modal-content {
|
|
448
453
|
border-radius: 1rem;
|
|
449
454
|
min-width: 40.5rem;
|
|
455
|
+
width: 100%;
|
|
450
456
|
}
|
|
451
457
|
|
|
452
458
|
.payments-index .modal-body {
|
|
@@ -459,9 +465,74 @@
|
|
|
459
465
|
}
|
|
460
466
|
|
|
461
467
|
.payments-index .modal-footer {
|
|
468
|
+
align-items: center;
|
|
469
|
+
border-top: 0.0625rem solid #E9EAEB;
|
|
470
|
+
display: flex;
|
|
471
|
+
gap: 0.75rem;
|
|
472
|
+
justify-content: space-between;
|
|
462
473
|
padding: 1rem 1.5rem 1.5rem 1.5rem !important;
|
|
463
474
|
}
|
|
464
475
|
|
|
476
|
+
.payments-index .advanced-search-footer-left,
|
|
477
|
+
.payments-index .advanced-search-footer-right {
|
|
478
|
+
display: flex;
|
|
479
|
+
align-items: center;
|
|
480
|
+
gap: 0.75rem;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.payments-index .advanced-search-button {
|
|
484
|
+
border-radius: 0.75rem;
|
|
485
|
+
font-size: 0.875rem;
|
|
486
|
+
font-weight: 600;
|
|
487
|
+
height: 2.75rem;
|
|
488
|
+
justify-content: center;
|
|
489
|
+
line-height: 1.25rem;
|
|
490
|
+
min-width: 7.75rem;
|
|
491
|
+
padding: 0.625rem 1rem;
|
|
492
|
+
text-transform: none;
|
|
493
|
+
transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.payments-index .advanced-search-button:focus {
|
|
497
|
+
box-shadow: 0 0 0 0.25rem rgba(46, 144, 250, 0.16);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.payments-index .advanced-search-button-secondary {
|
|
501
|
+
background: #FFFFFF;
|
|
502
|
+
border: 0.0625rem solid #B2DDFF;
|
|
503
|
+
color: #175CD3;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.payments-index .advanced-search-button-secondary:hover {
|
|
507
|
+
background: #EFF6FF;
|
|
508
|
+
border-color: #84CAFF;
|
|
509
|
+
color: #175CD3;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.payments-index .advanced-search-button-ghost {
|
|
513
|
+
background: #FFFFFF;
|
|
514
|
+
border: 0.0625rem solid #D5D7DA;
|
|
515
|
+
color: #414651;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.payments-index .advanced-search-button-ghost:hover {
|
|
519
|
+
background: #FAFAFA;
|
|
520
|
+
border-color: #A4A7AE;
|
|
521
|
+
color: #181D27;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.payments-index .advanced-search-button-primary {
|
|
525
|
+
background: #2E90FA;
|
|
526
|
+
border: 0.0625rem solid #2E90FA;
|
|
527
|
+
color: #FFFFFF;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.payments-index .advanced-search-button-primary:hover {
|
|
531
|
+
background: #175CD3;
|
|
532
|
+
border-color: #175CD3;
|
|
533
|
+
color: #FFFFFF;
|
|
534
|
+
}
|
|
535
|
+
|
|
465
536
|
.payments-index .modal-title {
|
|
466
537
|
font-weight: 600;
|
|
467
538
|
font-size: 1.125rem;
|
|
@@ -583,10 +654,84 @@
|
|
|
583
654
|
}
|
|
584
655
|
|
|
585
656
|
.payments-index #search-fields-container {
|
|
657
|
+
display: flex;
|
|
658
|
+
flex-direction: column;
|
|
659
|
+
margin: 0;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.payments-index .advanced-search-builder {
|
|
586
663
|
display: flex;
|
|
587
664
|
flex-direction: column;
|
|
588
665
|
gap: 1rem;
|
|
589
|
-
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.payments-index .advanced-search-group {
|
|
669
|
+
background: #EFF6FF;
|
|
670
|
+
border: 0.125rem solid #B2DDFF;
|
|
671
|
+
border-radius: 0.75rem;
|
|
672
|
+
padding: 1rem;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.payments-index .advanced-search-rules {
|
|
676
|
+
gap: 0;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.payments-index .search-field {
|
|
680
|
+
display: flex;
|
|
681
|
+
flex-direction: column;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.payments-index .search-field + .search-field::before {
|
|
685
|
+
align-self: center;
|
|
686
|
+
color: #2E90FA;
|
|
687
|
+
content: 'AND';
|
|
688
|
+
font-size: 0.875rem;
|
|
689
|
+
font-weight: 700;
|
|
690
|
+
line-height: 1.25rem;
|
|
691
|
+
padding: 0.75rem 0;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.payments-index .advanced-search-rule-row {
|
|
695
|
+
align-items: center;
|
|
696
|
+
background: #FFFFFF;
|
|
697
|
+
border-radius: 0.75rem;
|
|
698
|
+
display: grid;
|
|
699
|
+
gap: 0.75rem;
|
|
700
|
+
grid-template-columns: minmax(10rem, 1fr) minmax(13.75rem, 1.1fr) minmax(12rem, 1.6fr) 2.5rem;
|
|
701
|
+
padding: 0.75rem;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.payments-index .advanced-search-rule-row .search-field-filter {
|
|
705
|
+
min-width: 13.75rem;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.payments-index .advanced-search-rule-row .form-control {
|
|
709
|
+
height: 2.5rem;
|
|
710
|
+
margin-right: 0;
|
|
711
|
+
border-radius: 0.375rem;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.payments-index .advanced-search-rule-row .form-control:focus {
|
|
715
|
+
outline: none;
|
|
716
|
+
box-shadow: none;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.payments-index .advanced-search-add-rule {
|
|
720
|
+
align-items: center;
|
|
721
|
+
align-self: flex-start;
|
|
722
|
+
background: #FFFFFF;
|
|
723
|
+
border: 0.0625rem solid #D5D7DA;
|
|
724
|
+
border-radius: 0.75rem;
|
|
725
|
+
color: #535862;
|
|
726
|
+
display: inline-flex;
|
|
727
|
+
font-weight: 500;
|
|
728
|
+
gap: 0.5rem;
|
|
729
|
+
height: 2.75rem;
|
|
730
|
+
padding: 0.625rem 1rem;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.payments-index .advanced-search-add-rule:hover {
|
|
734
|
+
background: #FFFFFF;
|
|
590
735
|
}
|
|
591
736
|
|
|
592
737
|
.payments-index .filter-bar-container {
|
|
@@ -620,7 +765,8 @@
|
|
|
620
765
|
height: 1.25rem;
|
|
621
766
|
}
|
|
622
767
|
|
|
623
|
-
.payments-index .form-group select.form-control
|
|
768
|
+
.payments-index .form-group select.form-control,
|
|
769
|
+
.payments-index .advanced-search-rule-row select.form-control {
|
|
624
770
|
appearance: none;
|
|
625
771
|
-webkit-appearance: none;
|
|
626
772
|
-moz-appearance: none;
|
|
@@ -1,71 +1,199 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* ── Page header ─────────────────────────────────────────── */
|
|
2
|
+
.kaui-queues-index .queues-main-header {
|
|
3
|
+
padding: 0;
|
|
3
4
|
}
|
|
4
5
|
|
|
5
|
-
.kaui-queues-index .queues
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
.kaui-queues-index .queues-title {
|
|
7
|
+
font-weight: 600;
|
|
8
|
+
font-size: 1.5rem;
|
|
9
|
+
line-height: 2rem;
|
|
10
|
+
color: #181d27;
|
|
11
|
+
margin-bottom: 0.25rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.kaui-queues-index .queues-subtitle {
|
|
15
|
+
font-size: 0.875rem;
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
color: #535862;
|
|
18
|
+
margin-bottom: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* ── Main card ───────────────────────────────────────────── */
|
|
22
|
+
.kaui-queues-index .queues-card {
|
|
23
|
+
background: #ffffff;
|
|
24
|
+
border: 0.0625rem solid #e9eaeb;
|
|
25
|
+
border-radius: 0.75rem;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* ── Tab navigation ──────────────────────────────────────── */
|
|
30
|
+
.kaui-queues-index .queues-nav-tabs {
|
|
10
31
|
border-bottom: 0.0625rem solid #e9eaeb;
|
|
32
|
+
gap: 0.25rem;
|
|
11
33
|
}
|
|
12
34
|
|
|
13
|
-
.kaui-queues-index .queues .queues-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
35
|
+
.kaui-queues-index .queues-nav-tabs .queues-tab-link {
|
|
36
|
+
display: inline-flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
padding: 0.75rem 0.25rem;
|
|
39
|
+
margin-bottom: -0.0625rem;
|
|
40
|
+
border: none;
|
|
41
|
+
border-bottom: 0.125rem solid transparent;
|
|
42
|
+
border-radius: 0;
|
|
43
|
+
color: #717680;
|
|
44
|
+
font-weight: 500;
|
|
45
|
+
font-size: 0.875rem;
|
|
46
|
+
line-height: 1.25rem;
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
background: transparent;
|
|
49
|
+
margin-right: 0.75rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.kaui-queues-index .queues-nav-tabs .queues-tab-link:hover {
|
|
17
53
|
color: #414651;
|
|
18
|
-
|
|
54
|
+
border-bottom-color: #d1d5db;
|
|
19
55
|
}
|
|
20
56
|
|
|
21
|
-
.kaui-queues-index .queues .
|
|
22
|
-
|
|
23
|
-
border:
|
|
24
|
-
|
|
25
|
-
|
|
57
|
+
.kaui-queues-index .queues-nav-tabs .queues-tab-link.active {
|
|
58
|
+
color: #175cd3;
|
|
59
|
+
border-bottom-color: #1570ef;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.kaui-queues-index .queues-nav-tabs .queues-tab-link .tab-icon {
|
|
63
|
+
opacity: 0.5;
|
|
64
|
+
transition: opacity 0.15s ease, filter 0.15s ease;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.kaui-queues-index .queues-nav-tabs .queues-tab-link.active .tab-icon {
|
|
68
|
+
opacity: 1;
|
|
69
|
+
filter: invert(28%) sepia(94%) saturate(1453%) hue-rotate(197deg) brightness(90%) contrast(101%);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* ── Tab pane inner ──────────────────────────────────────── */
|
|
73
|
+
.kaui-queues-index .queues-pane-inner {
|
|
74
|
+
padding: 1.5rem;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* ── Controls bar (time scope + search) ──────────────────── */
|
|
78
|
+
.kaui-queues-index .queues-controls-bar {
|
|
26
79
|
display: flex;
|
|
27
|
-
flex-direction: row;
|
|
28
80
|
align-items: center;
|
|
29
|
-
justify-content:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
height: 2.5rem;
|
|
81
|
+
justify-content: space-between;
|
|
82
|
+
padding: 1rem 1.25rem;
|
|
83
|
+
background: #ffffff;
|
|
84
|
+
border: 0.0625rem solid #e9eaeb;
|
|
85
|
+
border-radius: 0.5rem;
|
|
35
86
|
}
|
|
36
87
|
|
|
37
|
-
.kaui-queues-index .
|
|
88
|
+
.kaui-queues-index .time-scope-label {
|
|
38
89
|
font-weight: 500;
|
|
39
|
-
font-size:
|
|
90
|
+
font-size: 0.875rem;
|
|
91
|
+
color: #414651;
|
|
92
|
+
white-space: nowrap;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* ── Time scope toggle buttons ───────────────────────────── */
|
|
96
|
+
.kaui-queues-index .time-scope-btn {
|
|
97
|
+
display: inline-flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
gap: 0.5rem;
|
|
100
|
+
padding: 0.4375rem 0.875rem;
|
|
101
|
+
border: 0.0625rem solid #d5d7da;
|
|
102
|
+
border-radius: 0.375rem;
|
|
103
|
+
background: #ffffff;
|
|
104
|
+
color: #414651;
|
|
105
|
+
font-weight: 500;
|
|
106
|
+
font-size: 0.875rem;
|
|
40
107
|
line-height: 1.25rem;
|
|
41
|
-
color: #717680;
|
|
42
|
-
padding: 0.375rem 0;
|
|
43
|
-
border-radius: 0.25rem;
|
|
44
108
|
text-decoration: none;
|
|
45
|
-
|
|
46
|
-
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
transition: border-color 0.15s ease, color 0.15s ease;
|
|
111
|
+
white-space: nowrap;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.kaui-queues-index .time-scope-btn:hover {
|
|
115
|
+
border-color: #1570ef;
|
|
116
|
+
color: #175cd3;
|
|
117
|
+
text-decoration: none;
|
|
47
118
|
}
|
|
48
119
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
120
|
+
.kaui-queues-index .time-scope-btn.active {
|
|
121
|
+
border-color: #1570ef;
|
|
122
|
+
color: #175cd3;
|
|
123
|
+
background: #eff6ff;
|
|
53
124
|
}
|
|
54
125
|
|
|
55
|
-
|
|
126
|
+
/* ── Radio dot indicator ─────────────────────────────────── */
|
|
127
|
+
.kaui-queues-index .radio-dot {
|
|
128
|
+
display: inline-block;
|
|
129
|
+
flex-shrink: 0;
|
|
130
|
+
width: 0.9375rem;
|
|
131
|
+
height: 0.9375rem;
|
|
132
|
+
border-radius: 50%;
|
|
133
|
+
border: 0.125rem solid #d1d5db;
|
|
134
|
+
background: #ffffff;
|
|
135
|
+
transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.kaui-queues-index .time-scope-btn.active .radio-dot {
|
|
139
|
+
border-color: #1570ef;
|
|
140
|
+
background-color: #1570ef;
|
|
141
|
+
box-shadow: inset 0 0 0 0.1875rem #ffffff;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* ── Search bar ──────────────────────────────────────────── */
|
|
145
|
+
.kaui-queues-index .queues-search-bar {
|
|
146
|
+
display: flex;
|
|
147
|
+
align-items: center;
|
|
148
|
+
gap: 0.5rem;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.kaui-queues-index .search-label {
|
|
152
|
+
font-weight: 500;
|
|
153
|
+
font-size: 0.875rem;
|
|
56
154
|
color: #414651;
|
|
57
|
-
|
|
58
|
-
box-shadow: 0rem 0.0625rem 0.125rem -0.0625rem #0a0d121a;
|
|
59
|
-
box-shadow: 0rem 0.0625rem 0.1875rem 0rem #0a0d121a;
|
|
155
|
+
white-space: nowrap;
|
|
60
156
|
}
|
|
61
157
|
|
|
62
|
-
.kaui-queues-index
|
|
63
|
-
|
|
158
|
+
.kaui-queues-index .search-input-group {
|
|
159
|
+
position: relative;
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.kaui-queues-index .queues-search-input {
|
|
165
|
+
width: 20rem;
|
|
166
|
+
height: 2.25rem;
|
|
167
|
+
padding: 0.375rem 2.25rem 0.375rem 0.875rem;
|
|
168
|
+
border: 0.0625rem solid #e5e7eb;
|
|
169
|
+
border-radius: 0.375rem;
|
|
170
|
+
font-weight: 500;
|
|
171
|
+
font-size: 0.875rem;
|
|
172
|
+
line-height: 1.25rem;
|
|
173
|
+
color: #414651;
|
|
174
|
+
outline: none;
|
|
175
|
+
transition: border-color 0.15s ease;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.kaui-queues-index .queues-search-input:focus {
|
|
179
|
+
border-color: #1570ef;
|
|
180
|
+
box-shadow: 0 0 0 0.1875rem rgba(21, 112, 239, 0.12);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.kaui-queues-index .queues-search-input::placeholder {
|
|
184
|
+
color: #9ca3af;
|
|
185
|
+
font-weight: 400;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.kaui-queues-index .search-icon {
|
|
64
189
|
position: absolute;
|
|
65
|
-
|
|
66
|
-
|
|
190
|
+
right: 0.625rem;
|
|
191
|
+
display: flex;
|
|
192
|
+
align-items: center;
|
|
193
|
+
pointer-events: none;
|
|
67
194
|
}
|
|
68
195
|
|
|
196
|
+
/* ── Tables ──────────────────────────────────────────────── */
|
|
69
197
|
.kaui-queues-index .queues .bus-table td,
|
|
70
198
|
.kaui-queues-index .queues .notifications-table td {
|
|
71
199
|
font-weight: 500 !important;
|
|
@@ -121,26 +249,7 @@
|
|
|
121
249
|
text-align: left;
|
|
122
250
|
}
|
|
123
251
|
|
|
124
|
-
|
|
125
|
-
color: #717680;
|
|
126
|
-
display: flex;
|
|
127
|
-
align-items: center;
|
|
128
|
-
padding: 0.5rem 1rem;
|
|
129
|
-
font-weight: 500;
|
|
130
|
-
font-size: 0.875rem;
|
|
131
|
-
line-height: 1.25rem;
|
|
132
|
-
letter-spacing: 0;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.kaui-queues-index
|
|
136
|
-
.queues
|
|
137
|
-
.pagination
|
|
138
|
-
a:not(:first-child):not(:last-child).btn-primary {
|
|
139
|
-
color: #414651;
|
|
140
|
-
background-color: #f5f5f5 !important;
|
|
141
|
-
border: 0 !important;
|
|
142
|
-
}
|
|
143
|
-
|
|
252
|
+
/* ── Pagination ──────────────────────────────────────────── */
|
|
144
253
|
.kaui-queues-index .queues .dataTables_paginate {
|
|
145
254
|
display: flex;
|
|
146
255
|
align-items: center;
|
|
@@ -171,7 +280,9 @@
|
|
|
171
280
|
color: #414651 !important;
|
|
172
281
|
}
|
|
173
282
|
|
|
283
|
+
.kaui-queues-index .queues .dataTables_paginate .paginate_button.first,
|
|
174
284
|
.kaui-queues-index .queues .dataTables_paginate .paginate_button.last,
|
|
285
|
+
.kaui-queues-index .queues .dataTables_paginate .paginate_button.next,
|
|
175
286
|
.kaui-queues-index .queues .dataTables_paginate .paginate_button.previous {
|
|
176
287
|
border: 0.0625rem solid #e5e7eb;
|
|
177
288
|
border-radius: 0.5rem;
|
|
@@ -180,23 +291,13 @@
|
|
|
180
291
|
color: #374151;
|
|
181
292
|
}
|
|
182
293
|
|
|
183
|
-
.kaui-queues-index .queues #bus-table_wrapper .table-wrapper,
|
|
184
|
-
.kaui-queues-index .queues #notifications-table_wrapper .table-wrapper {
|
|
185
|
-
margin-bottom: 1rem;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
294
|
.kaui-queues-index .queues #bus-table_wrapper .row:nth-of-type(2),
|
|
189
295
|
.kaui-queues-index .queues #notifications-table_wrapper .row:nth-of-type(2) {
|
|
190
296
|
margin-top: 1.5rem;
|
|
191
297
|
}
|
|
192
298
|
|
|
193
|
-
/*
|
|
194
|
-
.kaui-queues-index #notifications-table_wrapper {
|
|
195
|
-
max-width: <%= params[:account_id].present? ? '67.5625rem' : '80rem' %>;
|
|
196
|
-
} */
|
|
197
|
-
|
|
299
|
+
/* ── Table wrapper ───────────────────────────────────────── */
|
|
198
300
|
.kaui-queues-index .table-wrapper {
|
|
199
|
-
/* max-width: <%= params[:account_id].present? ? '67.5625rem' : '80rem' %> !important; */
|
|
200
301
|
overflow-x: auto !important;
|
|
201
302
|
width: 100% !important;
|
|
202
303
|
}
|
|
@@ -209,20 +310,7 @@
|
|
|
209
310
|
max-width: 80rem;
|
|
210
311
|
}
|
|
211
312
|
|
|
212
|
-
|
|
213
|
-
.kaui-queues-index .queues #notifications-table_filter input {
|
|
214
|
-
width: 20rem;
|
|
215
|
-
height: 2.2rem;
|
|
216
|
-
padding: 0.3rem 1rem;
|
|
217
|
-
border: 0.0625rem solid #e5e7eb;
|
|
218
|
-
border-radius: 0.375rem;
|
|
219
|
-
font-weight: 500;
|
|
220
|
-
font-size: 0.875rem;
|
|
221
|
-
line-height: 1.25rem;
|
|
222
|
-
color: #414651;
|
|
223
|
-
outline: none;
|
|
224
|
-
}
|
|
225
|
-
|
|
313
|
+
/* ── Timeline / dot ──────────────────────────────────────── */
|
|
226
314
|
.kaui-queues-index .timeline {
|
|
227
315
|
position: relative;
|
|
228
316
|
width: 1.25rem;
|
|
@@ -791,7 +791,8 @@
|
|
|
791
791
|
text-transform: capitalize;
|
|
792
792
|
}
|
|
793
793
|
|
|
794
|
-
.show-catalog-simple .dots-menu
|
|
794
|
+
.show-catalog-simple .dots-menu,
|
|
795
|
+
.existing-overdue-config-for-tenants-container .dots-menu {
|
|
795
796
|
padding: 0 !important;
|
|
796
797
|
background-color: transparent !important;
|
|
797
798
|
border: none !important;
|