cmat 0.0.3 → 0.0.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.
- 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 -2
- package/components/navigation/vertical/components/basic/basic.component.d.ts +2 -2
- package/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +2 -2
- package/components/navigation/vertical/components/divider/divider.component.d.ts +2 -2
- package/components/navigation/vertical/components/group/group.component.d.ts +2 -2
- package/components/navigation/vertical/components/spacer/spacer.component.d.ts +2 -2
- package/components/navigation/vertical/vertical.component.d.ts +2 -2
- 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 +9 -9
- package/esm2022/components/navigation/vertical/components/basic/basic.component.mjs +8 -7
- package/esm2022/components/navigation/vertical/components/collapsable/collapsable.component.mjs +9 -11
- package/esm2022/components/navigation/vertical/components/divider/divider.component.mjs +6 -6
- package/esm2022/components/navigation/vertical/components/group/group.component.mjs +10 -11
- package/esm2022/components/navigation/vertical/components/spacer/spacer.component.mjs +7 -7
- package/esm2022/components/navigation/vertical/vertical.component.mjs +9 -11
- 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 +5 -5
- 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 +70 -74
- 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 +7 -7
- 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 +46 -36
- 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
|
@@ -1,550 +0,0 @@
|
|
|
1
|
-
/* Variables */
|
|
2
|
-
$cmat-vertical-navigation-width: 280;
|
|
3
|
-
|
|
4
|
-
cmat-vertical-navigation {
|
|
5
|
-
position: sticky;
|
|
6
|
-
display: flex;
|
|
7
|
-
flex-direction: column;
|
|
8
|
-
flex: 1 0 auto;
|
|
9
|
-
top: 0;
|
|
10
|
-
width: #{$cmat-vertical-navigation-width}px;
|
|
11
|
-
min-width: #{$cmat-vertical-navigation-width}px;
|
|
12
|
-
max-width: #{$cmat-vertical-navigation-width}px;
|
|
13
|
-
height: 100%;
|
|
14
|
-
z-index: 200;
|
|
15
|
-
|
|
16
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
17
|
-
/* @ Navigation Drawer
|
|
18
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
19
|
-
|
|
20
|
-
/* Animations */
|
|
21
|
-
&.cmat-vertical-navigation-animations-enabled {
|
|
22
|
-
transition-duration: 400ms;
|
|
23
|
-
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
24
|
-
transition-property: visibility, margin-left, margin-right, transform,
|
|
25
|
-
width, max-width, min-width;
|
|
26
|
-
|
|
27
|
-
/* Wrapper */
|
|
28
|
-
.cmat-vertical-navigation-wrapper {
|
|
29
|
-
transition-duration: 400ms;
|
|
30
|
-
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
31
|
-
transition-property: width, max-width, min-width;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
/* Over mode */
|
|
36
|
-
&.cmat-vertical-navigation-mode-over {
|
|
37
|
-
position: fixed;
|
|
38
|
-
top: 0;
|
|
39
|
-
bottom: 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/* Left position */
|
|
43
|
-
&.cmat-vertical-navigation-position-left {
|
|
44
|
-
/* Side mode */
|
|
45
|
-
&.cmat-vertical-navigation-mode-side {
|
|
46
|
-
margin-left: -#{$cmat-vertical-navigation-width}px;
|
|
47
|
-
|
|
48
|
-
&.cmat-vertical-navigation-opened {
|
|
49
|
-
margin-left: 0;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Over mode */
|
|
54
|
-
&.cmat-vertical-navigation-mode-over {
|
|
55
|
-
left: 0;
|
|
56
|
-
transform: translate3d(-100%, 0, 0);
|
|
57
|
-
|
|
58
|
-
&.cmat-vertical-navigation-opened {
|
|
59
|
-
transform: translate3d(0, 0, 0);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/* Wrapper */
|
|
64
|
-
.cmat-vertical-navigation-wrapper {
|
|
65
|
-
left: 0;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/* Right position */
|
|
70
|
-
&.cmat-vertical-navigation-position-right {
|
|
71
|
-
/* Side mode */
|
|
72
|
-
&.cmat-vertical-navigation-mode-side {
|
|
73
|
-
margin-right: -#{$cmat-vertical-navigation-width}px;
|
|
74
|
-
|
|
75
|
-
&.cmat-vertical-navigation-opened {
|
|
76
|
-
margin-right: 0;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
/* Over mode */
|
|
81
|
-
&.cmat-vertical-navigation-mode-over {
|
|
82
|
-
right: 0;
|
|
83
|
-
transform: translate3d(100%, 0, 0);
|
|
84
|
-
|
|
85
|
-
&.cmat-vertical-navigation-opened {
|
|
86
|
-
transform: translate3d(0, 0, 0);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/* Wrapper */
|
|
91
|
-
.cmat-vertical-navigation-wrapper {
|
|
92
|
-
right: 0;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/* Inner mode */
|
|
97
|
-
&.cmat-vertical-navigation-inner {
|
|
98
|
-
position: relative;
|
|
99
|
-
width: auto;
|
|
100
|
-
min-width: 0;
|
|
101
|
-
max-width: none;
|
|
102
|
-
height: auto;
|
|
103
|
-
min-height: 0;
|
|
104
|
-
max-height: none;
|
|
105
|
-
box-shadow: none;
|
|
106
|
-
|
|
107
|
-
.cmat-vertical-navigation-wrapper {
|
|
108
|
-
position: relative;
|
|
109
|
-
overflow: visible;
|
|
110
|
-
height: auto;
|
|
111
|
-
|
|
112
|
-
.cmat-vertical-navigation-content {
|
|
113
|
-
overflow: visible !important;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/* Wrapper */
|
|
119
|
-
.cmat-vertical-navigation-wrapper {
|
|
120
|
-
position: absolute;
|
|
121
|
-
display: flex;
|
|
122
|
-
flex: 1 1 auto;
|
|
123
|
-
flex-direction: column;
|
|
124
|
-
top: 0;
|
|
125
|
-
bottom: 0;
|
|
126
|
-
width: 100%;
|
|
127
|
-
height: 100%;
|
|
128
|
-
overflow: hidden;
|
|
129
|
-
z-index: 10;
|
|
130
|
-
background: inherit;
|
|
131
|
-
box-shadow: inset -1px 0 0 var(--cmat-border);
|
|
132
|
-
|
|
133
|
-
/* Header */
|
|
134
|
-
.cmat-vertical-navigation-header {
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
/* Content */
|
|
138
|
-
.cmat-vertical-navigation-content {
|
|
139
|
-
flex: 1 1 auto;
|
|
140
|
-
overflow-x: hidden;
|
|
141
|
-
overflow-y: auto;
|
|
142
|
-
overscroll-behavior: contain;
|
|
143
|
-
|
|
144
|
-
/* Divider */
|
|
145
|
-
> cmat-vertical-navigation-divider-item {
|
|
146
|
-
margin: 24px 0;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/* Group */
|
|
150
|
-
> cmat-vertical-navigation-group-item {
|
|
151
|
-
margin-top: 24px;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
/* Footer */
|
|
156
|
-
.cmat-vertical-navigation-footer {
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
/* Aside wrapper */
|
|
161
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
162
|
-
position: absolute;
|
|
163
|
-
display: flex;
|
|
164
|
-
flex: 1 1 auto;
|
|
165
|
-
flex-direction: column;
|
|
166
|
-
top: 0;
|
|
167
|
-
bottom: 0;
|
|
168
|
-
left: #{$cmat-vertical-navigation-width}px;
|
|
169
|
-
width: #{$cmat-vertical-navigation-width}px;
|
|
170
|
-
height: 100%;
|
|
171
|
-
z-index: 5;
|
|
172
|
-
overflow-x: hidden;
|
|
173
|
-
overflow-y: auto;
|
|
174
|
-
-webkit-overflow-scrolling: touch;
|
|
175
|
-
transition-duration: 400ms;
|
|
176
|
-
transition-property: left, right;
|
|
177
|
-
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
178
|
-
background: inherit;
|
|
179
|
-
|
|
180
|
-
> cmat-vertical-navigation-aside-item {
|
|
181
|
-
padding: 24px 0;
|
|
182
|
-
|
|
183
|
-
/* First item of the aside */
|
|
184
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
185
|
-
display: none !important;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
&.cmat-vertical-navigation-position-right {
|
|
191
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
192
|
-
left: auto;
|
|
193
|
-
right: #{$cmat-vertical-navigation-width}px;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
198
|
-
/* @ Navigation Items
|
|
199
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
200
|
-
|
|
201
|
-
/* Navigation items common */
|
|
202
|
-
cmat-vertical-navigation-aside-item,
|
|
203
|
-
cmat-vertical-navigation-basic-item,
|
|
204
|
-
cmat-vertical-navigation-collapsable-item,
|
|
205
|
-
cmat-vertical-navigation-divider-item,
|
|
206
|
-
cmat-vertical-navigation-group-item,
|
|
207
|
-
cmat-vertical-navigation-spacer-item {
|
|
208
|
-
display: flex;
|
|
209
|
-
flex-direction: column;
|
|
210
|
-
flex: 1 0 auto;
|
|
211
|
-
user-select: none;
|
|
212
|
-
|
|
213
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
214
|
-
.cmat-vertical-navigation-item {
|
|
215
|
-
position: relative;
|
|
216
|
-
display: flex;
|
|
217
|
-
align-items: center;
|
|
218
|
-
justify-content: flex-start;
|
|
219
|
-
padding: 10px 16px;
|
|
220
|
-
font-size: 13px;
|
|
221
|
-
font-weight: 500;
|
|
222
|
-
line-height: 20px;
|
|
223
|
-
text-decoration: none;
|
|
224
|
-
border-radius: 6px;
|
|
225
|
-
|
|
226
|
-
/* Disabled state */
|
|
227
|
-
&.cmat-vertical-navigation-item-disabled {
|
|
228
|
-
cursor: default;
|
|
229
|
-
opacity: 0.4;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.cmat-vertical-navigation-item-icon {
|
|
233
|
-
margin-right: 16px;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
237
|
-
.cmat-vertical-navigation-item-subtitle {
|
|
238
|
-
font-size: 11px;
|
|
239
|
-
line-height: 1.5;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.cmat-vertical-navigation-item-badge {
|
|
244
|
-
margin-left: auto;
|
|
245
|
-
|
|
246
|
-
.cmat-vertical-navigation-item-badge-content {
|
|
247
|
-
display: flex;
|
|
248
|
-
align-items: center;
|
|
249
|
-
justify-content: center;
|
|
250
|
-
font-size: 10px;
|
|
251
|
-
font-weight: 700;
|
|
252
|
-
white-space: nowrap;
|
|
253
|
-
height: 20px;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
/* Aside, Basic, Collapsable, Group */
|
|
261
|
-
cmat-vertical-navigation-aside-item,
|
|
262
|
-
cmat-vertical-navigation-basic-item,
|
|
263
|
-
cmat-vertical-navigation-collapsable-item,
|
|
264
|
-
cmat-vertical-navigation-group-item {
|
|
265
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
266
|
-
margin: 0 12px;
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
/* Aside, Basic, Collapsable */
|
|
271
|
-
cmat-vertical-navigation-aside-item,
|
|
272
|
-
cmat-vertical-navigation-basic-item,
|
|
273
|
-
cmat-vertical-navigation-collapsable-item {
|
|
274
|
-
margin-bottom: 4px;
|
|
275
|
-
|
|
276
|
-
.cmat-vertical-navigation-item {
|
|
277
|
-
cursor: pointer;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/* Aside */
|
|
282
|
-
cmat-vertical-navigation-aside-item {
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/* Basic */
|
|
286
|
-
cmat-vertical-navigation-basic-item {
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* Collapsable */
|
|
290
|
-
cmat-vertical-navigation-collapsable-item {
|
|
291
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
292
|
-
.cmat-vertical-navigation-item {
|
|
293
|
-
.cmat-vertical-navigation-item-badge {
|
|
294
|
-
+ .cmat-vertical-navigation-item-arrow {
|
|
295
|
-
margin-left: 8px;
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.cmat-vertical-navigation-item-arrow {
|
|
300
|
-
height: 20px;
|
|
301
|
-
line-height: 20px;
|
|
302
|
-
margin-left: auto;
|
|
303
|
-
transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1),
|
|
304
|
-
color 375ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
&.cmat-vertical-navigation-item-expanded {
|
|
310
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
311
|
-
.cmat-vertical-navigation-item {
|
|
312
|
-
.cmat-vertical-navigation-item-arrow {
|
|
313
|
-
transform: rotate(90deg);
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
> .cmat-vertical-navigation-item-children {
|
|
320
|
-
margin-top: 6px;
|
|
321
|
-
|
|
322
|
-
> *:last-child {
|
|
323
|
-
padding-bottom: 6px;
|
|
324
|
-
|
|
325
|
-
> .cmat-vertical-navigation-item-children {
|
|
326
|
-
> *:last-child {
|
|
327
|
-
padding-bottom: 0;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.cmat-vertical-navigation-item {
|
|
333
|
-
padding: 10px 16px;
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
/* 1st level */
|
|
338
|
-
.cmat-vertical-navigation-item-children {
|
|
339
|
-
overflow: hidden;
|
|
340
|
-
|
|
341
|
-
.cmat-vertical-navigation-item {
|
|
342
|
-
padding-left: 56px;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
/* 2nd level */
|
|
346
|
-
.cmat-vertical-navigation-item-children {
|
|
347
|
-
.cmat-vertical-navigation-item {
|
|
348
|
-
padding-left: 72px;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
/* 3rd level */
|
|
352
|
-
.cmat-vertical-navigation-item-children {
|
|
353
|
-
.cmat-vertical-navigation-item {
|
|
354
|
-
padding-left: 88px;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
/* 4th level */
|
|
358
|
-
.cmat-vertical-navigation-item-children {
|
|
359
|
-
.cmat-vertical-navigation-item {
|
|
360
|
-
padding-left: 104px;
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
/* Divider */
|
|
369
|
-
cmat-vertical-navigation-divider-item {
|
|
370
|
-
margin: 12px 0;
|
|
371
|
-
|
|
372
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
373
|
-
height: 1px;
|
|
374
|
-
box-shadow: 0 1px 0 0;
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
/* Group */
|
|
379
|
-
cmat-vertical-navigation-group-item {
|
|
380
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
381
|
-
.cmat-vertical-navigation-item {
|
|
382
|
-
.cmat-vertical-navigation-item-badge,
|
|
383
|
-
.cmat-vertical-navigation-item-icon {
|
|
384
|
-
display: none !important;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
388
|
-
.cmat-vertical-navigation-item-title {
|
|
389
|
-
font-size: 12px;
|
|
390
|
-
font-weight: 700;
|
|
391
|
-
letter-spacing: 0.05em;
|
|
392
|
-
text-transform: uppercase;
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/* Spacer */
|
|
400
|
-
cmat-vertical-navigation-spacer-item {
|
|
401
|
-
margin: 6px 0;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
406
|
-
/* @ Overlay
|
|
407
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
408
|
-
.cmat-vertical-navigation-overlay {
|
|
409
|
-
position: absolute;
|
|
410
|
-
top: 0;
|
|
411
|
-
bottom: 0;
|
|
412
|
-
left: 0;
|
|
413
|
-
right: 0;
|
|
414
|
-
z-index: 170;
|
|
415
|
-
opacity: 0;
|
|
416
|
-
background-color: rgba(0, 0, 0, 0.6);
|
|
417
|
-
|
|
418
|
-
+ .cmat-vertical-navigation-aside-overlay {
|
|
419
|
-
background-color: transparent;
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
424
|
-
/* @ Aside overlay
|
|
425
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
426
|
-
.cmat-vertical-navigation-aside-overlay {
|
|
427
|
-
position: absolute;
|
|
428
|
-
top: 0;
|
|
429
|
-
bottom: 0;
|
|
430
|
-
left: 0;
|
|
431
|
-
right: 0;
|
|
432
|
-
z-index: 169;
|
|
433
|
-
opacity: 0;
|
|
434
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
438
|
-
/* @ Navigation Items Colors
|
|
439
|
-
/* ----------------------------------------------------------------------------------------------------- */
|
|
440
|
-
|
|
441
|
-
/* Navigation items common */
|
|
442
|
-
cmat-vertical-navigation-aside-item,
|
|
443
|
-
cmat-vertical-navigation-basic-item,
|
|
444
|
-
cmat-vertical-navigation-collapsable-item,
|
|
445
|
-
cmat-vertical-navigation-group-item {
|
|
446
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
447
|
-
.cmat-vertical-navigation-item {
|
|
448
|
-
color: currentColor;
|
|
449
|
-
|
|
450
|
-
.cmat-vertical-navigation-item-icon {
|
|
451
|
-
@apply text-current opacity-60;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
455
|
-
.cmat-vertical-navigation-item-title {
|
|
456
|
-
@apply text-current opacity-80;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.cmat-vertical-navigation-item-subtitle {
|
|
460
|
-
@apply text-current opacity-50;
|
|
461
|
-
}
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
/* Aside, Basic, Collapsable */
|
|
468
|
-
cmat-vertical-navigation-aside-item,
|
|
469
|
-
cmat-vertical-navigation-basic-item,
|
|
470
|
-
cmat-vertical-navigation-collapsable-item {
|
|
471
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
472
|
-
.cmat-vertical-navigation-item {
|
|
473
|
-
/* Active state */
|
|
474
|
-
&:not(.cmat-vertical-navigation-item-disabled) {
|
|
475
|
-
&.cmat-vertical-navigation-item-active,
|
|
476
|
-
&.cmat-vertical-navigation-item-active-forced {
|
|
477
|
-
@apply bg-gray-800 bg-opacity-5 dark:bg-white dark:bg-opacity-12;
|
|
478
|
-
|
|
479
|
-
.cmat-vertical-navigation-item-icon {
|
|
480
|
-
@apply opacity-100;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.cmat-vertical-navigation-item-title {
|
|
484
|
-
@apply opacity-100;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
.cmat-vertical-navigation-item-subtitle {
|
|
488
|
-
@apply opacity-100;
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
/* Hover state */
|
|
494
|
-
&:not(.cmat-vertical-navigation-item-active-forced):not(.cmat-vertical-navigation-item-active):not(.cmat-vertical-navigation-item-disabled) {
|
|
495
|
-
&:hover {
|
|
496
|
-
@apply bg-gray-800 bg-opacity-5 dark:bg-white dark:bg-opacity-12;
|
|
497
|
-
|
|
498
|
-
.cmat-vertical-navigation-item-icon {
|
|
499
|
-
@apply opacity-100;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
.cmat-vertical-navigation-item-title,
|
|
503
|
-
.cmat-vertical-navigation-item-arrow {
|
|
504
|
-
@apply opacity-100;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.cmat-vertical-navigation-item-subtitle {
|
|
508
|
-
@apply opacity-100;
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
/* Collapsable */
|
|
517
|
-
cmat-vertical-navigation-collapsable-item {
|
|
518
|
-
/* Expanded state */
|
|
519
|
-
&.cmat-vertical-navigation-item-expanded {
|
|
520
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
521
|
-
.cmat-vertical-navigation-item {
|
|
522
|
-
.cmat-vertical-navigation-item-icon {
|
|
523
|
-
@apply opacity-100;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.cmat-vertical-navigation-item-title,
|
|
527
|
-
.cmat-vertical-navigation-item-arrow {
|
|
528
|
-
@apply opacity-100;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
.cmat-vertical-navigation-item-subtitle {
|
|
532
|
-
@apply opacity-100;
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
/* Group */
|
|
540
|
-
cmat-vertical-navigation-group-item {
|
|
541
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
542
|
-
.cmat-vertical-navigation-item {
|
|
543
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
544
|
-
.cmat-vertical-navigation-item-title {
|
|
545
|
-
@apply opacity-100 text-primary-600 dark:text-primary-400;
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
}
|
|
550
|
-
}
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
/* Variables */
|
|
2
|
-
$cmat-vertical-navigation-width: 280;
|
|
3
|
-
$cmat-vertical-navigation-dense-width: 80;
|
|
4
|
-
|
|
5
|
-
cmat-vertical-navigation {
|
|
6
|
-
/* Dense appearance overrides */
|
|
7
|
-
&.cmat-vertical-navigation-appearance-dense {
|
|
8
|
-
&:not(.cmat-vertical-navigation-mode-over) {
|
|
9
|
-
width: #{$cmat-vertical-navigation-dense-width}px;
|
|
10
|
-
min-width: #{$cmat-vertical-navigation-dense-width}px;
|
|
11
|
-
max-width: #{$cmat-vertical-navigation-dense-width}px;
|
|
12
|
-
|
|
13
|
-
/* Left positioned */
|
|
14
|
-
&.cmat-vertical-navigation-position-left {
|
|
15
|
-
/* Side mode */
|
|
16
|
-
&.cmat-vertical-navigation-mode-side {
|
|
17
|
-
margin-left: -#{$cmat-vertical-navigation-dense-width}px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/* Opened */
|
|
21
|
-
&.cmat-vertical-navigation-opened {
|
|
22
|
-
margin-left: 0;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/* Right positioned */
|
|
27
|
-
&.cmat-vertical-navigation-position-right {
|
|
28
|
-
/* Side mode */
|
|
29
|
-
&.cmat-vertical-navigation-mode-side {
|
|
30
|
-
margin-right: -#{$cmat-vertical-navigation-dense-width}px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/* Opened */
|
|
34
|
-
&.cmat-vertical-navigation-opened {
|
|
35
|
-
margin-right: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Aside wrapper */
|
|
39
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
40
|
-
left: auto;
|
|
41
|
-
right: #{$cmat-vertical-navigation-dense-width}px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&.cmat-vertical-navigation-hover {
|
|
45
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
46
|
-
left: auto;
|
|
47
|
-
right: #{$cmat-vertical-navigation-width}px;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Wrapper */
|
|
54
|
-
.cmat-vertical-navigation-wrapper {
|
|
55
|
-
/* Content */
|
|
56
|
-
.cmat-vertical-navigation-content {
|
|
57
|
-
cmat-vertical-navigation-aside-item,
|
|
58
|
-
cmat-vertical-navigation-basic-item,
|
|
59
|
-
cmat-vertical-navigation-collapsable-item,
|
|
60
|
-
cmat-vertical-navigation-group-item {
|
|
61
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
62
|
-
.cmat-vertical-navigation-item {
|
|
63
|
-
width: #{$cmat-vertical-navigation-width}px - 24px;
|
|
64
|
-
min-width: #{$cmat-vertical-navigation-width}px -
|
|
65
|
-
24px;
|
|
66
|
-
max-width: #{$cmat-vertical-navigation-width}px -
|
|
67
|
-
24px;
|
|
68
|
-
|
|
69
|
-
.cmat-vertical-navigation-item-arrow,
|
|
70
|
-
.cmat-vertical-navigation-item-badge,
|
|
71
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
72
|
-
transition: opacity 400ms
|
|
73
|
-
cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
cmat-vertical-navigation-group-item {
|
|
80
|
-
&:first-of-type {
|
|
81
|
-
margin-top: 0;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
&:not(.cmat-vertical-navigation-hover):not(.cmat-vertical-navigation-mode-over) {
|
|
88
|
-
/* Wrapper */
|
|
89
|
-
.cmat-vertical-navigation-wrapper {
|
|
90
|
-
/* Content */
|
|
91
|
-
.cmat-vertical-navigation-content {
|
|
92
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
93
|
-
.cmat-vertical-navigation-item {
|
|
94
|
-
padding: 10px 16px;
|
|
95
|
-
|
|
96
|
-
.cmat-vertical-navigation-item-arrow,
|
|
97
|
-
.cmat-vertical-navigation-item-badge,
|
|
98
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
99
|
-
white-space: nowrap;
|
|
100
|
-
opacity: 0;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
cmat-vertical-navigation-collapsable-item {
|
|
106
|
-
.cmat-vertical-navigation-item-children {
|
|
107
|
-
display: none;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
cmat-vertical-navigation-group-item {
|
|
112
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
113
|
-
.cmat-vertical-navigation-item {
|
|
114
|
-
&:before {
|
|
115
|
-
content: "";
|
|
116
|
-
position: absolute;
|
|
117
|
-
top: 20px;
|
|
118
|
-
width: 23px;
|
|
119
|
-
border-top-width: 2px;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
/* Aside wrapper */
|
|
129
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
130
|
-
left: #{$cmat-vertical-navigation-dense-width}px;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/* Hover */
|
|
134
|
-
&.cmat-vertical-navigation-hover {
|
|
135
|
-
.cmat-vertical-navigation-wrapper {
|
|
136
|
-
width: #{$cmat-vertical-navigation-width}px;
|
|
137
|
-
|
|
138
|
-
.cmat-vertical-navigation-content {
|
|
139
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
140
|
-
.cmat-vertical-navigation-item {
|
|
141
|
-
.cmat-vertical-navigation-item-arrow,
|
|
142
|
-
.cmat-vertical-navigation-item-badge,
|
|
143
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
144
|
-
white-space: nowrap;
|
|
145
|
-
animation: removeWhiteSpaceNoWrap 1ms linear
|
|
146
|
-
350ms;
|
|
147
|
-
animation-fill-mode: forwards;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
155
|
-
left: #{$cmat-vertical-navigation-width}px;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
@keyframes removeWhiteSpaceNoWrap {
|
|
162
|
-
0% {
|
|
163
|
-
white-space: nowrap;
|
|
164
|
-
}
|
|
165
|
-
99% {
|
|
166
|
-
white-space: nowrap;
|
|
167
|
-
}
|
|
168
|
-
100% {
|
|
169
|
-
white-space: normal;
|
|
170
|
-
}
|
|
171
|
-
}
|