@indice/ng-components 0.3.2-beta.7 → 0.3.2-beta.70
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/_styles.scss +105 -96
- package/esm2022/lib/controls/date-picker/date-picker.component.mjs +3 -3
- package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
- package/esm2022/lib/controls/nav-links-list/nav-links-list.component.mjs +3 -3
- package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +3 -3
- package/esm2022/lib/controls/side-pane/side-pane.component.mjs +39 -28
- package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +3 -3
- package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +3 -3
- package/esm2022/lib/helpers/base-list.component.mjs +10 -5
- package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +8 -6
- package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +8 -4
- package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +6 -4
- package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/error/error.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/page-not-found/page-not-found.component.mjs +3 -3
- package/esm2022/lib/pages/http-status/unauthorized/unauthorized.component.mjs +3 -3
- package/esm2022/lib/types.mjs +10 -1
- package/fesm2022/indice-ng-components.mjs +106 -67
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/lib/controls/side-pane/side-pane.component.d.ts +5 -1
- package/lib/helpers/base-list.component.d.ts +2 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -1
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
- package/lib/types.d.ts +8 -1
- package/package.json +1 -1
package/_styles.scss
CHANGED
|
@@ -18,32 +18,32 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
select {
|
|
21
|
-
@apply block w-full rounded-
|
|
21
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
22
22
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
input[type=text] {
|
|
26
|
-
@apply block w-full rounded-
|
|
26
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
27
27
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
input[type=password] {
|
|
31
|
-
@apply block w-full rounded-
|
|
31
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
32
32
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
input[type=email] {
|
|
36
|
-
@apply block w-full rounded-
|
|
36
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
37
37
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
input[type=number] {
|
|
41
|
-
@apply block w-full rounded-
|
|
41
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
42
42
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
textarea {
|
|
46
|
-
@apply block w-full rounded-
|
|
46
|
+
@apply block w-full rounded-lg border-0 py-1.5 pr-10 ring-1 ring-inset ring-gray-200 placeholder:text-gray-300 focus:ring-1 focus:ring-inset focus:ring-gray-500 sm:text-sm sm:leading-6
|
|
47
47
|
disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:ring-gray-200;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -477,11 +477,11 @@
|
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
.header-notifications-dropdown {
|
|
480
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-
|
|
480
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
481
481
|
}
|
|
482
482
|
|
|
483
483
|
.header-notifications-dropdown-with-username {
|
|
484
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-
|
|
484
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
485
485
|
}
|
|
486
486
|
|
|
487
487
|
.header-notifications-dropdown-view-all-button{
|
|
@@ -505,11 +505,11 @@
|
|
|
505
505
|
}
|
|
506
506
|
|
|
507
507
|
.langs-menu-expanded {
|
|
508
|
-
@apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-
|
|
508
|
+
@apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
.langs-menu-collapsed {
|
|
512
|
-
@apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-
|
|
512
|
+
@apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
513
513
|
}
|
|
514
514
|
|
|
515
515
|
.card-deck-busy{
|
|
@@ -659,71 +659,74 @@
|
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
|
|
662
|
+
.datepicker-container {
|
|
663
|
+
@apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
|
|
664
|
+
}
|
|
662
665
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}
|
|
667
|
-
.datepicker-button {
|
|
668
|
-
@apply relative inline-flex items-center px-1.5 py-1.5 border-t border-b border-r border-gray-300 text-sm rounded-r-sm text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-0;
|
|
669
|
-
}
|
|
666
|
+
.datepicker-input {
|
|
667
|
+
@apply w-full rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
|
|
668
|
+
}
|
|
670
669
|
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
.datepicker-btn-wrapper {
|
|
675
|
-
@apply flex justify-between items-center mb-2;
|
|
676
|
-
}
|
|
670
|
+
.datepicker-button {
|
|
671
|
+
@apply mr-1 text-xs focus:outline-none inline-flex items-center justify-center w-6 h-6 text-gray-800 hover:text-gray-900;
|
|
672
|
+
}
|
|
677
673
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
.datepicker-nav-btn {
|
|
685
|
-
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
686
|
-
}
|
|
687
|
-
.datepicker-nav-btn svg {
|
|
688
|
-
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
689
|
-
}
|
|
690
|
-
.datepicker-wrapper {
|
|
691
|
-
@apply flex flex-wrap mb-3 -mx-1;
|
|
692
|
-
}
|
|
693
|
-
.datepicker-day-name {
|
|
694
|
-
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
695
|
-
}
|
|
696
|
-
.datepicker-content-wrapper {
|
|
697
|
-
@apply flex flex-wrap -mx-1 items-center;
|
|
698
|
-
}
|
|
699
|
-
.datepicker-year {
|
|
700
|
-
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
701
|
-
}
|
|
702
|
-
.datepicker-year.selected {
|
|
703
|
-
@apply bg-gray-700 text-white font-medium;
|
|
704
|
-
}
|
|
705
|
-
.datepicker-year.not-selected {
|
|
706
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
707
|
-
}
|
|
674
|
+
.datepicker-background {
|
|
675
|
+
@apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
|
|
676
|
+
}
|
|
677
|
+
.datepicker-btn-wrapper {
|
|
678
|
+
@apply flex justify-between items-center mb-2;
|
|
679
|
+
}
|
|
708
680
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
681
|
+
.datepicker-selected-month {
|
|
682
|
+
@apply text-lg font-bold text-gray-800;
|
|
683
|
+
}
|
|
684
|
+
.datepicker-selected-year {
|
|
685
|
+
@apply ml-1 text-lg text-gray-600 font-normal;
|
|
686
|
+
}
|
|
687
|
+
.datepicker-nav-btn {
|
|
688
|
+
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
689
|
+
}
|
|
690
|
+
.datepicker-nav-btn svg {
|
|
691
|
+
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
692
|
+
}
|
|
693
|
+
.datepicker-wrapper {
|
|
694
|
+
@apply flex flex-wrap mb-3 -mx-1;
|
|
695
|
+
}
|
|
696
|
+
.datepicker-day-name {
|
|
697
|
+
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
698
|
+
}
|
|
699
|
+
.datepicker-content-wrapper {
|
|
700
|
+
@apply flex flex-wrap -mx-1 items-center;
|
|
701
|
+
}
|
|
702
|
+
.datepicker-year {
|
|
703
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
704
|
+
}
|
|
705
|
+
.datepicker-year.selected {
|
|
706
|
+
@apply bg-gray-700 text-white font-medium;
|
|
707
|
+
}
|
|
708
|
+
.datepicker-year.not-selected {
|
|
709
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
710
|
+
}
|
|
712
711
|
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
712
|
+
.datepicker-blank-days {
|
|
713
|
+
@apply text-center border p-1 border-transparent text-sm opacity-50;
|
|
714
|
+
}
|
|
716
715
|
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
.datepicker-days.not-selected {
|
|
721
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
722
|
-
}
|
|
716
|
+
.datepicker-days {
|
|
717
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
718
|
+
}
|
|
723
719
|
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
720
|
+
.datepicker-days.selected {
|
|
721
|
+
@apply bg-gray-700 text-white font-medium;
|
|
722
|
+
}
|
|
723
|
+
.datepicker-days.not-selected {
|
|
724
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.datepicker-days.out-of-range{
|
|
728
|
+
@apply cursor-not-allowed opacity-25;
|
|
729
|
+
}
|
|
727
730
|
|
|
728
731
|
|
|
729
732
|
.dropdown-container {
|
|
@@ -731,8 +734,8 @@
|
|
|
731
734
|
}
|
|
732
735
|
|
|
733
736
|
.dropdown-button {
|
|
734
|
-
@apply bg-white block w-full rounded-
|
|
735
|
-
text-
|
|
737
|
+
@apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
|
|
738
|
+
text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
|
|
736
739
|
}
|
|
737
740
|
|
|
738
741
|
.dropdown-selected-text {
|
|
@@ -740,7 +743,7 @@
|
|
|
740
743
|
}
|
|
741
744
|
|
|
742
745
|
.dropdown-button-icon {
|
|
743
|
-
@apply absolute inset-y-0 right-
|
|
746
|
+
@apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
|
|
744
747
|
}
|
|
745
748
|
|
|
746
749
|
.dropdown-arrow {
|
|
@@ -748,7 +751,7 @@
|
|
|
748
751
|
}
|
|
749
752
|
|
|
750
753
|
.dropdown-ul {
|
|
751
|
-
@apply absolute z-50 mt-1 w-auto bg-white shadow
|
|
754
|
+
@apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-opacity-5 focus:outline-none overflow-x-hidden;
|
|
752
755
|
}
|
|
753
756
|
|
|
754
757
|
.dropdown-li {
|
|
@@ -813,7 +816,7 @@
|
|
|
813
816
|
}
|
|
814
817
|
|
|
815
818
|
.form-header-search-input {
|
|
816
|
-
@apply block w-60 bg-gray-50 rounded-
|
|
819
|
+
@apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
|
|
817
820
|
}
|
|
818
821
|
|
|
819
822
|
.field-label {
|
|
@@ -3231,7 +3234,7 @@
|
|
|
3231
3234
|
|
|
3232
3235
|
|
|
3233
3236
|
.nav-link {
|
|
3234
|
-
@apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-
|
|
3237
|
+
@apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3235
3238
|
}
|
|
3236
3239
|
|
|
3237
3240
|
.sidebar .nav-link {
|
|
@@ -3239,11 +3242,11 @@
|
|
|
3239
3242
|
}
|
|
3240
3243
|
|
|
3241
3244
|
.nav-link-profile {
|
|
3242
|
-
@apply flex items-center cursor-pointer px-4 py-2 text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3245
|
+
@apply flex items-center cursor-pointer px-4 py-2 rounded-md text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3243
3246
|
}
|
|
3244
3247
|
|
|
3245
3248
|
.nav-link-mobile {
|
|
3246
|
-
@apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-
|
|
3249
|
+
@apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3247
3250
|
}
|
|
3248
3251
|
|
|
3249
3252
|
.sidebar .nav-link-list-container {
|
|
@@ -3259,7 +3262,7 @@
|
|
|
3259
3262
|
}
|
|
3260
3263
|
|
|
3261
3264
|
.nav-link-active {
|
|
3262
|
-
@apply cursor-default text-
|
|
3265
|
+
@apply cursor-default text-sky-600 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-lg text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3263
3266
|
}
|
|
3264
3267
|
|
|
3265
3268
|
.sidebar .nav-link-active {
|
|
@@ -3267,28 +3270,29 @@
|
|
|
3267
3270
|
}
|
|
3268
3271
|
|
|
3269
3272
|
.sidebar .nav-link-active-b {
|
|
3270
|
-
@apply cursor-default bg-gray-900 border-b border-
|
|
3273
|
+
@apply cursor-default bg-gray-900 border-b border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
3271
3274
|
}
|
|
3272
3275
|
|
|
3273
3276
|
.sidebar .nav-link-active-l {
|
|
3274
|
-
@apply cursor-default
|
|
3277
|
+
@apply cursor-default bg-gray-900 border-l border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
3275
3278
|
}
|
|
3276
3279
|
|
|
3277
3280
|
.nav-link-profile-active {
|
|
3278
|
-
@apply cursor-default block px-4 py-2 text-xs text-
|
|
3281
|
+
@apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3279
3282
|
}
|
|
3280
3283
|
|
|
3281
3284
|
.nav-link-mobile-active {
|
|
3282
|
-
@apply cursor-default bg-gray-900 text-
|
|
3285
|
+
@apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3283
3286
|
}
|
|
3284
|
-
|
|
3287
|
+
|
|
3285
3288
|
.view-nav-link {
|
|
3286
|
-
@apply cursor-pointer text-gray-600 hover:bg-gray-50 hover:text-gray-900
|
|
3289
|
+
@apply cursor-pointer rounded-md text-gray-600 hover:border-gray-50 border-transparent border-l-2 hover:bg-gray-50 hover:text-gray-900 py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3287
3290
|
}
|
|
3288
|
-
|
|
3291
|
+
|
|
3289
3292
|
.view-nav-link-active {
|
|
3290
|
-
@apply cursor-default bg-gray-
|
|
3293
|
+
@apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
|
|
3291
3294
|
}
|
|
3295
|
+
|
|
3292
3296
|
|
|
3293
3297
|
.min-nav-link-text-width {
|
|
3294
3298
|
width: 220px;
|
|
@@ -3310,11 +3314,11 @@
|
|
|
3310
3314
|
}
|
|
3311
3315
|
|
|
3312
3316
|
.header-notifications-dropdown {
|
|
3313
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-
|
|
3317
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
3314
3318
|
}
|
|
3315
3319
|
|
|
3316
3320
|
.header-notifications-dropdown-with-username {
|
|
3317
|
-
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-
|
|
3321
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
3318
3322
|
}
|
|
3319
3323
|
|
|
3320
3324
|
.header-notifications-dropdown-view-all-button{
|
|
@@ -3540,11 +3544,11 @@
|
|
|
3540
3544
|
}
|
|
3541
3545
|
|
|
3542
3546
|
.shell-header-profile-dropdown {
|
|
3543
|
-
@apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-
|
|
3547
|
+
@apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
3544
3548
|
}
|
|
3545
3549
|
|
|
3546
3550
|
.shell-header-profile-dropdown-with-username {
|
|
3547
|
-
@apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-
|
|
3551
|
+
@apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5 focus:outline-none;
|
|
3548
3552
|
}
|
|
3549
3553
|
|
|
3550
3554
|
|
|
@@ -3553,7 +3557,7 @@
|
|
|
3553
3557
|
}
|
|
3554
3558
|
|
|
3555
3559
|
.mobile-menu-button {
|
|
3556
|
-
@apply inline-flex items-center justify-center p-2 rounded-
|
|
3560
|
+
@apply inline-flex items-center justify-center p-2 rounded-lg outline-none text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
|
|
3557
3561
|
}
|
|
3558
3562
|
|
|
3559
3563
|
.mobile-menu-container {
|
|
@@ -3693,7 +3697,7 @@
|
|
|
3693
3697
|
}
|
|
3694
3698
|
|
|
3695
3699
|
.side-pane-container {
|
|
3696
|
-
@apply fixed inset-y-0 right-0
|
|
3700
|
+
@apply fixed inset-y-0 right-0 max-w-full flex transition-all duration-200 ease-in-out;
|
|
3697
3701
|
}
|
|
3698
3702
|
|
|
3699
3703
|
.side-pane-container-inner {
|
|
@@ -3705,7 +3709,7 @@
|
|
|
3705
3709
|
}
|
|
3706
3710
|
|
|
3707
3711
|
.side-pane-box-size-25 {
|
|
3708
|
-
@apply w-screen max-w-
|
|
3712
|
+
@apply w-screen max-w-2xl;
|
|
3709
3713
|
}
|
|
3710
3714
|
|
|
3711
3715
|
.side-pane-box-size-50 {
|
|
@@ -3716,6 +3720,11 @@
|
|
|
3716
3720
|
@apply w-screen max-w-4xl;
|
|
3717
3721
|
}
|
|
3718
3722
|
|
|
3723
|
+
|
|
3724
|
+
.side-pane-box-size-100 {
|
|
3725
|
+
@apply w-screen max-w-full;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3719
3728
|
.side-pane {
|
|
3720
3729
|
@apply flex flex-col bg-white shadow-xl overflow-y-hidden;
|
|
3721
3730
|
}
|
|
@@ -3992,7 +4001,7 @@
|
|
|
3992
4001
|
}
|
|
3993
4002
|
|
|
3994
4003
|
.toast-pill {
|
|
3995
|
-
@apply max-w-sm w-full bg-white shadow-lg rounded-
|
|
4004
|
+
@apply max-w-sm w-full bg-white shadow-lg rounded-xl pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
|
|
3996
4005
|
}
|
|
3997
4006
|
|
|
3998
4007
|
.toast-context-padding {
|
|
@@ -4148,7 +4157,7 @@
|
|
|
4148
4157
|
}
|
|
4149
4158
|
|
|
4150
4159
|
.search-container {
|
|
4151
|
-
@apply relative inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 hover:shadow
|
|
4160
|
+
@apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 focus:shadow hover:shadow border border-gray-300;
|
|
4152
4161
|
}
|
|
4153
4162
|
/*
|
|
4154
4163
|
.search-input {
|
|
@@ -4156,7 +4165,7 @@
|
|
|
4156
4165
|
} */
|
|
4157
4166
|
|
|
4158
4167
|
.search-input {
|
|
4159
|
-
@apply w-
|
|
4168
|
+
@apply w-64 rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
|
|
4160
4169
|
}
|
|
4161
4170
|
|
|
4162
4171
|
.search-button {
|
|
@@ -4272,7 +4281,7 @@
|
|
|
4272
4281
|
}
|
|
4273
4282
|
|
|
4274
4283
|
.toggle-buttons-list-button {
|
|
4275
|
-
@apply relative inline-flex items-center p-2 first:border-l first:rounded-l-
|
|
4284
|
+
@apply relative inline-flex items-center p-2 first:border-l first:rounded-l-lg last:rounded-r-lg border-t border-b border-r border-gray-300 bg-white text-xs text-gray-700 hover:text-gray-900 focus:z-10 focus:outline-none;
|
|
4276
4285
|
}
|
|
4277
4286
|
|
|
4278
4287
|
.toggle-buttons-list-button-selected {
|