@indice/ng-components 0.4.0-beta.2 → 0.4.0-beta.5

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.
Files changed (39) hide show
  1. package/fesm2022/indice-ng-components.mjs +7 -3
  2. package/fesm2022/indice-ng-components.mjs.map +1 -1
  3. package/index.d.ts +1 -1
  4. package/package.json +3 -2
  5. package/src/assets/styles/advanced-search.css +57 -0
  6. package/src/assets/styles/avatar-initials.css +37 -0
  7. package/src/assets/styles/base.css +36 -0
  8. package/src/assets/styles/cards.css +85 -0
  9. package/src/assets/styles/collapsible-panel.css +24 -0
  10. package/src/assets/styles/combobox.css +28 -0
  11. package/src/assets/styles/components.css +36 -0
  12. package/src/assets/styles/date-picker.component.css +68 -0
  13. package/src/assets/styles/drop-down-menu.css +49 -0
  14. package/src/assets/styles/form-layout.css +52 -0
  15. package/{_styles.scss → src/assets/styles/indice-ng-icons-inline.css} +0 -2038
  16. package/src/assets/styles/language-selection.component.css +11 -0
  17. package/src/assets/styles/list-view-empty-state.css +0 -0
  18. package/src/assets/styles/list-view.css +63 -0
  19. package/{modal.css → src/assets/styles/modal.css} +0 -2
  20. package/src/assets/styles/model-view-layout.css +48 -0
  21. package/src/assets/styles/nav-links.css +66 -0
  22. package/src/assets/styles/notifications-indicator.component.css +39 -0
  23. package/src/assets/styles/pager.css +32 -0
  24. package/src/assets/styles/progress-bar.component.css +15 -0
  25. package/src/assets/styles/shell-layout.css +252 -0
  26. package/src/assets/styles/shell-sidebar-header.css +2 -0
  27. package/src/assets/styles/shell-sidebar-layout.css +125 -0
  28. package/src/assets/styles/shell-sidebar.css +32 -0
  29. package/src/assets/styles/side-pane.css +50 -0
  30. package/src/assets/styles/side-view-layout.css +57 -0
  31. package/src/assets/styles/stepper.css +170 -0
  32. package/src/assets/styles/tab-group.css +28 -0
  33. package/src/assets/styles/toast.css +70 -0
  34. package/src/assets/styles/toggle-button.component.css +52 -0
  35. package/src/assets/styles/toggle-buttons-list.component.css +45 -0
  36. package/src/assets/styles/toggle.css +24 -0
  37. package/src/assets/styles/view-layout.css +89 -0
  38. package/src/styles.css +51 -0
  39. package/src/tailwindcss.css +1 -0
@@ -1,827 +1,3 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @tailwind base;
6
-
7
- @layer base {
8
- html {
9
- scroll-behavior: smooth !important;
10
- }
11
-
12
- input {
13
- outline: none;
14
- }
15
-
16
- input[type=number] {
17
- outline: none;
18
- }
19
-
20
- textarea {
21
- outline: none;
22
- }
23
-
24
- h1 {
25
- @apply text-2xl;
26
- }
27
-
28
- h2 {
29
- @apply text-xl;
30
- }
31
-
32
- h3 {
33
- @apply text-lg;
34
- }
35
-
36
- a {
37
- @apply text-gray-600;
38
- }
39
-
40
- }
41
-
42
-
43
-
44
- .avatar-container {
45
- @apply inline-flex items-center justify-center h-8 w-8 rounded-full overflow-hidden;
46
- }
47
-
48
- .avatar-container-large {
49
- @apply inline-flex items-center justify-center h-12 w-12 rounded-full;
50
- }
51
-
52
- .avatar-text {
53
- @apply text-sm font-medium leading-none text-blue-300;
54
- }
55
-
56
- .avatar-text-large {
57
- @apply text-xl font-medium leading-none text-white;
58
- }
59
-
60
-
61
- .circle {
62
- display: flex;
63
- justify-content: center;
64
- align-items: center;
65
- }
66
-
67
- .circle img {
68
- border-radius: 50%;
69
- width: 60px;
70
- height: 60px;
71
- }
72
-
73
- .circle .initials {
74
- color: #FFFFFF;
75
- font-size: 20px;
76
- line-height: 19px;
77
- letter-spacing: 0.2625px;
78
- }
79
-
80
-
81
- .toggle-button {
82
- @apply mt-3 relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500
83
- }
84
-
85
- .toggle-span {
86
- @apply translate-x-0 pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200
87
- }
88
-
89
- .enabled {
90
- @apply bg-indigo-600
91
- }
92
-
93
- .enabled-anim {
94
- @apply translate-x-5
95
- }
96
-
97
- .disabled {
98
- @apply bg-gray-200
99
- }
100
-
101
- .disabled-anim {
102
- @apply translate-x-0
103
- }
104
-
105
- .modal-open {
106
- overflow: hidden;
107
- }
108
- .modal-open .modal {
109
- overflow-x: hidden;
110
- overflow-y: auto;
111
- }
112
- .modal {
113
- position: fixed;
114
- top: 0;
115
- left: 0;
116
- z-index: 1050;
117
- display: none;
118
- width: 100%;
119
- height: 100%;
120
- overflow: hidden;
121
- outline: 0;
122
- }
123
- .modal-dialog {
124
- position: relative;
125
- width: auto;
126
- margin: 0.5rem;
127
- pointer-events: none;
128
- }
129
- .modal.fade .modal-dialog {
130
- transition: transform 0.3s ease-out;
131
- transform: translate(0, -50px);
132
- }
133
-
134
- .fade {
135
- transition: opacity 0.15s linear;
136
- }
137
- .fade:not(.show) {
138
- opacity: 0;
139
- }
140
- @media (prefers-reduced-motion: reduce) {
141
- .modal.fade .modal-dialog {
142
- transition: none;
143
- }
144
- }
145
- .modal.show .modal-dialog {
146
- transform: none;
147
- }
148
- .modal.modal-static .modal-dialog {
149
- transform: scale(1.02);
150
- }
151
- .modal-dialog-scrollable {
152
- display: flex;
153
- max-height: subtract(100%, 1rem);
154
- }
155
- .modal-dialog-scrollable .modal-content {
156
- max-height: subtract(100vh, 1rem);
157
- overflow: hidden;
158
- }
159
- .modal-dialog-scrollable .modal-header,
160
- .modal-dialog-scrollable .modal-footer {
161
- flex-shrink: 0;
162
- }
163
- .modal-dialog-scrollable .modal-body {
164
- overflow-y: auto;
165
- }
166
- .modal-dialog-centered {
167
- display: flex;
168
- align-items: center;
169
- min-height: subtract(100%, 1rem);
170
- }
171
- .modal-dialog-centered::before {
172
- display: block;
173
- height: subtract(100vh, 1rem);
174
- height: -webkit-min-content;
175
- height: min-content;
176
- content: "";
177
- }
178
- .modal-dialog-centered.modal-dialog-scrollable {
179
- flex-direction: column;
180
- justify-content: center;
181
- height: 100%;
182
- }
183
- .modal-dialog-centered.modal-dialog-scrollable .modal-content {
184
- max-height: none;
185
- }
186
- .modal-dialog-centered.modal-dialog-scrollable::before {
187
- content: none;
188
- }
189
- .modal-content {
190
- position: relative;
191
- display: flex;
192
- flex-direction: column;
193
- width: 100%;
194
- pointer-events: auto;
195
- background-color: #fff;
196
- background-clip: padding-box;
197
- border: 1px solid rgba(0, 0, 0, 0.2);
198
- border-radius: 0.3rem;
199
- outline: 0;
200
- }
201
- .modal-backdrop {
202
- position: fixed;
203
- top: 0;
204
- left: 0;
205
- z-index: 1040;
206
- width: 100vw;
207
- height: 100vh;
208
- background-color: #000;
209
- }
210
- .modal-backdrop.fade {
211
- opacity: 0;
212
- }
213
- .modal-backdrop.show {
214
- opacity: 0.5;
215
- }
216
- .modal-scrollbar-measure {
217
- position: absolute;
218
- top: -9999px;
219
- width: 50px;
220
- height: 50px;
221
- overflow: scroll;
222
- }
223
- @media (min-width: 576px) {
224
- .modal-dialog {
225
- max-width: 500px;
226
- margin: 1.75rem auto;
227
- }
228
-
229
- .modal-dialog-scrollable {
230
- max-height: subtract(100%, 3.5rem);
231
- }
232
- .modal-dialog-scrollable .modal-content {
233
- max-height: subtract(100vh, 3.5rem);
234
- }
235
-
236
- .modal-dialog-centered {
237
- min-height: subtract(100%, 3.5rem);
238
- }
239
- .modal-dialog-centered::before {
240
- height: subtract(100vh, 3.5rem);
241
- height: -webkit-min-content;
242
- height: min-content;
243
- }
244
-
245
- .modal-sm {
246
- max-width: 300px;
247
- }
248
- }
249
- @media (min-width: 992px) {
250
- .modal-lg,
251
- .modal-xl {
252
- max-width: 800px;
253
- }
254
- }
255
- @media (min-width: 1200px) {
256
- .modal-xl {
257
- max-width: 1140px;
258
- }
259
- }
260
-
261
- /*# sourceMappingURL=styles.css.map*/
262
-
263
-
264
- .tab-group-select-hidden {
265
- @apply sm:hidden;
266
- }
267
-
268
- .tab-group-select {
269
- @apply block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md;
270
- }
271
-
272
- .tab-active {
273
- @apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
274
- }
275
-
276
- .tab {
277
- @apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
278
- }
279
-
280
- .tab-group-container-nav {
281
- @apply -mb-px flex space-x-8;
282
- }
283
-
284
- .tab-group-container-hidden {
285
- @apply hidden sm:block;
286
- }
287
-
288
- .tab-group-container {
289
- @apply border-b border-gray-200;
290
- }
291
-
292
-
293
-
294
- .shell-sidebar-container-fixed {
295
- @apply fixed w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
296
- }
297
-
298
- .shell-sidebar-toggle-button {
299
- @apply hidden sm:block px-4 border-0 text-white focus:outline-none;
300
- }
301
-
302
- .shell-sidebar-container-hidden {
303
- @apply hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
304
- }
305
-
306
- .shell-sidebar-content-container {
307
- @apply flex flex-col;
308
- }
309
-
310
- .shell-sidebar-content-container-inner {
311
- @apply sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800;
312
- }
313
-
314
- .shell-sidebar-header-container {
315
- @apply flex-1;
316
- }
317
-
318
- .shell-sidebar-component-container {
319
- @apply flex w-full flex-col h-full min-h-0 bg-gray-800;
320
- }
321
-
322
- .shell-sidebar-component-links-container {
323
- @apply pt-4;
324
- }
325
-
326
- @layer components {
327
- }
328
-
329
-
330
- .sidebar-off-canvas-menu-container {
331
- @apply relative z-40 md:hidden;
332
- }
333
-
334
-
335
-
336
- .sidebar-off-canvas-menu-backdrop {
337
- @apply fixed inset-0 transition-opacity ease-linear opacity-0 duration-300 pointer-events-none bg-gray-600 bg-opacity-75;
338
- }
339
-
340
- .sidebar-off-canvas-menu-backdrop-opacity-100 {
341
- @apply fixed inset-0 transition-opacity ease-linear duration-300 pointer-events-none bg-gray-600 bg-opacity-75 opacity-100;
342
- }
343
-
344
- .sidebar-off-canvas-menu-container-inner {
345
- @apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform translate-x-0;
346
- }
347
-
348
- .sidebar-off-canvas-menu-container-inner-active {
349
- @apply translate-x-0;
350
- }
351
-
352
- .sidebar-off-canvas-menu-container-inner-not-active {
353
- @apply -translate-x-full;
354
- }
355
-
356
-
357
- .sidebar-off-canvas-menu-container-inner-translate-x-full {
358
- @apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform -translate-x-full;
359
- }
360
-
361
- .sidebar-off-canvas-layout-container {
362
- @apply relative flex-1 flex flex-col max-w-xs w-full pt-5 pb-4 bg-gray-800;
363
- }
364
-
365
- .sidebar-off-canvas-toggle-button-container {
366
- @apply absolute top-0 right-0 -mr-12 pt-2;
367
- }
368
-
369
-
370
-
371
- .sidebar-off-canvas-toggle-button {
372
- @apply ml-1 flex items-center justify-center h-10 w-10 rounded-full focus:outline-none;
373
- }
374
-
375
-
376
-
377
- .sidebar-off-canvas-app-logo-container {
378
- @apply flex-shrink-0 flex items-center px-4;
379
- }
380
-
381
- .sidebar-dummy-element {
382
- @apply flex-shrink-0 w-14;
383
- }
384
-
385
- /* in mobile view the static menu container is always hidden - off-canvas container is visible */
386
- .sidebar-static-menu-outer-container {
387
- @apply hidden md:flex;
388
- }
389
-
390
- .sidebar-static-menu-container {
391
- @apply flex-col w-64 fixed inset-y-0;
392
- }
393
-
394
- .sidebar-static-menu-container-active {
395
- @apply flex;
396
- }
397
-
398
- .sidebar-static-menu-container-not-active {
399
- @apply flex w-20;
400
- }
401
-
402
- .sidebar-static-menu-container-inner {
403
- @apply flex-1 flex items-center flex-col min-h-0 bg-gray-800 shadow-lg;
404
- }
405
-
406
- .sidebar-static-menu-app-logo-container {
407
- @apply flex items-center h-16 flex-shrink-0;
408
- }
409
-
410
- .sidebar-static-menu-header-app-logo-container {
411
- @apply flex items-center h-16 flex-shrink-0 ;
412
- }
413
-
414
- .shell-sidebar-logo {
415
- @apply h-8 w-auto;
416
- }
417
-
418
- /* !!!! malakai onoma !!!! */
419
- .sidebar-static-menu-wrapper {
420
- @apply flex flex-col md:pl-20;
421
- }
422
-
423
- .sidebar-static-menu-wrapper-expanded {
424
- @apply md:pl-64;
425
- }
426
-
427
- .sidebar-static-menu-sticky-header-container {
428
- @apply sticky top-0 z-20 flex-shrink-0 flex h-16 bg-gray-900 shadow-2xl;
429
- }
430
-
431
- .sidebar-static-menu-toggle-button {
432
- @apply px-4 text-white focus:outline-none;
433
- }
434
-
435
- .sidebar-static-menu-toggle-button-md {
436
- @apply px-4 text-white focus:outline-none md:hidden;
437
- }
438
-
439
- .sidebar-static-menu-header-container {
440
- @apply flex-1 px-4 flex justify-between;
441
- }
442
-
443
- /* fix names */
444
-
445
- .sidebar-static-menu-header-near-container {
446
- @apply flex-1 flex;
447
- }
448
-
449
- .sidebar-static-menu-header-far-container {
450
- @apply ml-4 flex items-center md:ml-6;
451
- }
452
-
453
-
454
-
455
-
456
-
457
- .notifications-nav-link {
458
- @apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
459
- }
460
-
461
- .header-notifications {
462
- @apply flex gap-3 items-center;
463
- }
464
-
465
- .header-notifications-dropdown-button {
466
- @apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
467
- focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
468
- }
469
-
470
- .header-notifications-dropdown {
471
- @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;
472
- }
473
-
474
- .header-notifications-dropdown-with-username {
475
- @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;
476
- }
477
-
478
- .header-notifications-dropdown-view-all-button{
479
- @apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
480
- }
481
-
482
- .notification-messages::-webkit-scrollbar-thumb {
483
- @apply bg-gray-600 hover:bg-gray-700;
484
- }
485
-
486
-
487
- .notification-messages::-webkit-scrollbar {
488
- width: 7px;
489
- height: 7px;
490
- background: transparent;
491
- cursor: pointer;
492
- /* or add it to the track */
493
- }
494
- .langs-button {
495
- @apply text-blue-300 hover:text-blue-400;
496
- }
497
-
498
- .langs-menu-expanded {
499
- @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;
500
- }
501
-
502
- .langs-menu-collapsed {
503
- @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;
504
- }
505
-
506
- .card-deck-busy{
507
- @apply animate-pulse;
508
- }
509
-
510
- .cards-deck-1 {
511
- @apply grid grid-cols-1 gap-0 sm:grid-cols-1 lg:grid-cols-1;
512
- }
513
-
514
- .cards-deck-2 {
515
- @apply grid grid-cols-1 gap-5 sm:grid-cols-1 lg:grid-cols-2;
516
- }
517
-
518
- .cards-deck-3 {
519
- @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-3;
520
- }
521
-
522
- .cards-deck-4 {
523
- @apply grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4;
524
- }
525
-
526
- .card {
527
- @apply relative h-full border border-gray-200 bg-gray-50 shadow-sm rounded-lg sm:rounded-3xl overflow-hidden;;
528
- }
529
-
530
- .card-body {
531
- @apply pt-2 px-4 pb-12 sm:pt-6 sm:px-6;
532
- }
533
-
534
- .card-img-top {
535
- @apply object-cover w-full h-48;
536
- }
537
-
538
- .card-header {
539
- @apply inset-x-0 px-4 py-6 sm:py-4 sm:px-6 border-b bg-white border-gray-200;
540
- }
541
-
542
- .card-footer {
543
- @apply absolute bottom-0 inset-x-0 bg-white px-4 py-4 sm:px-6 border-t border-gray-200;
544
- }
545
-
546
- .kpi-tile-title-container {
547
- @apply uppercase mb-2 overflow-ellipsis overflow-hidden;
548
- }
549
-
550
- .kpi-tile-action {
551
- @apply hover:text-gray-500;
552
- }
553
-
554
- .kpi-tile-value {
555
- @apply text-6xl font-thin my-6;
556
- }
557
-
558
- .gallery-deck-1 {
559
- @apply grid grid-cols-1 p-4 gap-x-6 sm:grid-cols-2;
560
- }
561
-
562
- .gallery-deck-2 {
563
- @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-2 sm:gap-x-6 p-4;
564
- }
565
-
566
- .gallery-deck-3 {
567
- @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 p-4;
568
- }
569
-
570
- .gallery-deck-4 {
571
- @apply grid grid-cols-1 gap-x-4 gap-y-8 sm:grid-cols-3 sm:gap-x-6 lg:grid-cols-4 xl:gap-x-8 p-4;
572
- }
573
-
574
- .tile-card-footer {
575
- @apply absolute bottom-0 inset-x-0 bg-gradient-to-b from-transparent to-gray-50 px-2 pb-4 sm:px-4;
576
- }
577
-
578
- .tile-card-item-btn {
579
- @apply inline-flex mx-1 items-center rounded-full border border-transparent p-1 text-white shadow-sm focus:outline-none;
580
- }
581
-
582
- .tile-card-item-btn-selected {
583
- @apply bg-slate-700 ring-slate-700 ring-1 ring-offset-1;
584
- }
585
-
586
- .tile-card-item-btn-available {
587
- @apply bg-slate-500 hover:bg-slate-700 ring-0;
588
- }
589
-
590
-
591
-
592
- .collapsible-panel-container {
593
- @apply bg-white border border-gray-200 mb-2;
594
- }
595
-
596
- .collapsible-panel-container-shadow {
597
- @apply shadow-sm;
598
- }
599
-
600
- .collapsible-panel-container-inner {
601
- @apply relative border-b border-gray-200;
602
- }
603
-
604
- .collapsible-panel-button {
605
- @apply w-full px-8 py-6 text-left;
606
- }
607
-
608
- .collapsible-panel-button-content-container {
609
- @apply flex items-center justify-between;
610
- }
611
-
612
- .collapsible-panel-content-container {
613
- @apply relative overflow-hidden transition-all duration-700;
614
- }
615
-
616
-
617
-
618
- .md-visible {
619
- @apply hidden md:block;
620
- }
621
-
622
- .btn-outline {
623
- @apply focus:outline-none bg-transparent text-gray-700 text-sm hover:text-gray-800 px-2.5 py-1.5 border border-gray-500 hover:border-gray-600 rounded-sm;
624
- }
625
-
626
- .btn-outline:disabled {
627
- @apply focus:outline-none bg-transparent text-gray-400 text-sm px-2.5 py-1.5 border border-gray-300 rounded-sm cursor-not-allowed;
628
- }
629
-
630
-
631
- .btn-view-header {
632
- @apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-white transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800;
633
- }
634
-
635
-
636
- .sidebar .btn-view-header {
637
- @apply text-base focus:outline-none inline-flex items-center justify-center h-8 text-gray-900 transition-colors duration-150 rounded-md hover:shadow-sm hover:bg-gray-800 hover:text-white;
638
- }
639
-
640
- .btn-form-view-header {
641
- @apply text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
642
- }
643
-
644
- .btn-form-view-header-search {
645
- @apply rounded-l-none text-base focus:outline-none inline-flex items-center justify-center w-10 h-10 text-gray-700 transition-colors duration-150 rounded-sm hover:shadow-sm hover:bg-gray-50;
646
- }
647
-
648
- .selected-view-indicator {
649
- @apply absolute top-0 right-0 block ml-2 h-1.5 w-1.5 rounded-full ring-1 ring-white bg-blue-300;
650
- }
651
-
652
-
653
- .datepicker-container {
654
- @apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
655
- }
656
-
657
- .datepicker-input {
658
- @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;
659
- }
660
-
661
- .datepicker-button {
662
- @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;
663
- }
664
-
665
- .datepicker-background {
666
- @apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
667
- }
668
- .datepicker-btn-wrapper {
669
- @apply flex justify-between items-center mb-2;
670
- }
671
-
672
- .datepicker-selected-month {
673
- @apply text-lg font-bold text-gray-800;
674
- }
675
- .datepicker-selected-year {
676
- @apply ml-1 text-lg text-gray-600 font-normal;
677
- }
678
- .datepicker-nav-btn {
679
- @apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
680
- }
681
- .datepicker-nav-btn svg {
682
- @apply h-6 w-6 text-gray-500 inline-flex;
683
- }
684
- .datepicker-wrapper {
685
- @apply flex flex-wrap mb-3 -mx-1;
686
- }
687
- .datepicker-day-name {
688
- @apply text-gray-800 font-medium text-center text-sm uppercase;
689
- }
690
- .datepicker-content-wrapper {
691
- @apply flex flex-wrap -mx-1 items-center;
692
- }
693
- .datepicker-year {
694
- @apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
695
- }
696
- .datepicker-year.selected {
697
- @apply bg-gray-700 text-white font-medium;
698
- }
699
- .datepicker-year.not-selected {
700
- @apply text-gray-800 hover:bg-gray-800;
701
- }
702
-
703
- .datepicker-blank-days {
704
- @apply text-center border p-1 border-transparent text-sm opacity-50;
705
- }
706
-
707
- .datepicker-days {
708
- @apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
709
- }
710
-
711
- .datepicker-days.selected {
712
- @apply bg-gray-700 text-white font-medium;
713
- }
714
- .datepicker-days.not-selected {
715
- @apply text-gray-800 hover:bg-gray-800;
716
- }
717
-
718
- .datepicker-days.out-of-range{
719
- @apply cursor-not-allowed opacity-25;
720
- }
721
-
722
-
723
- .dropdown-container {
724
- @apply relative w-auto;
725
- }
726
-
727
- .dropdown-button {
728
- @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
729
- text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
730
- }
731
-
732
- .dropdown-selected-text {
733
- @apply truncate w-full inline-flex items-start place-items-center;
734
- }
735
-
736
- .dropdown-button-icon {
737
- @apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
738
- }
739
-
740
- .dropdown-arrow {
741
- @apply h-5 w-5 text-gray-600;
742
- }
743
-
744
- .dropdown-ul {
745
- @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;
746
- }
747
-
748
- .dropdown-li {
749
- @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 hover:bg-gray-100 min-w-max;
750
- }
751
-
752
- .dropdown-li-selected {
753
- @apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 min-w-max;
754
- }
755
-
756
- .dropdown-li-text {
757
- @apply font-normal truncate inline-flex items-center ;
758
- }
759
-
760
- .dropdown-li-selected-text {
761
- @apply font-semibold truncate inline-flex items-center ;
762
- }
763
-
764
- .dropdown-li-selected-indicator-container {
765
- @apply text-gray-600 absolute inset-y-0 right-0 flex items-center pr-4;
766
- }
767
-
768
- .dropdown-li-selected-indicator {
769
- @apply h-5 w-5;
770
- }
771
-
772
-
773
- .form-layout-container {
774
- @apply bg-white shadow-sm border border-gray-200 rounded-xl;
775
- }
776
-
777
- .form-header {
778
- @apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
779
- }
780
-
781
- .form-header-inner {
782
- @apply flex-1 min-w-0;
783
- }
784
-
785
- .form-header-image {
786
- @apply w-12 h-12;
787
- }
788
-
789
- .form-title {
790
- @apply text-lg leading-6 font-medium text-gray-900;
791
- }
792
-
793
- .form-subtitle {
794
- @apply mt-1 max-w-2xl text-sm text-gray-500;
795
- }
796
-
797
- .form-header-actions {
798
- @apply mt-4 flex md:mt-0 md:ml-4;
799
- }
800
-
801
- .form-content-container {
802
- @apply px-4 py-4;
803
- }
804
-
805
- .form-content-container-inner {
806
- @apply flex flex-col pt-4;
807
- }
808
-
809
- .form-header-search-input {
810
- @apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
811
- }
812
-
813
- .field-label {
814
- @apply block text-sm py-2 font-medium text-gray-500;
815
- }
816
-
817
- .field-info {
818
- @apply mt-2 text-xs text-gray-400 py-2;
819
- }
820
-
821
- .form-actions {
822
- @apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
823
- }
824
-
825
1
  /*
826
2
  Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license
827
3
  */
@@ -3108,1217 +2284,3 @@
3108
2284
  .ms-Icon--ZoomIn:before { content: "\E8A3"; }
3109
2285
  .ms-Icon--ZoomOut:before { content: "\E71F"; }
3110
2286
  .ms-Icon--ZoomToFit:before { content: "\F649"; }
3111
-
3112
-
3113
- .list-view-container {
3114
- @apply flex flex-col border border-gray-200 rounded-lg;
3115
- }
3116
-
3117
- .list-view-container-inner {
3118
- @apply overflow-y-hidden overflow-x-auto rounded-lg;
3119
- }
3120
-
3121
- .list-view-table {
3122
- @apply min-w-full divide-y divide-gray-200;
3123
- }
3124
-
3125
- .list-view-thead {
3126
- @apply bg-gray-50;
3127
- }
3128
-
3129
- .list-view-th-details {
3130
- @apply px-2 py-3 w-6 text-left text-xs font-medium text-gray-500 uppercase;
3131
- }
3132
-
3133
- .list-view-th {
3134
- @apply px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider;
3135
- }
3136
-
3137
- .list-view-th-full {
3138
- @apply w-full px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-normal break-words;
3139
- }
3140
-
3141
- .list-view-th-half {
3142
- @apply w-full sm:w-1/2 px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-normal break-words;
3143
- }
3144
-
3145
- .list-view-tbody {
3146
- @apply bg-white divide-y divide-gray-200;
3147
- }
3148
-
3149
- .list-view-tr {
3150
- @apply hover:bg-gray-50;
3151
- }
3152
-
3153
- .list-view-td-details {
3154
- @apply px-2 py-2 whitespace-nowrap items-center;
3155
- }
3156
-
3157
- .list-view-td {
3158
- @apply px-4 py-4 whitespace-nowrap;
3159
- }
3160
-
3161
- .list-view-td-full {
3162
- @apply w-full px-4 py-4 break-all;
3163
- }
3164
-
3165
- .list-view-td-half {
3166
- @apply w-full sm:w-1/2 px-4 py-4 whitespace-normal break-words;
3167
- }
3168
-
3169
- .details-button {
3170
- @apply inline-flex items-center px-3 py-2 border border-transparent shadow-sm text-sm leading-4 font-medium rounded-md bg-gray-100 hover:bg-gray-200 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-100;
3171
- }
3172
-
3173
- .expand-collapse-button {
3174
- @apply inline-flex items-center px-3 py-2 border border-transparent shadow-sm text-sm leading-4 font-medium rounded-md bg-gray-100 hover:bg-gray-200 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-100; }
3175
-
3176
-
3177
- .model-view-container {
3178
- @apply mt-5 min-w-full min-h-screen;
3179
- }
3180
-
3181
- .model-view-container-inner {
3182
- @apply lg:grid lg:grid-cols-12 lg:gap-x-5;
3183
- }
3184
-
3185
- .model-view-aside {
3186
- @apply py-6 px-2 sm:px-6 lg:py-0 lg:px-0 md:col-span-3;
3187
- }
3188
-
3189
- .model-view-aside-header-section {
3190
- @apply min-w-full;
3191
- }
3192
-
3193
- .model-view-aside-header-container {
3194
- @apply bg-white shadow-sm border border-gray-200 rounded-xl;
3195
- }
3196
-
3197
- .model-view-aside-header-container-inner {
3198
- @apply flex flex-col bg-gray-50 justify-self-stretch rounded-t-xl h-24;
3199
- }
3200
-
3201
- .model-view-menu-container {
3202
- @apply bg-white px-4 py-4 flow-root hidden sm:block rounded-b-xl;
3203
- }
3204
-
3205
- .model-view-menu-container-mobile {
3206
- @apply mt-2 px-4 py-2 flow-root sm:hidden;
3207
- }
3208
-
3209
- .model-view-menu-nav {
3210
- @apply h-full flex flex-col;
3211
- }
3212
-
3213
- .model-view-menu-item {
3214
- @apply space-y-1;
3215
- }
3216
-
3217
- .model-view-menu-item-far {
3218
- @apply mt-auto pt-10 space-y-1;
3219
- }
3220
-
3221
- .model-view-details-container {
3222
- @apply sm:px-6 lg:px-2 lg:col-span-9 md:col-span-10;
3223
- }
3224
-
3225
-
3226
-
3227
- .nav-link {
3228
- @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;
3229
- }
3230
-
3231
- .sidebar .nav-link {
3232
- @apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3233
- }
3234
-
3235
- .nav-link-profile {
3236
- @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;
3237
- }
3238
-
3239
- .nav-link-mobile {
3240
- @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;
3241
- }
3242
-
3243
- .sidebar .nav-link-list-container {
3244
- @apply flex-1 flex flex-col overflow-y-auto;
3245
- }
3246
-
3247
- .sidebar .nav-link-list-container-inner {
3248
- @apply flex-1 px-2 py-4 space-y-2;
3249
- }
3250
-
3251
- .sidebar .nav-link-list-container-inner .icons-only {
3252
- @apply flex-1 px-2 py-4 space-y-4;
3253
- }
3254
-
3255
- .nav-link-active {
3256
- @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;
3257
- }
3258
-
3259
- .sidebar .nav-link-active {
3260
- @apply cursor-default bg-gray-900 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
3261
- }
3262
-
3263
- .sidebar .nav-link-active-b {
3264
- @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;
3265
- }
3266
-
3267
- .sidebar .nav-link-active-l {
3268
- @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;
3269
- }
3270
-
3271
- .nav-link-profile-active {
3272
- @apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
3273
- }
3274
-
3275
- .nav-link-mobile-active {
3276
- @apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
3277
- }
3278
-
3279
- .view-nav-link {
3280
- @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;
3281
- }
3282
-
3283
- .view-nav-link-active {
3284
- @apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
3285
- }
3286
-
3287
-
3288
- .min-nav-link-text-width {
3289
- width: 220px;
3290
- }
3291
-
3292
-
3293
-
3294
- .notifications-nav-link {
3295
- @apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
3296
- }
3297
-
3298
- .header-notifications {
3299
- @apply flex gap-3 items-center;
3300
- }
3301
-
3302
- .header-notifications-dropdown-button {
3303
- @apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
3304
- focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
3305
- }
3306
-
3307
- .header-notifications-dropdown {
3308
- @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;
3309
- }
3310
-
3311
- .header-notifications-dropdown-with-username {
3312
- @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;
3313
- }
3314
-
3315
- .header-notifications-dropdown-view-all-button{
3316
- @apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
3317
- }
3318
-
3319
- .notification-messages::-webkit-scrollbar-thumb {
3320
- @apply bg-gray-600 hover:bg-gray-700;
3321
- }
3322
-
3323
-
3324
- .notification-messages::-webkit-scrollbar {
3325
- width: 7px;
3326
- height: 7px;
3327
- background: transparent;
3328
- cursor: pointer;
3329
- /* or add it to the track */
3330
- }
3331
-
3332
- .pager-container {
3333
- @apply flex flex-col sm:flex-row mb-2 justify-start;
3334
- }
3335
-
3336
- .pager-container-near {
3337
- @apply sm:flex-1 justify-start items-center mb-1 sm:mb-0;
3338
- }
3339
-
3340
- .pager-container-far {
3341
- @apply justify-start flex-nowrap items-center;
3342
- }
3343
-
3344
- .pager-icon-button {
3345
- @apply inline-flex relative ml-1 mr-2 items-center px-2 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
3346
- }
3347
-
3348
- .pager-pages-container {
3349
- @apply relative inline-flex rounded-sm;
3350
- }
3351
-
3352
- .pager-button {
3353
- @apply relative ml-1 inline-flex items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
3354
- }
3355
-
3356
- .pager-arrow-button-left {
3357
- @apply inline-flex relative ml-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
3358
- }
3359
-
3360
- .pager-arrow-button-right {
3361
- @apply inline-flex relative mr-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
3362
- }
3363
-
3364
-
3365
-
3366
- .advanced-search-container {
3367
-
3368
- }
3369
-
3370
- .advanced-search-filter {
3371
- @apply flex gap-6 mb-2 pr-2;
3372
- }
3373
-
3374
- .advanced-search-filter-field-container {
3375
-
3376
- }
3377
-
3378
- .advanced-search-filter-value-container {
3379
- @apply flex gap-6 mb-6;
3380
- }
3381
-
3382
- .advanced-search-filter-field-label {
3383
-
3384
- }
3385
-
3386
- .advanced-search-filter-value-label {
3387
- @apply block;
3388
- }
3389
-
3390
- .advanced-search-filter-operator-container {
3391
-
3392
- }
3393
-
3394
- .advanced-search-filter-operator-label {
3395
- @apply block;
3396
- }
3397
-
3398
- .advanced-search-filter-value-input {
3399
- @apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
3400
- }
3401
-
3402
- .advanced-search-filter-value-input-daterange-from {
3403
- @apply mt-6 p-2;
3404
- }
3405
-
3406
- .advanced-search-filter-value-input-daterange-to {
3407
- @apply mt-6 p-2;
3408
- }
3409
-
3410
- .advanced-search-chips {
3411
- @apply inline-flex rounded-full items-center mx-2 mb-4 py-1 pl-3 pr-1 text-sm font-medium bg-gray-300 text-gray-700;
3412
- }
3413
-
3414
- .advanced-search-chips-remove-filter {
3415
- @apply flex-shrink-0 ml-0.5 h-4 w-4 rounded-full inline-flex items-center justify-center text-gray-400 hover:bg-gray-200 hover:text-gray-500 focus:outline-none focus:bg-gray-500 focus:text-white;
3416
- }
3417
-
3418
- .advanced-search-chips.disabled .advanced-search-chips-remove-filter:active {
3419
- @apply transform-none;
3420
- }
3421
-
3422
-
3423
-
3424
- .app-logo {
3425
- @apply h-8 w-8;
3426
- }
3427
-
3428
- .shell-container {
3429
- @apply antialiased font-sans bg-gray-100 h-full;
3430
- }
3431
-
3432
- .shell-header-container {
3433
- @apply bg-gradient-to-r from-gray-900 to-gray-800 pb-24 sm:pb-28 z-50;
3434
- }
3435
-
3436
- .sidebar .shell-header-container {
3437
- @apply bg-gradient-to-r from-gray-900 to-gray-800 z-50 pb-0 sm:pb-0 w-full flex justify-end;
3438
- }
3439
-
3440
- .shell-header-container-inner {
3441
- @apply max-w-7xl mx-auto;
3442
- }
3443
-
3444
- .sidebar .shell-header-container-inner {
3445
- @apply max-w-full mx-auto;
3446
- }
3447
-
3448
- .shell-header-container-inner-fluid {
3449
- @apply w-full mx-auto;
3450
- }
3451
-
3452
- .shell-content-container {
3453
- @apply mx-auto -mt-24;
3454
- }
3455
-
3456
- .sidebar .shell-content-container {
3457
- @apply mx-auto mt-0;
3458
- }
3459
-
3460
- .shell-content-container-no-header {
3461
- /* overide this style in your app */
3462
- @apply mx-auto ;
3463
- }
3464
-
3465
- .sidebar .shell-content-container-inner {
3466
- @apply max-w-full px-4 pb-2 min-h-screen;
3467
- }
3468
-
3469
- .shell-content-container-inner {
3470
- @apply max-w-7xl mx-auto px-4 pb-2 sm:px-6 lg:px-8 min-h-screen;
3471
- }
3472
-
3473
- .shell-content-container-inner-fluid {
3474
- @apply w-full mx-auto min-h-screen ;
3475
- }
3476
-
3477
-
3478
- .shell-header-paddings {
3479
- @apply mx-auto px-4 sm:px-6 lg:px-8;
3480
- }
3481
-
3482
-
3483
- .sidebar .shell-header-paddings {
3484
- @apply mx-auto px-2;
3485
- }
3486
-
3487
- .shell-header-border {
3488
- @apply border-b border-gray-700;
3489
- }
3490
-
3491
- .sidebar .shell-header-border {
3492
- @apply border-0;
3493
- }
3494
-
3495
- .shell-header-menu-container {
3496
- @apply flex items-center justify-between h-16;
3497
- }
3498
-
3499
- .shell-header-md-visible {
3500
- @apply hidden sm:block;
3501
- }
3502
-
3503
- .shell-header-link-container {
3504
- @apply hidden sm:ml-6 sm:block ml-10 flex-grow justify-start flex items-center space-x-4;
3505
- }
3506
-
3507
- .shell-header-link-container-inner {
3508
- @apply flex justify-start;
3509
- }
3510
-
3511
- .shell-header-logo-container {
3512
- @apply flex flex-grow-0 flex-shrink-0 items-center;
3513
- }
3514
-
3515
- .shell-header-links-far-container {
3516
- @apply flex flex-grow-0 flex-shrink-0 items-center ml-2;
3517
- }
3518
-
3519
- .shell-header-menu-rounded-button {
3520
- @apply bg-gray-800 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
3521
- }
3522
-
3523
- .shell-header-menu-rounded-button-icon-style {
3524
- @apply h-6 w-6;
3525
- }
3526
-
3527
- .shell-header-profile {
3528
- @apply flex items-center;
3529
- }
3530
-
3531
- .shell-header-profile .shell-header-profile-userName {
3532
- @apply cursor-pointer text-white text-xs;
3533
- }
3534
-
3535
- .shell-header-profile-dropdown-button {
3536
- @apply max-w-xs outline-none focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
3537
- focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
3538
- }
3539
-
3540
- .shell-header-profile-dropdown {
3541
- @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;
3542
- }
3543
-
3544
- .shell-header-profile-dropdown-with-username {
3545
- @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;
3546
- }
3547
-
3548
-
3549
- .mobile-menu-button-container {
3550
- @apply -mr-2 grid grid-cols-1 sm:hidden;
3551
- }
3552
-
3553
- .mobile-menu-button {
3554
- @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;
3555
- }
3556
-
3557
- .mobile-menu-container {
3558
- @apply border-b h-full w-full sm:opacity-75 border-gray-700 md:hidden z-50;
3559
- }
3560
-
3561
- .mobile-menu-link-container {
3562
- @apply px-2 py-3 grid grid-cols-1 space-y-1;
3563
- }
3564
-
3565
- .mobile-menu-user-info-container {
3566
- @apply pt-4 pb-3 border-t border-gray-700;
3567
- }
3568
-
3569
- .mobile-menu-user-info-container-inner {
3570
- @apply flex items-center px-5;
3571
- }
3572
-
3573
- .mobile-menu-avatar-container {
3574
- @apply inline-flex items-center justify-center h-10 w-10 rounded-full ring-1 ring-blue-300;
3575
- }
3576
-
3577
- .mobile-menu-avatar-name {
3578
- @apply text-sm font-medium leading-none text-white;
3579
- }
3580
-
3581
- .mobile-menu-user-name {
3582
- @apply text-base font-medium leading-none text-white;
3583
- }
3584
-
3585
- .mobile-menu-user-email {
3586
- @apply text-sm font-medium leading-none text-gray-400;
3587
- }
3588
-
3589
- .mobile-menu-rounded-button {
3590
- @apply ml-auto bg-gray-800 flex-shrink-0 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white;
3591
- }
3592
-
3593
- .mobile-menu-rounded-button-icon-style {
3594
- @apply h-6 w-6;
3595
- }
3596
-
3597
- .shell-footer-container {
3598
- @apply bg-gradient-to-r from-gray-800 to-gray-900 mt-10 pt-6;
3599
- }
3600
-
3601
- .shell-footer-container-inner {
3602
- @apply max-w-7xl mx-auto;
3603
- }
3604
-
3605
- .shell-footer-container-inner-fluid {
3606
- @apply w-full mx-auto;
3607
- }
3608
-
3609
- .shell-footer-component-container {
3610
- @apply text-gray-300;
3611
- }
3612
-
3613
- .shell-footer-paddings {
3614
- @apply mx-auto px-4 sm:px-6 lg:px-8;
3615
- }
3616
-
3617
- .shell-footer-component-container-inner {
3618
- @apply w-full mx-auto;
3619
- }
3620
-
3621
- .shell-footer-logo-h {
3622
- @apply h-12;
3623
- }
3624
-
3625
- .shell-footer-sections-container {
3626
- @apply grid grid-cols-8 md:grid-cols-9 lg:grid-cols-8 divide-gray-700 divide-y-2 md:divide-x-2 md:divide-y-0 md:-mx-8;
3627
- }
3628
-
3629
- .shell-footer-section {
3630
- @apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
3631
- }
3632
-
3633
- .shell-footer-section nav {
3634
- @apply mt-4;
3635
- }
3636
-
3637
- .shell-footer-section ul {
3638
- @apply space-y-2;
3639
- }
3640
-
3641
- .shell-footer-section-links {
3642
- @apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
3643
- }
3644
-
3645
-
3646
- .shell-footer-section-links ul {
3647
- @apply grid lg:grid-cols-2;
3648
- }
3649
-
3650
- .shell-footer-section-links li {
3651
- @apply mb-2;
3652
- }
3653
-
3654
- .shell-footer-section-title {
3655
- @apply text-xl font-semibold text-white;
3656
- }
3657
-
3658
-
3659
- .shell-footer-social {
3660
- @apply flex space-x-2 font-normal text-base hover:text-gray-100;
3661
- }
3662
-
3663
- .shell-footer-social-icon {
3664
- @apply h-6 w-6;
3665
- }
3666
-
3667
- .shell-footer-link {
3668
- @apply text-sm text-gray-400 hover:underline transition duration-150 ease-in-out;
3669
- }
3670
-
3671
- .shell-footer-copyright {
3672
- @apply max-w-screen-xl mx-auto flex flex-col md:flex-row justify-between items-center space-y-4 mt-8 lg:mt-12 border-t-2 border-gray-700 py-5;
3673
- }
3674
-
3675
-
3676
-
3677
- .side-pane-outer-container {
3678
- @apply fixed inset-0 overflow-hidden z-40;
3679
- }
3680
-
3681
- .side-pane-overlay {
3682
- @apply absolute bg-gray-500 bg-opacity-25 inset-0;
3683
- }
3684
-
3685
- .side-pane-overlay-opacity-0 {
3686
- @apply absolute bg-gray-500 bg-opacity-0 inset-0;
3687
- }
3688
-
3689
- .side-pane-overlay-opacity-50 {
3690
- @apply absolute bg-gray-500 bg-opacity-50 inset-0;
3691
- }
3692
-
3693
- .side-pane-container {
3694
- @apply fixed inset-y-0 right-0 max-w-full flex transition-all duration-200 ease-in-out;
3695
- }
3696
-
3697
- .side-pane-container-inner {
3698
- @apply w-screen max-w-md;
3699
- }
3700
-
3701
- .side-pane-box-size {
3702
- @apply w-screen max-w-2xl;
3703
- }
3704
-
3705
- .side-pane-box-size-25 {
3706
- @apply w-screen max-w-2xl;
3707
- }
3708
-
3709
- .side-pane-box-size-50 {
3710
- @apply w-screen max-w-3xl;
3711
- }
3712
-
3713
- .side-pane-box-size-75 {
3714
- @apply w-screen max-w-4xl;
3715
- }
3716
-
3717
-
3718
- .side-pane-box-size-100 {
3719
- @apply w-screen max-w-full;
3720
- }
3721
-
3722
- .side-pane {
3723
- @apply flex flex-col bg-white shadow-xl overflow-y-hidden;
3724
- }
3725
-
3726
-
3727
- .side-view-layout-size-box {
3728
- @apply h-screen;
3729
- }
3730
-
3731
- .side-view-layout-container {
3732
- @apply h-full flex flex-col shadow-xl bg-gray-900;
3733
- }
3734
-
3735
- .side-view-layout-container-inner {
3736
- @apply min-h-0 flex-1 flex flex-col pt-6 overflow-y-hidden;
3737
- }
3738
-
3739
- .side-view-layout-header-margins {
3740
- @apply px-4 sm:px-6;
3741
- }
3742
-
3743
- .side-view-layout-header-container {
3744
- @apply flex items-start justify-between;
3745
- }
3746
-
3747
- .side-view-layout-header-title {
3748
- @apply text-lg font-medium text-white;
3749
- }
3750
-
3751
- .side-view-layout-close-button-container {
3752
- @apply ml-3 h-7 flex items-center;
3753
- }
3754
-
3755
- .side-view-layout-close-button {
3756
- @apply rounded-sm text-white hover:text-gray-200 focus:outline-none focus:ring-1 focus:ring-gray-300;
3757
- }
3758
-
3759
- .side-view-layout-close-button-icon {
3760
- @apply h-6 w-6;
3761
- }
3762
-
3763
- .side-view-layout-content-container {
3764
- @apply bg-white mt-6 relative flex-1 px-6 overflow-y-auto;
3765
- }
3766
-
3767
- .side-view-layout-actions-container {
3768
- @apply flex-shrink-0 px-4 py-4 flex bg-gray-100 justify-end;
3769
- }
3770
-
3771
- .side-view-layout-action-button-cancel {
3772
- @apply bg-white py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
3773
- }
3774
-
3775
- .side-view-layout-action-button-submit {
3776
- @apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
3777
- }
3778
-
3779
- .side-view-layout-action-button-submit:disabled {
3780
- @apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-300 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500 cursor-not-allowed;
3781
- }
3782
-
3783
-
3784
-
3785
- /* Bullets */
3786
- .stepper-bullets-container {
3787
- @apply flex items-center justify-center;
3788
- }
3789
- .stepper-bullets-counter {
3790
- @apply text-sm font-medium;
3791
- }
3792
- .stepper-bullets-ol {
3793
- @apply ml-8 flex items-center space-x-5;
3794
- }
3795
- .stepper-bullets-completed-step {
3796
- @apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
3797
- }
3798
- .stepper-bullets-active-step {
3799
- @apply relative flex items-center justify-center;
3800
- }
3801
- .stepper-bullets-active-step-level1 {
3802
- @apply absolute w-5 h-5 p-px flex;
3803
- }
3804
- .stepper-bullets-active-step-level11 {
3805
- @apply w-full h-full rounded-full bg-blue-200;
3806
- }
3807
- .stepper-bullets-active-step-bullet {
3808
- @apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
3809
- }
3810
- .stepper-bullets-upcoming-step {
3811
- @apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
3812
- }
3813
-
3814
- /* Bullets & Text */
3815
- .stepper-bullets-and-text-container {
3816
- @apply flex items-center justify-center;
3817
- }
3818
- .stepper-bullets-and-text-ol {
3819
- @apply space-y-6;
3820
- }
3821
- .stepper-bullets-and-text-completed-step {
3822
- @apply flex items-start;
3823
- }
3824
- .stepper-bullets-and-text-completed-step-level1 {
3825
- @apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
3826
- }
3827
- .stepper-bullets-and-text-completed-step-container {
3828
- @apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
3829
- }
3830
- .stepper-bullets-and-text-active-step {
3831
- @apply flex items-start;
3832
- }
3833
- .stepper-bullets-and-text-active-step-level1 {
3834
- @apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
3835
- }
3836
- .stepper-bullets-and-text-active-step-level11 {
3837
- @apply absolute h-4 w-4 rounded-full bg-blue-200;
3838
- }
3839
- .stepper-bullets-and-text-active-step-level12 {
3840
- @apply relative block w-2 h-2 bg-blue-600 rounded-full;
3841
- }
3842
- .stepper-bullets-and-text-active-step-container {
3843
- @apply ml-3 text-sm font-medium text-blue-600;
3844
- }
3845
- .stepper-bullets-and-text-upcoming-step {
3846
- @apply flex items-start;
3847
- }
3848
- .stepper-bullets-and-text-upcoming-step-level1 {
3849
- @apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
3850
- }
3851
- .stepper-bullets-and-text-upcoming-step-level2 {
3852
- @apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
3853
- }
3854
- .stepper-bullets-and-text-upcoming-step-container {
3855
- @apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
3856
- }
3857
-
3858
- /* Circles */
3859
-
3860
- /* Panels With Border */
3861
- .panels-with-border-container {
3862
- @apply border-t border-b border-gray-200;
3863
- }
3864
- .panels-with-border-nav {
3865
- @apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
3866
- }
3867
- .panels-with-border-ol {
3868
- @apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
3869
- }
3870
- .panels-with-border-li {
3871
- @apply relative overflow-hidden lg:flex-1 cursor-pointer;
3872
- }
3873
- .panels-with-border-completed-step {
3874
- @apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
3875
- }
3876
- .panels-with-border-completed-step-level1 {
3877
- @apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
3878
- }
3879
- .panels-with-border-completed-step-level2 {
3880
- @apply px-6 py-5 flex items-start text-sm font-medium;
3881
- }
3882
- .panels-with-border-completed-step-level21 {
3883
- @apply flex-shrink-0;
3884
- }
3885
- .panels-with-border-completed-step-level211 {
3886
- @apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
3887
- }
3888
- .panels-with-border-completed-step-level22 {
3889
- @apply mt-0.5 ml-4 min-w-0 flex flex-col;
3890
- }
3891
- .panels-with-border-completed-step-level221 {
3892
- @apply text-xs font-semibold tracking-wide uppercase;
3893
- }
3894
- .panels-with-border-completed-step-level222 {
3895
- @apply text-sm font-medium text-gray-500;
3896
- }
3897
- .panels-with-border-active-step {
3898
- @apply border border-gray-200 overflow-hidden lg:border-0;
3899
- }
3900
- .panels-with-border-active-step-level1 {
3901
- @apply absolute top-0 left-0 w-1 h-full bg-blue-600 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
3902
- }
3903
- .panels-with-border-active-step-level2 {
3904
- @apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
3905
- }
3906
- .panels-with-border-active-step-level21 {
3907
- @apply flex-shrink-0;
3908
- }
3909
- .panels-with-border-active-step-level211 {
3910
- @apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
3911
- }
3912
- .panels-with-border-active-step-level211-text {
3913
- @apply text-blue-600;
3914
- }
3915
- .panels-with-border-active-step-level22 {
3916
- @apply mt-0.5 ml-4 min-w-0 flex flex-col;
3917
- }
3918
- .panels-with-border-active-step-level221 {
3919
- @apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
3920
- }
3921
- .panels-with-border-active-step-level222 {
3922
- @apply text-sm font-medium text-gray-500;
3923
- }
3924
- .panels-with-border-step-separator {
3925
- @apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
3926
- }
3927
- .panels-with-border-upcoming-step {
3928
- @apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
3929
- }
3930
- .panels-with-border-upcoming-step-level1 {
3931
- @apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
3932
- }
3933
- .panels-with-border-upcoming-step-level2 {
3934
- @apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
3935
- }
3936
- .panels-with-border-upcoming-step-level21 {
3937
- @apply flex-shrink-0;
3938
- }
3939
- .panels-with-border-upcoming-step-level211 {
3940
- @apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
3941
- }
3942
- .panels-with-border-upcoming-step-level211-text {
3943
- @apply text-gray-500;
3944
- }
3945
- .panels-with-border-upcoming-step-level22 {
3946
- @apply mt-0.5 ml-4 min-w-0 flex flex-col;
3947
- }
3948
- .panels-with-border-upcoming-step-level221 {
3949
- @apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
3950
- }
3951
- .panels-with-border-upcoming-step-level222 {
3952
- @apply text-sm font-medium text-gray-500;
3953
- }
3954
-
3955
- .tab-group-select-hidden {
3956
- @apply sm:hidden;
3957
- }
3958
-
3959
- .tab-group-select {
3960
- @apply block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md;
3961
- }
3962
-
3963
- .tab-active {
3964
- @apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
3965
- }
3966
-
3967
- .tab {
3968
- @apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
3969
- }
3970
-
3971
- .tab-group-container-nav {
3972
- @apply -mb-px flex space-x-8;
3973
- }
3974
-
3975
- .tab-group-container-hidden {
3976
- @apply hidden sm:block;
3977
- }
3978
-
3979
- .tab-group-container {
3980
- @apply border-b border-gray-200;
3981
- }
3982
-
3983
- .toast {
3984
- @apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start z-50;
3985
- animation: move 400ms ease-in;
3986
- }
3987
-
3988
- .toast-closed {
3989
- @apply fixed inset-0 flex items-end px-4 py-6 pointer-events-none sm:p-6 sm:items-start;
3990
- animation: close 100ms ease-out;
3991
- }
3992
-
3993
- .toast-container {
3994
- @apply w-full flex flex-col items-center space-y-4 sm:items-end z-50;
3995
- }
3996
-
3997
- .toast-pill {
3998
- @apply max-w-sm w-full bg-white shadow-lg rounded-xl pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden;
3999
- }
4000
-
4001
- .toast-context-padding {
4002
- @apply p-4;
4003
- }
4004
-
4005
- .toast-context {
4006
- @apply flex items-start;
4007
- }
4008
-
4009
- .toast-icon {
4010
- @apply flex-shrink-0;
4011
- }
4012
-
4013
- .toast-close-icon {
4014
- @apply ml-4 flex-shrink-0 flex;
4015
- }
4016
-
4017
- .toast-close-button {
4018
- @apply bg-white rounded-sm inline-flex text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500;
4019
- }
4020
-
4021
- .toast-title {
4022
- @apply mb-1 text-sm font-medium text-gray-900;
4023
- }
4024
-
4025
- .toast-body {
4026
- @apply text-sm text-gray-500 whitespace-normal;
4027
- word-break: break-word;
4028
- }
4029
-
4030
- @keyframes move {
4031
- from {
4032
- opacity: 0;
4033
- --tw-translate-y: 0.5rem;
4034
- transform: translateY(0.5rem);
4035
- }
4036
-
4037
- to {
4038
- --tw-translate-y: 0;
4039
- transform: translateY(0);
4040
- opacity: 100;
4041
- }
4042
- }
4043
-
4044
- @keyframes close {
4045
- from {
4046
- opacity: 100;
4047
- }
4048
-
4049
- to {
4050
- opacity: 0;
4051
- }
4052
- }
4053
-
4054
-
4055
- .toggle-button {
4056
- @apply mt-3 relative inline-flex flex-shrink-0 h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500
4057
- }
4058
-
4059
- .toggle-span {
4060
- @apply translate-x-0 pointer-events-none inline-block h-5 w-5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200
4061
- }
4062
-
4063
- .enabled {
4064
- @apply bg-indigo-600
4065
- }
4066
-
4067
- .enabled-anim {
4068
- @apply translate-x-5
4069
- }
4070
-
4071
- .disabled {
4072
- @apply bg-gray-200
4073
- }
4074
-
4075
- .disabled-anim {
4076
- @apply translate-x-0
4077
- }
4078
-
4079
-
4080
-
4081
- .view-container {
4082
- @apply mt-4 sm:mt-5 flex flex-col;
4083
- }
4084
-
4085
- .view-container-fluid {
4086
- @apply sm:px-0 ;
4087
- }
4088
-
4089
- .view-layout-paddings {
4090
- @apply py-4 sm:py-6;
4091
- }
4092
-
4093
- .sidebar .view-layout-paddings {
4094
- @apply py-2 sm:py-4;
4095
- }
4096
-
4097
- .view-layout-title-container {
4098
- @apply flex text-white flex-col md:flex-row justify-start;
4099
- }
4100
-
4101
- .view-layout-title-container-inner {
4102
- @apply flex-1 min-w-0;
4103
- }
4104
-
4105
- .view-layout-title-container-far {
4106
- @apply flex items-center justify-start sm:justify-end;
4107
- }
4108
-
4109
- .title-icon {
4110
- @apply text-2xl md:text-xl text-white font-thin mr-1;
4111
- }
4112
-
4113
- .sidebar .title-icon {
4114
- @apply text-2xl md:text-xl font-thin mr-1 text-gray-900;
4115
- }
4116
-
4117
- .view-layout-title {
4118
- @apply inline text-xl md:text-3xl text-white;
4119
- }
4120
-
4121
- .sidebar .view-layout-title {
4122
- @apply inline text-xl md:text-3xl text-gray-900;
4123
- }
4124
-
4125
- .view-layout-title-busy {
4126
- @apply animate-pulse inline text-xl md:text-3xl text-gray-200;
4127
- }
4128
-
4129
- .sidebar .view-layout-title-busy {
4130
- @apply animate-pulse inline text-xl md:text-3xl text-gray-400;
4131
- }
4132
-
4133
- .meta-container {
4134
- @apply mt-1 ml-1 hidden h-0 w-0 md:w-full md:flex md:flex-wrap opacity-75;
4135
- }
4136
-
4137
- .sidebar .meta-container {
4138
- @apply text-gray-900;
4139
- }
4140
-
4141
- .meta-item-container {
4142
- @apply flex items-center mr-2;
4143
- }
4144
-
4145
- .meta-icon {
4146
- @apply text-sm mr-1;
4147
- }
4148
-
4149
- .meta-text {
4150
- @apply text-xs mr-1;
4151
- }
4152
-
4153
- .search-container {
4154
- @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;
4155
- }
4156
- /*
4157
- .search-input {
4158
- @apply pl-10 pr-20 w-60 bg-gray-50 rounded-sm text-sm text-gray-900 border-gray-400 placeholder-gray-500 outline-none focus:shadow focus:outline-none z-0;
4159
- } */
4160
-
4161
- .search-input {
4162
- @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;
4163
- }
4164
-
4165
- .search-button {
4166
- @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;
4167
- }
4168
-
4169
-
4170
- .combobox-wrapper {
4171
- @apply relative mt-1;
4172
- }
4173
-
4174
- .combobox-input {
4175
- @apply w-full rounded-md border border-gray-300 bg-white py-2 pl-3 pr-12 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-1 focus:ring-indigo-500 sm:text-sm;
4176
- }
4177
-
4178
- .combobox-icons {
4179
- @apply absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none;
4180
- }
4181
-
4182
- .combobox-results {
4183
- @apply absolute z-10 mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm;
4184
- }
4185
-
4186
- .combobox-default-item-template {
4187
- @apply hover:bg-gray-100 relative cursor-pointer select-none py-2 pl-3 pr-3 block truncate;
4188
- }
4189
-
4190
- .combobox-selected-item-wrapper {
4191
- @apply relative rounded-lg border border-gray-300 bg-white px-6 py-5 shadow-sm flex items-center space-x-3 hover:border-gray-400;
4192
- }
4193
-
4194
- .combobox-selected-item-remove-btn {
4195
- @apply cursor-pointer bg-white rounded-md inline-flex text-gray-400 hover:text-gray-500;
4196
- }
4197
-
4198
-
4199
- .toggle-button-button {
4200
- @apply relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-1 focus:ring-gray-500 focus:ring-offset-1;
4201
- }
4202
-
4203
- .toggle-button-button-disabled {
4204
- @apply opacity-75;
4205
- }
4206
-
4207
- .toggle-button-bg-false {
4208
- @apply bg-gray-200;
4209
- }
4210
-
4211
- .toggle-button-bg-true {
4212
- @apply bg-gray-600;
4213
- }
4214
-
4215
- .toggle-button-icon-container {
4216
- @apply pointer-events-none relative inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out;
4217
- }
4218
-
4219
- .toggle-button-icon-container-true {
4220
- @apply translate-x-5;
4221
- }
4222
-
4223
- .toggle-button-icon-container-false {
4224
- @apply translate-x-0;
4225
- }
4226
-
4227
- .toggle-button-icon-container-inner {
4228
- @apply opacity-100 ease-in duration-200 absolute inset-0 flex h-full w-full items-center justify-center transition-opacity;
4229
- }
4230
-
4231
- .toggle-button-container-inner-true {
4232
- @apply opacity-0 ease-out duration-100;
4233
- }
4234
-
4235
- .toggle-button-container-inner-false {
4236
- @apply opacity-100 ease-in duration-200;
4237
- }
4238
-
4239
- .toggle-button-icon {
4240
- @apply h-3 w-3 text-gray-600;
4241
- }
4242
-
4243
- .toggle-button-text {
4244
- @apply text-sm font-medium text-gray-900;
4245
- }
4246
-
4247
- .toggle-button-description {
4248
- @apply text-xs mt-1 text-gray-500;
4249
- }
4250
-
4251
-
4252
- .toggle-buttons-list-container {
4253
- @apply relative items-center inline-flex;
4254
- }
4255
-
4256
- .toggle-buttons-list-icon-container {
4257
- @apply flex-none mr-2;
4258
- }
4259
-
4260
- .toggle-buttons-list-drop-down-container {
4261
- @apply block lg:hidden z-10;
4262
- }
4263
-
4264
- .toggle-buttons-list-drop-down-compact-container {
4265
- @apply block z-10;
4266
- }
4267
-
4268
- /* mw-40 not supported*/
4269
- .toggle-buttons-list-drop-down {
4270
- @apply w-full;
4271
- }
4272
-
4273
- .toggle-buttons-list {
4274
- @apply hidden lg:block;
4275
- }
4276
-
4277
- .toggle-buttons-list-button {
4278
- @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;
4279
- }
4280
-
4281
- .toggle-buttons-list-button-selected {
4282
- @apply bg-gray-100;
4283
- }
4284
-
4285
- .toggle-buttons-list-button-icon-container {
4286
- @apply flex-none mr-2;
4287
- }
4288
-
4289
- .toggle-buttons-list-button-button-text {
4290
- @apply mr-2 block overflow-ellipsis overflow-hidden;
4291
- }
4292
-
4293
- .toggle-buttons-list-button-button-count {
4294
- @apply ml-1.5 rounded py-0.5 px-1.5 bg-gray-200 text-xs text-gray-700 tabular-nums;
4295
- }
4296
-
4297
- .progress-bar-container {
4298
- @apply flex grid grid-cols-1;
4299
- }
4300
-
4301
- .progress-bar-label {
4302
- @apply text-xs mt-2 truncate text-ellipsis;
4303
- }
4304
-
4305
- .progress-bar-backdrop {
4306
- @apply flex mt-1 h-4 rounded-md backdrop-blur-sm bg-slate-200/25;
4307
- }
4308
-
4309
- .progress-bar-inner {
4310
- @apply h-2 m-1 rounded-md bg-sky-200 transition-[width] ease-in-out duration-300 transform;
4311
- }
4312
-
4313
-
4314
- .modal-active {
4315
- overflow: hidden;
4316
- }
4317
-
4318
- button:active {
4319
- transform: translateY(2px);
4320
- }
4321
-
4322
- a:active {
4323
- transform: translateY(2px);
4324
- }