cmat 0.0.3 → 0.0.4
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/components/breadcrumb/breadcrumb.component.d.ts +18 -20
- package/components/card/card.component.d.ts +0 -5
- package/components/cascade/cascade-list/cascade-list.component.d.ts +12 -9
- package/components/cascade/cascade-menu/cascade-menu.component.d.ts +0 -1
- package/components/chip-input/chip-input.component.d.ts +34 -0
- package/components/chip-input/index.d.ts +5 -0
- package/components/chip-input/public-api.d.ts +1 -0
- package/components/date-range/date-range.component.d.ts +3 -2
- package/components/json-editor/index.d.ts +5 -0
- package/components/json-editor/json-editor.component.d.ts +25 -0
- package/components/json-editor/public-api.d.ts +1 -0
- package/components/navigation/vertical/components/aside/aside.component.d.ts +2 -5
- package/components/navigation/vertical/components/basic/basic.component.d.ts +2 -5
- package/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +2 -5
- package/components/navigation/vertical/components/divider/divider.component.d.ts +2 -5
- package/components/navigation/vertical/components/group/group.component.d.ts +2 -5
- package/components/navigation/vertical/components/spacer/spacer.component.d.ts +2 -5
- package/components/navigation/vertical/vertical.component.d.ts +1 -4
- package/components/progress-bar/progress-bar.component.d.ts +3 -2
- package/components/rating/rating.component.d.ts +3 -2
- package/components/select-search/select-search.component.d.ts +1 -2
- package/components/select-tree/select-tree.component.d.ts +5 -12
- package/components/timeline/timeline-item/timeline-item.component.d.ts +1 -1
- package/components/transfer-picker/interface.d.ts +1 -1
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.d.ts +4 -4
- package/components/transfer-picker/transfer-picker.service.d.ts +2 -1
- package/directives/autofocus/autofocus.directive.d.ts +1 -3
- package/directives/debounce/debounce-keyup.directive.d.ts +1 -1
- package/directives/digit-only/digit-only.directive.d.ts +2 -0
- package/esm2022/animations/dropdown.mjs +26 -0
- package/esm2022/animations/public-api.mjs +2 -2
- package/esm2022/components/adapter/dayjs-date-adapter.mjs +3 -3
- package/esm2022/components/adapter/dayjs-datetime-adapter.mjs +3 -3
- package/esm2022/components/adapter/native-datetime-adapter.mjs +3 -3
- package/esm2022/components/breadcrumb/breadcrumb-item.directive.mjs +3 -3
- package/esm2022/components/breadcrumb/breadcrumb.component.mjs +16 -17
- package/esm2022/components/breadcrumb/breadcrumb.service.mjs +4 -4
- package/esm2022/components/card/card.component.mjs +5 -14
- package/esm2022/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.mjs +5 -6
- package/esm2022/components/cascade/cascade-list/cascade-list.component.mjs +65 -39
- package/esm2022/components/cascade/cascade-menu/cascade-menu.component.mjs +5 -9
- package/esm2022/components/chip-input/chip-input.component.mjs +144 -0
- package/esm2022/components/chip-input/cmat-components-chip-input.mjs +5 -0
- package/esm2022/components/chip-input/public-api.mjs +2 -0
- package/esm2022/components/date-range/date-range.component.mjs +13 -9
- package/esm2022/components/drawer/drawer.component.mjs +4 -4
- package/esm2022/components/drawer/drawer.service.mjs +3 -3
- package/esm2022/components/fullscreen/fullscreen.component.mjs +3 -3
- package/esm2022/components/highlight/highlight.component.mjs +3 -3
- package/esm2022/components/highlight/highlight.service.mjs +3 -3
- package/esm2022/components/json-editor/cmat-components-json-editor.mjs +5 -0
- package/esm2022/components/json-editor/json-editor.component.mjs +176 -0
- package/esm2022/components/json-editor/public-api.mjs +2 -0
- package/esm2022/components/masonry/masonry.component.mjs +3 -3
- package/esm2022/components/material-color-picker/material-color-picker.component.mjs +6 -6
- package/esm2022/components/material-datetimepicker/calendar-body.mjs +5 -6
- package/esm2022/components/material-datetimepicker/calendar.mjs +7 -8
- package/esm2022/components/material-datetimepicker/clock.mjs +6 -6
- package/esm2022/components/material-datetimepicker/datetimepicker-input.mjs +3 -3
- package/esm2022/components/material-datetimepicker/datetimepicker-intl.mjs +3 -3
- package/esm2022/components/material-datetimepicker/datetimepicker-toggle.mjs +8 -9
- package/esm2022/components/material-datetimepicker/datetimepicker.mjs +7 -7
- package/esm2022/components/material-datetimepicker/month-view.mjs +5 -6
- package/esm2022/components/material-datetimepicker/multi-year-view.mjs +3 -3
- package/esm2022/components/material-datetimepicker/time.mjs +8 -9
- package/esm2022/components/material-datetimepicker/year-view.mjs +3 -3
- package/esm2022/components/navigation/horizontal/components/basic/basic.component.mjs +6 -6
- package/esm2022/components/navigation/horizontal/components/branch/branch.component.mjs +7 -8
- package/esm2022/components/navigation/horizontal/components/divider/divider.component.mjs +3 -3
- package/esm2022/components/navigation/horizontal/components/spacer/spacer.component.mjs +3 -3
- package/esm2022/components/navigation/horizontal/horizontal.component.mjs +5 -6
- package/esm2022/components/navigation/navigation.service.mjs +3 -3
- package/esm2022/components/navigation/vertical/components/aside/aside.component.mjs +8 -17
- package/esm2022/components/navigation/vertical/components/basic/basic.component.mjs +7 -15
- package/esm2022/components/navigation/vertical/components/collapsable/collapsable.component.mjs +8 -19
- package/esm2022/components/navigation/vertical/components/divider/divider.component.mjs +6 -15
- package/esm2022/components/navigation/vertical/components/group/group.component.mjs +9 -19
- package/esm2022/components/navigation/vertical/components/spacer/spacer.component.mjs +6 -15
- package/esm2022/components/navigation/vertical/vertical.component.mjs +7 -18
- package/esm2022/components/pagination/pagination.component.mjs +6 -7
- package/esm2022/components/pagination/pagination.directive.mjs +3 -3
- package/esm2022/components/pagination/pagination.pipe.mjs +5 -5
- package/esm2022/components/pagination/pagination.service.mjs +3 -3
- package/esm2022/components/password-strength/mat-pass-toggle-visibility/mat-pass-toggle-visibility.component.mjs +3 -3
- package/esm2022/components/password-strength/mat-password-strength/mat-password-strength.component.mjs +6 -6
- package/esm2022/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.mjs +8 -9
- package/esm2022/components/popover/popover.component.mjs +5 -5
- package/esm2022/components/progress-bar/progress-bar.component.mjs +11 -8
- package/esm2022/components/rating/rating.component.mjs +14 -6
- package/esm2022/components/select-search/select-no-entries-found.directive.mjs +3 -3
- package/esm2022/components/select-search/select-search-clear.directive.mjs +3 -3
- package/esm2022/components/select-search/select-search.component.mjs +8 -11
- package/esm2022/components/select-tree/select-tree.component.mjs +13 -29
- package/esm2022/components/timeline/timeline-item/timeline-item.component.mjs +18 -16
- package/esm2022/components/timeline/timeline.component.mjs +3 -3
- package/esm2022/components/toast/toast-modal.component.mjs +7 -7
- package/esm2022/components/toast/toast.component.mjs +6 -6
- package/esm2022/components/toast/toast.service.mjs +3 -3
- package/esm2022/components/transfer-picker/filter/filter.component.mjs +17 -8
- package/esm2022/components/transfer-picker/interface.mjs +1 -1
- package/esm2022/components/transfer-picker/search/search.component.mjs +9 -5
- package/esm2022/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.mjs +44 -21
- package/esm2022/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.mjs +7 -6
- package/esm2022/components/transfer-picker/transfer-picker.component.mjs +9 -7
- package/esm2022/components/transfer-picker/transfer-picker.service.mjs +10 -7
- package/esm2022/directives/animate-on-scroll/animate-on-scroll.directive.mjs +3 -3
- package/esm2022/directives/animate-on-scroll/scroll.service.mjs +3 -3
- package/esm2022/directives/autofocus/autofocus.directive.mjs +7 -7
- package/esm2022/directives/debounce/abstract-debounce.directive.mjs +3 -3
- package/esm2022/directives/debounce/debounce-click.directive.mjs +3 -3
- package/esm2022/directives/debounce/debounce-keyup.directive.mjs +5 -5
- package/esm2022/directives/digit-only/digit-only.directive.mjs +20 -4
- package/esm2022/directives/digit-only/mask.directive.mjs +3 -3
- package/esm2022/directives/digit-only/public-api.mjs +1 -1
- package/esm2022/directives/equal-validator/equal-validator.directive.mjs +3 -3
- package/esm2022/lib/mock-api/mock-api.interceptor.mjs +3 -3
- package/esm2022/lib/mock-api/mock-api.service.mjs +3 -3
- package/esm2022/pipes/bytes/bytes.pipe.mjs +3 -3
- package/esm2022/pipes/date-format/date-format.pipe.mjs +3 -3
- package/esm2022/pipes/find-by-key/find-by-key.pipe.mjs +3 -3
- package/esm2022/pipes/group-by/group-by.pipe.mjs +3 -3
- package/esm2022/pipes/keys/keys.pipe.mjs +3 -3
- package/esm2022/pipes/secure/secure-pipe.mjs +5 -5
- package/esm2022/pipes/uppercase/uppercase.pipe.mjs +3 -3
- package/esm2022/services/alert/alert.service.mjs +16 -16
- package/esm2022/services/config/config.constants.mjs +1 -1
- package/esm2022/services/config/config.service.mjs +3 -3
- package/esm2022/services/config/urlStateConfig.service.mjs +4 -4
- package/esm2022/services/confirmation/confirmation.service.mjs +3 -3
- package/esm2022/services/confirmation/dialog/dialog.component.mjs +6 -6
- package/esm2022/services/data/data.service.mjs +4 -4
- package/esm2022/services/loading/loading.interceptor.mjs +3 -3
- package/esm2022/services/loading/loading.service.mjs +3 -3
- package/esm2022/services/local-storage/local-storage.service.mjs +3 -3
- package/esm2022/services/media-watcher/media-watcher.service.mjs +3 -3
- package/esm2022/services/platform/platform.service.mjs +3 -3
- package/esm2022/services/splash-screen/splash-screen.service.mjs +3 -3
- package/esm2022/services/title/title.service.mjs +3 -3
- package/esm2022/services/translation/translation.service.mjs +3 -3
- package/esm2022/services/utils/utils.service.mjs +3 -3
- package/fesm2022/cmat-animations.mjs.map +1 -1
- package/fesm2022/cmat-components-adapter.mjs +9 -9
- package/fesm2022/cmat-components-breadcrumb.mjs +21 -22
- package/fesm2022/cmat-components-breadcrumb.mjs.map +1 -1
- package/fesm2022/cmat-components-card.mjs +4 -13
- package/fesm2022/cmat-components-card.mjs.map +1 -1
- package/fesm2022/cmat-components-cascade.mjs +72 -49
- package/fesm2022/cmat-components-cascade.mjs.map +1 -1
- package/fesm2022/cmat-components-chip-input.mjs +151 -0
- package/fesm2022/cmat-components-chip-input.mjs.map +1 -0
- package/fesm2022/cmat-components-date-range.mjs +12 -8
- package/fesm2022/cmat-components-date-range.mjs.map +1 -1
- package/fesm2022/cmat-components-drawer.mjs +7 -7
- package/fesm2022/cmat-components-drawer.mjs.map +1 -1
- package/fesm2022/cmat-components-fullscreen.mjs +3 -3
- package/fesm2022/cmat-components-highlight.mjs +6 -6
- package/fesm2022/cmat-components-json-editor.mjs +183 -0
- package/fesm2022/cmat-components-json-editor.mjs.map +1 -0
- package/fesm2022/cmat-components-masonry.mjs +3 -3
- package/fesm2022/cmat-components-material-color-picker.mjs +5 -5
- package/fesm2022/cmat-components-material-color-picker.mjs.map +1 -1
- package/fesm2022/cmat-components-material-datetimepicker.mjs +51 -52
- package/fesm2022/cmat-components-material-datetimepicker.mjs.map +1 -1
- package/fesm2022/cmat-components-navigation.mjs +58 -125
- package/fesm2022/cmat-components-navigation.mjs.map +1 -1
- package/fesm2022/cmat-components-pagination.mjs +15 -16
- package/fesm2022/cmat-components-pagination.mjs.map +1 -1
- package/fesm2022/cmat-components-password-strength.mjs +14 -15
- package/fesm2022/cmat-components-password-strength.mjs.map +1 -1
- package/fesm2022/cmat-components-popover.mjs +4 -4
- package/fesm2022/cmat-components-popover.mjs.map +1 -1
- package/fesm2022/cmat-components-progress-bar.mjs +10 -7
- package/fesm2022/cmat-components-progress-bar.mjs.map +1 -1
- package/fesm2022/cmat-components-rating.mjs +13 -5
- package/fesm2022/cmat-components-rating.mjs.map +1 -1
- package/fesm2022/cmat-components-select-search.mjs +13 -16
- package/fesm2022/cmat-components-select-search.mjs.map +1 -1
- package/fesm2022/cmat-components-select-tree.mjs +12 -28
- package/fesm2022/cmat-components-select-tree.mjs.map +1 -1
- package/fesm2022/cmat-components-timeline.mjs +21 -19
- package/fesm2022/cmat-components-timeline.mjs.map +1 -1
- package/fesm2022/cmat-components-toast.mjs +13 -13
- package/fesm2022/cmat-components-toast.mjs.map +1 -1
- package/fesm2022/cmat-components-transfer-picker.mjs +81 -45
- package/fesm2022/cmat-components-transfer-picker.mjs.map +1 -1
- package/fesm2022/cmat-directives-animate-on-scroll.mjs +6 -6
- package/fesm2022/cmat-directives-autofocus.mjs +6 -6
- package/fesm2022/cmat-directives-autofocus.mjs.map +1 -1
- package/fesm2022/cmat-directives-debounce.mjs +10 -10
- package/fesm2022/cmat-directives-debounce.mjs.map +1 -1
- package/fesm2022/cmat-directives-digit-only.mjs +22 -6
- package/fesm2022/cmat-directives-digit-only.mjs.map +1 -1
- package/fesm2022/cmat-directives-equal-validator.mjs +3 -3
- package/fesm2022/cmat-lib-mock-api.mjs +6 -6
- package/fesm2022/cmat-pipes-bytes.mjs +3 -3
- package/fesm2022/cmat-pipes-date-format.mjs +3 -3
- package/fesm2022/cmat-pipes-find-by-key.mjs +3 -3
- package/fesm2022/cmat-pipes-group-by.mjs +3 -3
- package/fesm2022/cmat-pipes-keys.mjs +3 -3
- package/fesm2022/cmat-pipes-secure.mjs +4 -4
- package/fesm2022/cmat-pipes-secure.mjs.map +1 -1
- package/fesm2022/cmat-pipes-uppercase.mjs +3 -3
- package/fesm2022/cmat-services-alert.mjs +15 -15
- package/fesm2022/cmat-services-alert.mjs.map +1 -1
- package/fesm2022/cmat-services-config.mjs +6 -6
- package/fesm2022/cmat-services-config.mjs.map +1 -1
- package/fesm2022/cmat-services-confirmation.mjs +8 -8
- package/fesm2022/cmat-services-confirmation.mjs.map +1 -1
- package/fesm2022/cmat-services-data.mjs +3 -3
- package/fesm2022/cmat-services-data.mjs.map +1 -1
- package/fesm2022/cmat-services-loading.mjs +6 -6
- package/fesm2022/cmat-services-local-storage.mjs +3 -3
- package/fesm2022/cmat-services-media-watcher.mjs +3 -3
- package/fesm2022/cmat-services-platform.mjs +3 -3
- package/fesm2022/cmat-services-splash-screen.mjs +3 -3
- package/fesm2022/cmat-services-title.mjs +3 -3
- package/fesm2022/cmat-services-translation.mjs +3 -3
- package/fesm2022/cmat-services-utils.mjs +3 -3
- package/package.json +75 -65
- package/pipes/secure/secure-pipe.d.ts +1 -1
- package/services/alert/alert.service.d.ts +4 -4
- package/services/config/config.constants.d.ts +1 -1
- package/services/config/urlStateConfig.service.d.ts +3 -2
- package/styles/components/bundle.scss +559 -0
- package/styles/overrides/angular-material.scss +16 -16
- package/styles/styles.scss +6 -1
- package/styles/tailwind.scss +4 -2
- package/components/breadcrumb/breadcrumb.component.scss +0 -18
- package/components/card/card.component.scss +0 -63
- package/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.scss +0 -43
- package/components/cascade/cascade-list/cascade-list.component.scss +0 -22
- package/components/cascade/cascade-menu/cascade-menu.component.scss +0 -48
- package/components/date-range/date-range.component.scss +0 -232
- package/components/drawer/drawer.component.scss +0 -133
- package/components/highlight/highlight.component.scss +0 -3
- package/components/material-color-picker/material-color-picker.component.scss +0 -5
- package/components/material-datetimepicker/calendar-body.scss +0 -58
- package/components/material-datetimepicker/calendar.scss +0 -194
- package/components/material-datetimepicker/clock.scss +0 -90
- package/components/material-datetimepicker/datetimepicker-content.scss +0 -151
- package/components/material-datetimepicker/datetimepicker.scss +0 -145
- package/components/material-datetimepicker/time.scss +0 -82
- package/components/navigation/horizontal/horizontal.component.scss +0 -167
- package/components/navigation/vertical/styles/appearances/compact.scss +0 -103
- package/components/navigation/vertical/styles/appearances/default.scss +0 -550
- package/components/navigation/vertical/styles/appearances/dense.scss +0 -171
- package/components/navigation/vertical/styles/appearances/thin.scss +0 -91
- package/components/navigation/vertical/vertical.component.scss +0 -4
- package/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.scss +0 -19
- package/components/popover/popover.component.scss +0 -174
- package/components/progress-bar/progress-bar.component.scss +0 -7
- package/components/rating/rating.component.scss +0 -33
- package/components/select-search/select-search.component.scss +0 -126
- package/components/select-tree/select-tree.component.scss +0 -54
- package/components/timeline/timeline-item/timeline-item.component.scss +0 -329
- package/components/timeline/timeline.component.scss +0 -42
- package/components/toast/toast-modal.component.scss +0 -119
- package/components/toast/toast.component.scss +0 -62
- package/components/transfer-picker/filter/filter.component.scss +0 -40
- package/components/transfer-picker/search/search.component.scss +0 -7
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.scss +0 -25
- package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.scss +0 -27
- package/components/transfer-picker/transfer-picker.component.scss +0 -8
- package/esm2022/animations/drop.mjs +0 -26
- package/styles/main.scss +0 -9
- /package/animations/{drop.d.ts → dropdown.d.ts} +0 -0
|
@@ -335,6 +335,10 @@
|
|
|
335
335
|
font-weight: 500 !important;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
+
.mdc-evolution-chip-set__chips{
|
|
339
|
+
align-items: center;
|
|
340
|
+
}
|
|
341
|
+
|
|
338
342
|
/* -------------------------------------------------------------------------- */
|
|
339
343
|
/* @ Dialog
|
|
340
344
|
/* -------------------------------------------------------------------------- */
|
|
@@ -436,7 +440,7 @@
|
|
|
436
440
|
|
|
437
441
|
/* Default style tweaks and enhancements */
|
|
438
442
|
.mat-mdc-text-field-wrapper {
|
|
439
|
-
padding:
|
|
443
|
+
padding:0;
|
|
440
444
|
border-radius: 6px;
|
|
441
445
|
border-width: 1px;
|
|
442
446
|
border-style: solid;
|
|
@@ -458,7 +462,7 @@
|
|
|
458
462
|
display: flex;
|
|
459
463
|
align-items: stretch;
|
|
460
464
|
border-radius: 6px;
|
|
461
|
-
padding:
|
|
465
|
+
padding:0 16px;
|
|
462
466
|
|
|
463
467
|
.mat-mdc-form-field-icon-prefix,
|
|
464
468
|
.mat-mdc-form-field-text-prefix {
|
|
@@ -477,7 +481,7 @@
|
|
|
477
481
|
margin-right: 10px;
|
|
478
482
|
}
|
|
479
483
|
|
|
480
|
-
>.mat-datepicker-toggle {
|
|
484
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
481
485
|
margin-left: -8px;
|
|
482
486
|
}
|
|
483
487
|
}
|
|
@@ -499,7 +503,7 @@
|
|
|
499
503
|
margin-left: 10px;
|
|
500
504
|
}
|
|
501
505
|
|
|
502
|
-
>.mat-datepicker-toggle
|
|
506
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle{
|
|
503
507
|
margin-right: -8px;
|
|
504
508
|
}
|
|
505
509
|
}
|
|
@@ -688,11 +692,11 @@
|
|
|
688
692
|
margin-right: 8px;
|
|
689
693
|
}
|
|
690
694
|
|
|
691
|
-
>.mat-datepicker-toggle {
|
|
695
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
692
696
|
margin-right: 4px;
|
|
693
697
|
}
|
|
694
698
|
|
|
695
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
699
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
696
700
|
margin-right: 12px;
|
|
697
701
|
}
|
|
698
702
|
}
|
|
@@ -713,11 +717,11 @@
|
|
|
713
717
|
margin-left: 12px !important;
|
|
714
718
|
}
|
|
715
719
|
|
|
716
|
-
>.mat-datepicker-toggle {
|
|
720
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
717
721
|
margin-left: 4px !important;
|
|
718
722
|
}
|
|
719
723
|
|
|
720
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
724
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
721
725
|
margin-left: 12px !important;
|
|
722
726
|
}
|
|
723
727
|
}
|
|
@@ -849,11 +853,11 @@
|
|
|
849
853
|
margin-right: 12px !important;
|
|
850
854
|
}
|
|
851
855
|
|
|
852
|
-
>.mat-datepicker-toggle {
|
|
856
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
853
857
|
margin-right: 8px;
|
|
854
858
|
}
|
|
855
859
|
|
|
856
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
860
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
857
861
|
margin-right: 16px;
|
|
858
862
|
}
|
|
859
863
|
}
|
|
@@ -879,11 +883,11 @@
|
|
|
879
883
|
margin: 0 -4px 0 16px !important;
|
|
880
884
|
}
|
|
881
885
|
|
|
882
|
-
>.mat-datepicker-toggle {
|
|
886
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
883
887
|
margin-left: 8px;
|
|
884
888
|
}
|
|
885
889
|
|
|
886
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
890
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
887
891
|
margin-left: 16px;
|
|
888
892
|
}
|
|
889
893
|
}
|
|
@@ -1083,10 +1087,6 @@
|
|
|
1083
1087
|
align-items: center;
|
|
1084
1088
|
}
|
|
1085
1089
|
|
|
1086
|
-
&.mat-mdc-menu-item-submenu-trigger {
|
|
1087
|
-
padding-right: 40px;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
1090
|
.mat-icon {
|
|
1091
1091
|
margin-right: 12px;
|
|
1092
1092
|
}
|
package/styles/styles.scss
CHANGED
package/styles/tailwind.scss
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
border-bottom-width: 1px;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
input[disabled] {
|
|
46
|
+
input[disabled]:not(.mdc-checkbox__native-control) {
|
|
47
47
|
opacity: 1;
|
|
48
48
|
-webkit-text-fill-color: currentColor;
|
|
49
49
|
}
|
|
@@ -83,4 +83,6 @@
|
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
@tailwind components;
|
|
86
|
+
@tailwind components;
|
|
87
|
+
|
|
88
|
+
@tailwind utilities;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
cmat-breadcrumb {
|
|
2
|
-
.cmat-breadcrumb-root {
|
|
3
|
-
color: rgba(0, 0, 0, 0.6);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.cmat-breadcrumb-trail {
|
|
7
|
-
color: rgba(0, 0, 0, 0.9);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.cmat-breadcrumb-link {
|
|
11
|
-
@apply flex items-center text-primary whitespace-nowrap no-underline cursor-pointer;
|
|
12
|
-
transition: text-decoration 0.3s;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.cmat-breadcrumb-link:hover {
|
|
16
|
-
@apply underline;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
cmat-card {
|
|
2
|
-
position: relative;
|
|
3
|
-
display: flex;
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
@apply rounded-2xl shadow bg-card;
|
|
6
|
-
|
|
7
|
-
/* Flippable */
|
|
8
|
-
&.cmat-card-flippable {
|
|
9
|
-
border-radius: 0;
|
|
10
|
-
overflow: visible;
|
|
11
|
-
transform-style: preserve-3d;
|
|
12
|
-
transition: transform 1s;
|
|
13
|
-
perspective: 600px;
|
|
14
|
-
background: transparent;
|
|
15
|
-
@apply shadow-none;
|
|
16
|
-
|
|
17
|
-
&.cmat-card-face-back {
|
|
18
|
-
.cmat-card-front {
|
|
19
|
-
visibility: hidden;
|
|
20
|
-
opacity: 0;
|
|
21
|
-
transform: rotateY(180deg);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.cmat-card-back {
|
|
25
|
-
visibility: visible;
|
|
26
|
-
opacity: 1;
|
|
27
|
-
transform: rotateY(360deg);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.cmat-card-front,
|
|
32
|
-
.cmat-card-back {
|
|
33
|
-
display: flex;
|
|
34
|
-
flex-direction: column;
|
|
35
|
-
flex: 1 1 auto;
|
|
36
|
-
z-index: 10;
|
|
37
|
-
transition: transform 0.5s ease-out 0s, visibility 0s ease-in 0.2s,
|
|
38
|
-
opacity 0s ease-in 0.2s;
|
|
39
|
-
backface-visibility: hidden;
|
|
40
|
-
@apply rounded-2xl shadow bg-card;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.cmat-card-front {
|
|
44
|
-
position: relative;
|
|
45
|
-
opacity: 1;
|
|
46
|
-
visibility: visible;
|
|
47
|
-
transform: rotateY(0deg);
|
|
48
|
-
overflow: hidden;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.cmat-card-back {
|
|
52
|
-
position: absolute;
|
|
53
|
-
top: 0;
|
|
54
|
-
right: 0;
|
|
55
|
-
bottom: 0;
|
|
56
|
-
left: 0;
|
|
57
|
-
opacity: 0;
|
|
58
|
-
visibility: hidden;
|
|
59
|
-
transform: rotateY(180deg);
|
|
60
|
-
overflow: hidden auto;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
.cmat-cascade-bottom-sheet {
|
|
2
|
-
@apply p-0;
|
|
3
|
-
margin: -8px -16px;
|
|
4
|
-
|
|
5
|
-
.sheet-header {
|
|
6
|
-
@apply flex flex-1 items-center text-lg border-b;
|
|
7
|
-
padding: 12px 16px;
|
|
8
|
-
|
|
9
|
-
.sheet-title {
|
|
10
|
-
@apply text-secondary m-0 p-0 tracking-wider text-center flex-grow;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.menu-list {
|
|
15
|
-
vertical-align: top;
|
|
16
|
-
@apply box-border m-0 p-0 w-full overflow-hidden relative;
|
|
17
|
-
|
|
18
|
-
height: 204px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.menu-item {
|
|
22
|
-
@apply leading-loose p-0 text-ellipsis box-border cursor-pointer outline-none;
|
|
23
|
-
|
|
24
|
-
font-size: 14px;
|
|
25
|
-
line-height: 3em;
|
|
26
|
-
height: 3em;
|
|
27
|
-
|
|
28
|
-
&.disabled {
|
|
29
|
-
@apply text-disabled;
|
|
30
|
-
pointer-events: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&.active {
|
|
34
|
-
@apply text-primary bg-hover;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
&:focus:not(:active),
|
|
38
|
-
&:hover,
|
|
39
|
-
&.active:hover {
|
|
40
|
-
@apply bg-hover;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
.cmat-cascade-list {
|
|
2
|
-
@apply inline-block relative w-full leading-loose;
|
|
3
|
-
|
|
4
|
-
mat-form-field {
|
|
5
|
-
@apply w-full;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
input {
|
|
9
|
-
@apply cursor-pointer;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
&.disabled .cascade-label {
|
|
13
|
-
z-index: 2;
|
|
14
|
-
@apply text-disabled;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.cascade-label {
|
|
18
|
-
span {
|
|
19
|
-
@apply text-secondary;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
.cmat-cascade-menu {
|
|
2
|
-
z-index: 2007;
|
|
3
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
|
|
4
|
-
@apply absolute left-0 whitespace-nowrap bg-dialog;
|
|
5
|
-
|
|
6
|
-
.menu-list {
|
|
7
|
-
@apply inline-block border-r box-border m-0 p-2 overflow-hidden relative;
|
|
8
|
-
height: 204px;
|
|
9
|
-
min-width: 160px;
|
|
10
|
-
vertical-align: top;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.menu-list:last-child {
|
|
14
|
-
@apply border-r-0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.menu-item {
|
|
18
|
-
@apply leading-loose h-12 p-0 relative whitespace-nowrap overflow-hidden text-ellipsis bg-dialog box-border cursor-pointer
|
|
19
|
-
outline-none;
|
|
20
|
-
|
|
21
|
-
&.disabled {
|
|
22
|
-
@apply text-disabled cursor-not-allowed;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&.active {
|
|
26
|
-
@apply text-primary bg-hover;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&:focus:not(:active),
|
|
30
|
-
&:hover {
|
|
31
|
-
@apply bg-hover;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&.active:hover {
|
|
35
|
-
@apply bg-hover;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&.selected {
|
|
39
|
-
@apply text-secondary bg-default;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
& .item-icon {
|
|
43
|
-
@apply absolute justify-items-center inset-y-2/4 right-0;
|
|
44
|
-
|
|
45
|
-
transform: translateY(-50%);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
@@ -1,232 +0,0 @@
|
|
|
1
|
-
/* Variables */
|
|
2
|
-
$body-cell-padding: 2px;
|
|
3
|
-
$control-width: calc((100% - 32px) / 2);
|
|
4
|
-
|
|
5
|
-
cmat-date-range {
|
|
6
|
-
display: flex;
|
|
7
|
-
|
|
8
|
-
.range {
|
|
9
|
-
display: flex;
|
|
10
|
-
width: 100%;
|
|
11
|
-
align-items: center;
|
|
12
|
-
height: 48px;
|
|
13
|
-
min-height: 48px;
|
|
14
|
-
max-height: 48px;
|
|
15
|
-
cursor: pointer;
|
|
16
|
-
|
|
17
|
-
.start,
|
|
18
|
-
.end {
|
|
19
|
-
@screen sm {
|
|
20
|
-
max-width: $control-width;
|
|
21
|
-
min-width: $control-width;
|
|
22
|
-
width: $control-width;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
display: flex;
|
|
26
|
-
align-items: center;
|
|
27
|
-
height: 100%;
|
|
28
|
-
padding: 0 16px;
|
|
29
|
-
border-radius: 6px;
|
|
30
|
-
border-width: 1px;
|
|
31
|
-
line-height: 1;
|
|
32
|
-
@apply shadow-sm bg-white border-slate-300 dark:bg-black dark:bg-opacity-5 dark:border-slate-500 #{!important};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.date {
|
|
36
|
-
white-space: nowrap;
|
|
37
|
-
|
|
38
|
-
+ .time {
|
|
39
|
-
margin-left: 8px;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.time {
|
|
44
|
-
white-space: nowrap;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.separator {
|
|
49
|
-
margin: 0 8px;
|
|
50
|
-
|
|
51
|
-
@screen sm {
|
|
52
|
-
margin: 0 12px;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.cmat-date-range-panel {
|
|
58
|
-
border-radius: 4px;
|
|
59
|
-
padding: 24px;
|
|
60
|
-
@apply shadow-2xl bg-card;
|
|
61
|
-
|
|
62
|
-
.start,
|
|
63
|
-
.end {
|
|
64
|
-
display: flex;
|
|
65
|
-
flex-direction: column;
|
|
66
|
-
|
|
67
|
-
.month {
|
|
68
|
-
max-width: 196px;
|
|
69
|
-
min-width: 196px;
|
|
70
|
-
width: 196px;
|
|
71
|
-
|
|
72
|
-
.month-header {
|
|
73
|
-
position: relative;
|
|
74
|
-
display: flex;
|
|
75
|
-
align-items: center;
|
|
76
|
-
justify-content: center;
|
|
77
|
-
height: 32px;
|
|
78
|
-
margin-bottom: 16px;
|
|
79
|
-
|
|
80
|
-
.previous-button,
|
|
81
|
-
.next-button {
|
|
82
|
-
position: absolute;
|
|
83
|
-
width: 24px !important;
|
|
84
|
-
height: 24px !important;
|
|
85
|
-
min-height: 24px !important;
|
|
86
|
-
max-height: 24px !important;
|
|
87
|
-
line-height: 24px !important;
|
|
88
|
-
|
|
89
|
-
.mat-icon {
|
|
90
|
-
@apply icon-size-5;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.previous-button {
|
|
95
|
-
left: 0;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.next-button {
|
|
99
|
-
right: 0;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.month-label {
|
|
103
|
-
font-weight: 500;
|
|
104
|
-
@apply text-secondary;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
mat-month-view {
|
|
109
|
-
display: flex;
|
|
110
|
-
min-height: 188px;
|
|
111
|
-
|
|
112
|
-
.mat-calendar-table {
|
|
113
|
-
width: 100%;
|
|
114
|
-
border-collapse: collapse;
|
|
115
|
-
|
|
116
|
-
tbody {
|
|
117
|
-
tr {
|
|
118
|
-
&[aria-hidden="true"] {
|
|
119
|
-
display: none !important;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
&:first-child {
|
|
123
|
-
td:first-child {
|
|
124
|
-
&[aria-hidden="true"] {
|
|
125
|
-
visibility: hidden;
|
|
126
|
-
pointer-events: none;
|
|
127
|
-
opacity: 0;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
td {
|
|
133
|
-
.cmat-date-range {
|
|
134
|
-
&:before {
|
|
135
|
-
@apply bg-primary-200 #{!important};
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.mat-calendar-body-cell-content {
|
|
140
|
-
background-color: transparent !important;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.cmat-date-range-start,
|
|
145
|
-
.cmat-date-range-end {
|
|
146
|
-
.mat-calendar-body-cell-content {
|
|
147
|
-
@apply bg-primary text-on-primary #{!important};
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.mat-calendar-body-today {
|
|
153
|
-
border: none !important;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.mat-calendar-body-cell {
|
|
157
|
-
width: 28px !important;
|
|
158
|
-
height: 28px !important;
|
|
159
|
-
padding: $body-cell-padding !important;
|
|
160
|
-
|
|
161
|
-
&.cmat-date-range {
|
|
162
|
-
&:before {
|
|
163
|
-
content: "";
|
|
164
|
-
position: absolute;
|
|
165
|
-
top: $body-cell-padding;
|
|
166
|
-
right: 0;
|
|
167
|
-
bottom: $body-cell-padding;
|
|
168
|
-
left: 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
&.cmat-date-range-start {
|
|
172
|
-
&:before {
|
|
173
|
-
border-radius: 999px 0 0 999px;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
&.cmat-date-range-end {
|
|
177
|
-
&:before {
|
|
178
|
-
right: $body-cell-padding;
|
|
179
|
-
border-radius: 999px;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
&.cmat-date-range-end {
|
|
185
|
-
&:before {
|
|
186
|
-
border-radius: 0 999px 999px 0;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.mat-calendar-body-cell-content {
|
|
192
|
-
position: relative;
|
|
193
|
-
top: 0;
|
|
194
|
-
left: 0;
|
|
195
|
-
width: 24px;
|
|
196
|
-
height: 24px;
|
|
197
|
-
font-size: 12px;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.time {
|
|
207
|
-
width: 100%;
|
|
208
|
-
max-width: 196px;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
.start {
|
|
212
|
-
align-items: flex-start;
|
|
213
|
-
margin-right: 20px;
|
|
214
|
-
|
|
215
|
-
.month {
|
|
216
|
-
.month-label {
|
|
217
|
-
margin-left: 8px;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.end {
|
|
223
|
-
align-items: flex-end;
|
|
224
|
-
margin-left: 20px;
|
|
225
|
-
|
|
226
|
-
.month {
|
|
227
|
-
.month-label {
|
|
228
|
-
margin-right: 8px;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
/* Variables */
|
|
2
|
-
:root {
|
|
3
|
-
--cmat-drawer-width: 320px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
cmat-drawer {
|
|
7
|
-
position: relative;
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-direction: column;
|
|
10
|
-
flex: 1 1 auto;
|
|
11
|
-
width: var(--cmat-drawer-width);
|
|
12
|
-
min-width: var(--cmat-drawer-width);
|
|
13
|
-
max-width: var(--cmat-drawer-width);
|
|
14
|
-
z-index: 300;
|
|
15
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .35);
|
|
16
|
-
@apply bg-card;
|
|
17
|
-
|
|
18
|
-
/* Animations */
|
|
19
|
-
&.cmat-drawer-animations-enabled {
|
|
20
|
-
transition-duration: 400ms;
|
|
21
|
-
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
22
|
-
transition-property: visibility, margin-left, margin-right, transform, width, max-width, min-width;
|
|
23
|
-
|
|
24
|
-
.cmat-drawer-content {
|
|
25
|
-
transition-duration: 400ms;
|
|
26
|
-
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
27
|
-
transition-property: width, max-width, min-width;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/* Over mode */
|
|
32
|
-
&.cmat-drawer-mode-over {
|
|
33
|
-
position: absolute;
|
|
34
|
-
top: 0;
|
|
35
|
-
bottom: 0;
|
|
36
|
-
|
|
37
|
-
/* Fixed mode */
|
|
38
|
-
&.cmat-drawer-fixed {
|
|
39
|
-
position: fixed;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* Left position */
|
|
44
|
-
&.cmat-drawer-position-left {
|
|
45
|
-
|
|
46
|
-
/* Side mode */
|
|
47
|
-
&.cmat-drawer-mode-side {
|
|
48
|
-
margin-left: calc(var(--cmat-drawer-width) * -1);
|
|
49
|
-
|
|
50
|
-
&.cmat-drawer-opened {
|
|
51
|
-
margin-left: 0;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* Over mode */
|
|
56
|
-
&.cmat-drawer-mode-over {
|
|
57
|
-
left: 0;
|
|
58
|
-
transform: translate3d(-100%, 0, 0);
|
|
59
|
-
|
|
60
|
-
&.cmat-drawer-opened {
|
|
61
|
-
transform: translate3d(0, 0, 0);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
/* Content */
|
|
66
|
-
.cmat-drawer-content {
|
|
67
|
-
left: 0;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
/* Right position */
|
|
72
|
-
&.cmat-drawer-position-right {
|
|
73
|
-
|
|
74
|
-
/* Side mode */
|
|
75
|
-
&.cmat-drawer-mode-side {
|
|
76
|
-
margin-right: calc(var(--cmat-drawer-width) * -1);
|
|
77
|
-
|
|
78
|
-
&.cmat-drawer-opened {
|
|
79
|
-
margin-right: 0;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* Over mode */
|
|
84
|
-
&.cmat-drawer-mode-over {
|
|
85
|
-
right: 0;
|
|
86
|
-
transform: translate3d(100%, 0, 0);
|
|
87
|
-
|
|
88
|
-
&.cmat-drawer-opened {
|
|
89
|
-
transform: translate3d(0, 0, 0);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/* Content */
|
|
94
|
-
.cmat-drawer-content {
|
|
95
|
-
right: 0;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/* Content */
|
|
100
|
-
.cmat-drawer-content {
|
|
101
|
-
position: absolute;
|
|
102
|
-
display: flex;
|
|
103
|
-
flex: 1 1 auto;
|
|
104
|
-
top: 0;
|
|
105
|
-
bottom: 0;
|
|
106
|
-
width: 100%;
|
|
107
|
-
height: 100%;
|
|
108
|
-
overflow: hidden;
|
|
109
|
-
@apply bg-card;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
/* Overlay */
|
|
114
|
-
.cmat-drawer-overlay {
|
|
115
|
-
position: absolute;
|
|
116
|
-
top: 0;
|
|
117
|
-
bottom: 0;
|
|
118
|
-
left: 0;
|
|
119
|
-
right: 0;
|
|
120
|
-
z-index: 299;
|
|
121
|
-
opacity: 1;
|
|
122
|
-
background-color: rgba(0, 0, 0, 0.6);
|
|
123
|
-
|
|
124
|
-
/* Fixed mode */
|
|
125
|
-
&.cmat-drawer-overlay-fixed {
|
|
126
|
-
position: fixed;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
/* Transparent overlay */
|
|
130
|
-
&.cmat-drawer-overlay-transparent {
|
|
131
|
-
background-color: transparent;
|
|
132
|
-
}
|
|
133
|
-
}
|