@mediusinc/mng-commons-layout 5.0.0-rc.0
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/README.md +13 -0
- package/assets/fonts/poppins-v20-latin-500.woff +0 -0
- package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
- package/assets/images/effect-ondark.png +0 -0
- package/assets/images/effect-ondark.svg +38 -0
- package/assets/images/effect-ondark@2x.png +0 -0
- package/assets/images/effect-onlight.png +0 -0
- package/assets/images/effect-onlight.svg +38 -0
- package/assets/images/effect-onlight@2x.png +0 -0
- package/assets/images/pages/exception-ondark.png +0 -0
- package/assets/images/pages/exception-onlight.png +0 -0
- package/assets/images/pages/login-ondark.png +0 -0
- package/assets/images/pages/login-onlight.png +0 -0
- package/esm2022/index.mjs +23 -0
- package/esm2022/lib/components/breadcrumb.component.mjs +30 -0
- package/esm2022/lib/components/footer.component.mjs +28 -0
- package/esm2022/lib/components/main-layout.component.mjs +99 -0
- package/esm2022/lib/components/menu-item.component.mjs +275 -0
- package/esm2022/lib/components/menu.component.mjs +40 -0
- package/esm2022/lib/components/sidebar.component.mjs +61 -0
- package/esm2022/lib/components/topbar-user.component.mjs +39 -0
- package/esm2022/lib/components/topbar.component.mjs +57 -0
- package/esm2022/lib/components/version.component.mjs +63 -0
- package/esm2022/lib/helpers/route-builder.mjs +11 -0
- package/esm2022/lib/models/layout-state.model.mjs +2 -0
- package/esm2022/lib/models/menu.model.mjs +2 -0
- package/esm2022/lib/provide.mjs +23 -0
- package/esm2022/lib/services/layout-feature-config.token.mjs +3 -0
- package/esm2022/lib/services/main-layout.component.service.mjs +71 -0
- package/esm2022/lib/services/menu.service.mjs +120 -0
- package/esm2022/lib/services/version.service.mjs +45 -0
- package/esm2022/mediusinc-mng-commons-layout.mjs +5 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs +878 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs.map +1 -0
- package/index.d.ts +17 -0
- package/lib/components/breadcrumb.component.d.ts +10 -0
- package/lib/components/footer.component.d.ts +12 -0
- package/lib/components/main-layout.component.d.ts +27 -0
- package/lib/components/menu-item.component.d.ts +40 -0
- package/lib/components/menu.component.d.ts +14 -0
- package/lib/components/sidebar.component.d.ts +19 -0
- package/lib/components/topbar-user.component.d.ts +15 -0
- package/lib/components/topbar.component.d.ts +22 -0
- package/lib/components/version.component.d.ts +18 -0
- package/lib/helpers/route-builder.d.ts +6 -0
- package/lib/models/layout-state.model.d.ts +10 -0
- package/lib/models/menu.model.d.ts +4 -0
- package/lib/provide.d.ts +8 -0
- package/lib/services/layout-feature-config.token.d.ts +18 -0
- package/lib/services/main-layout.component.service.d.ts +17 -0
- package/lib/services/menu.service.d.ts +22 -0
- package/lib/services/version.service.d.ts +14 -0
- package/package.json +35 -0
- package/scss/commons-dark.scss +9 -0
- package/scss/commons-light.scss +9 -0
- package/scss/layout/_animation.scss +53 -0
- package/scss/layout/_breadcrumb.scss +97 -0
- package/scss/layout/_config.scss +42 -0
- package/scss/layout/_content.scss +3 -0
- package/scss/layout/_fonts.scss +40 -0
- package/scss/layout/_layout_dark.scss +12 -0
- package/scss/layout/_layout_light.scss +12 -0
- package/scss/layout/_main.scss +54 -0
- package/scss/layout/_profile.scss +10 -0
- package/scss/layout/_responsive.scss +131 -0
- package/scss/layout/_sidebar_drawer.scss +285 -0
- package/scss/layout/_sidebar_horizontal.scss +168 -0
- package/scss/layout/_sidebar_reveal.scss +203 -0
- package/scss/layout/_sidebar_slim.scss +157 -0
- package/scss/layout/_sidebar_slim_plus.scss +166 -0
- package/scss/layout/_sidebar_vertical.scss +178 -0
- package/scss/layout/_topbar.scss +174 -0
- package/scss/layout/_typography.scss +67 -0
- package/scss/layout/_utils.scss +33 -0
- package/scss/layout/layout.scss +24 -0
- package/scss/layout/mng/_mng_layout_footer.scss +39 -0
- package/scss/layout/mng/_mng_layout_menu.scss +10 -0
- package/scss/layout/mng/_mng_layout_styles.scss +3 -0
- package/scss/layout/mng/_mng_layout_topbar.scss +18 -0
- package/scss/layout/preloading.scss +84 -0
- package/scss/theme/extensions/_fullcalendar.scss +328 -0
- package/scss/theme/theme-base/_colors.scss +17 -0
- package/scss/theme/theme-base/_common.scss +76 -0
- package/scss/theme/theme-base/_components.scss +110 -0
- package/scss/theme/theme-base/_mixins.scss +337 -0
- package/scss/theme/theme-base/components/button/_button.scss +576 -0
- package/scss/theme/theme-base/components/button/_speeddial.scss +96 -0
- package/scss/theme/theme-base/components/button/_splitbutton.scss +348 -0
- package/scss/theme/theme-base/components/data/_carousel.scss +37 -0
- package/scss/theme/theme-base/components/data/_datatable.scss +338 -0
- package/scss/theme/theme-base/components/data/_dataview.scss +46 -0
- package/scss/theme/theme-base/components/data/_filter.scss +137 -0
- package/scss/theme/theme-base/components/data/_orderlist.scss +114 -0
- package/scss/theme/theme-base/components/data/_organizationchart.scss +50 -0
- package/scss/theme/theme-base/components/data/_paginator.scss +92 -0
- package/scss/theme/theme-base/components/data/_picklist.scss +114 -0
- package/scss/theme/theme-base/components/data/_timeline.scss +35 -0
- package/scss/theme/theme-base/components/data/_tree.scss +150 -0
- package/scss/theme/theme-base/components/data/_treetable.scss +255 -0
- package/scss/theme/theme-base/components/data/_virtualscroller.scss +28 -0
- package/scss/theme/theme-base/components/file/_fileupload.scss +64 -0
- package/scss/theme/theme-base/components/input/_autocomplete.scss +136 -0
- package/scss/theme/theme-base/components/input/_calendar.scss +267 -0
- package/scss/theme/theme-base/components/input/_cascadeselect.scss +135 -0
- package/scss/theme/theme-base/components/input/_checkbox.scss +94 -0
- package/scss/theme/theme-base/components/input/_chips.scss +65 -0
- package/scss/theme/theme-base/components/input/_colorpicker.scss +19 -0
- package/scss/theme/theme-base/components/input/_dropdown.scss +151 -0
- package/scss/theme/theme-base/components/input/_editor.scss +122 -0
- package/scss/theme/theme-base/components/input/_inputgroup.scss +74 -0
- package/scss/theme/theme-base/components/input/_inputmask.scss +16 -0
- package/scss/theme/theme-base/components/input/_inputnumber.scss +28 -0
- package/scss/theme/theme-base/components/input/_inputswitch.scss +60 -0
- package/scss/theme/theme-base/components/input/_inputtext.scss +100 -0
- package/scss/theme/theme-base/components/input/_listbox.scss +97 -0
- package/scss/theme/theme-base/components/input/_multiselect.scss +177 -0
- package/scss/theme/theme-base/components/input/_password.scss +52 -0
- package/scss/theme/theme-base/components/input/_radiobutton.scss +78 -0
- package/scss/theme/theme-base/components/input/_rating.scss +60 -0
- package/scss/theme/theme-base/components/input/_selectbutton.scss +50 -0
- package/scss/theme/theme-base/components/input/_slider.scss +75 -0
- package/scss/theme/theme-base/components/input/_togglebutton.scss +48 -0
- package/scss/theme/theme-base/components/input/_treeselect.scss +139 -0
- package/scss/theme/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/scss/theme/theme-base/components/menu/_contextmenu.scss +39 -0
- package/scss/theme/theme-base/components/menu/_dock.scss +95 -0
- package/scss/theme/theme-base/components/menu/_megamenu.scss +55 -0
- package/scss/theme/theme-base/components/menu/_menu.scss +37 -0
- package/scss/theme/theme-base/components/menu/_menubar.scss +140 -0
- package/scss/theme/theme-base/components/menu/_panelmenu.scss +153 -0
- package/scss/theme/theme-base/components/menu/_slidemenu.scss +59 -0
- package/scss/theme/theme-base/components/menu/_steps.scss +56 -0
- package/scss/theme/theme-base/components/menu/_tabmenu.scss +73 -0
- package/scss/theme/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/scss/theme/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/scss/theme/theme-base/components/messages/_message.scss +107 -0
- package/scss/theme/theme-base/components/messages/_toast.scss +99 -0
- package/scss/theme/theme-base/components/misc/_avatar.scss +30 -0
- package/scss/theme/theme-base/components/misc/_badge.scss +48 -0
- package/scss/theme/theme-base/components/misc/_blockui.scss +0 -0
- package/scss/theme/theme-base/components/misc/_chip.scss +42 -0
- package/scss/theme/theme-base/components/misc/_inplace.scss +16 -0
- package/scss/theme/theme-base/components/misc/_progressbar.scss +17 -0
- package/scss/theme/theme-base/components/misc/_scrolltop.scss +25 -0
- package/scss/theme/theme-base/components/misc/_skeleton.scss +8 -0
- package/scss/theme/theme-base/components/misc/_tag.scss +40 -0
- package/scss/theme/theme-base/components/misc/_terminal.scss +12 -0
- package/scss/theme/theme-base/components/multimedia/_galleria.scss +155 -0
- package/scss/theme/theme-base/components/multimedia/_image.scss +49 -0
- package/scss/theme/theme-base/components/overlay/_confirmpopup.scss +70 -0
- package/scss/theme/theme-base/components/overlay/_dialog.scss +69 -0
- package/scss/theme/theme-base/components/overlay/_overlaypanel.scss +62 -0
- package/scss/theme/theme-base/components/overlay/_sidebar.scss +27 -0
- package/scss/theme/theme-base/components/overlay/_tooltip.scss +33 -0
- package/scss/theme/theme-base/components/panel/_accordion.scss +119 -0
- package/scss/theme/theme-base/components/panel/_card.scss +30 -0
- package/scss/theme/theme-base/components/panel/_divider.scss +31 -0
- package/scss/theme/theme-base/components/panel/_fieldset.scss +47 -0
- package/scss/theme/theme-base/components/panel/_panel.scss +63 -0
- package/scss/theme/theme-base/components/panel/_scrollpanel.scss +6 -0
- package/scss/theme/theme-base/components/panel/_splitter.scss +19 -0
- package/scss/theme/theme-base/components/panel/_tabview.scss +82 -0
- package/scss/theme/theme-base/components/panel/_toolbar.scss +11 -0
- package/scss/theme/theme-base/mng/_mng_mixins.scss +69 -0
- package/scss/theme/theme-base/mng/_mng_theme_autocomplete.scss +34 -0
- package/scss/theme/theme-base/mng/_mng_theme_button.scss +68 -0
- package/scss/theme/theme-base/mng/_mng_theme_datatable.scss +153 -0
- package/scss/theme/theme-base/mng/_mng_theme_datepicker.scss +21 -0
- package/scss/theme/theme-base/mng/_mng_theme_dialog.scss +206 -0
- package/scss/theme/theme-base/mng/_mng_theme_dropdown.scss +32 -0
- package/scss/theme/theme-base/mng/_mng_theme_fileupload.scss +24 -0
- package/scss/theme/theme-base/mng/_mng_theme_forms.scss +66 -0
- package/scss/theme/theme-base/mng/_mng_theme_image.scss +27 -0
- package/scss/theme/theme-base/mng/_mng_theme_input.scss +31 -0
- package/scss/theme/theme-base/mng/_mng_theme_menu.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_theme_multiselect.scss +20 -0
- package/scss/theme/theme-base/mng/_mng_theme_styles.scss +17 -0
- package/scss/theme/theme-base/mng/_mng_theme_tableview.scss +97 -0
- package/scss/theme/theme-base/mng/_mng_theme_tabview.scss +14 -0
- package/scss/theme/theme-base/mng/_mng_theme_toast.scss +3 -0
- package/scss/theme/theme-base/mng/_mng_theme_toolbar.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_variables.scss +15 -0
- package/scss/theme/theme-dark/_extensions.scss +109 -0
- package/scss/theme/theme-dark/_variables.scss +940 -0
- package/scss/theme/theme-dark/blue/theme.scss +14 -0
- package/scss/theme/theme-light/_extensions.scss +109 -0
- package/scss/theme/theme-light/_variables.scss +936 -0
- package/scss/theme/theme-light/blue/theme.scss +14 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
@media screen and (min-width: $breakpoint) {
|
|
2
|
+
.layout-container {
|
|
3
|
+
&.layout-slim {
|
|
4
|
+
.layout-topbar {
|
|
5
|
+
.topbar-menubutton {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sidebar-header {
|
|
11
|
+
padding: 1.7rem 0;
|
|
12
|
+
.app-logo {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: center;
|
|
16
|
+
|
|
17
|
+
.app-logo-normal {
|
|
18
|
+
display: none;
|
|
19
|
+
img {
|
|
20
|
+
height: 1.714rem;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.app-logo-small {
|
|
25
|
+
display: inline;
|
|
26
|
+
img {
|
|
27
|
+
height: 2.5rem;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.layout-sidebar {
|
|
34
|
+
width: 5.857rem;
|
|
35
|
+
overflow: visible;
|
|
36
|
+
z-index: 999;
|
|
37
|
+
.layout-menu-container {
|
|
38
|
+
overflow: auto;
|
|
39
|
+
|
|
40
|
+
&::-webkit-scrollbar {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.layout-content-wrapper {
|
|
47
|
+
margin-left: 5.857rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.layout-menu {
|
|
51
|
+
padding: 0 1rem;
|
|
52
|
+
.layout-root-menuitem {
|
|
53
|
+
> .layout-menuitem-root-text {
|
|
54
|
+
display: none;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
> a {
|
|
58
|
+
display: flex;
|
|
59
|
+
align-items: center;
|
|
60
|
+
justify-content: center;
|
|
61
|
+
border-radius: 12px;
|
|
62
|
+
border: none;
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
outline: none;
|
|
65
|
+
transition: background-color var(--transition-duration);
|
|
66
|
+
margin: 0;
|
|
67
|
+
padding: 8px;
|
|
68
|
+
width: 40px;
|
|
69
|
+
height: 40px;
|
|
70
|
+
margin: 0 auto 1rem auto;
|
|
71
|
+
|
|
72
|
+
.layout-submenu-toggler {
|
|
73
|
+
display: none;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.layout-menuitem-icon {
|
|
77
|
+
font-size: 1.5rem;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.layout-menuitem-text {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&:hover {
|
|
85
|
+
color: (--primary-color-text);
|
|
86
|
+
background-color: var(--primary-color);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
> ul {
|
|
91
|
+
position: absolute;
|
|
92
|
+
left: 5.857rem;
|
|
93
|
+
top: 0;
|
|
94
|
+
min-width: 15rem;
|
|
95
|
+
background: var(--surface-ground);
|
|
96
|
+
border-radius: var(--border-radius);
|
|
97
|
+
box-shadow: var(--sidebar-shadow);
|
|
98
|
+
padding: 0.5rem;
|
|
99
|
+
max-height: 20rem;
|
|
100
|
+
overflow: auto;
|
|
101
|
+
z-index: 999;
|
|
102
|
+
|
|
103
|
+
a {
|
|
104
|
+
padding-right: 0.5rem;
|
|
105
|
+
color: var(--text-color);
|
|
106
|
+
border-radius: var(--border-radius);
|
|
107
|
+
|
|
108
|
+
.layout-menuitem-icon {
|
|
109
|
+
color: var(--text-color);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&:hover {
|
|
113
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
li {
|
|
118
|
+
a {
|
|
119
|
+
padding-left: 0.5rem;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
li {
|
|
123
|
+
a {
|
|
124
|
+
padding-left: 1rem;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
li {
|
|
128
|
+
a {
|
|
129
|
+
padding-left: 1.5rem;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
li {
|
|
133
|
+
a {
|
|
134
|
+
padding-left: 2rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
li {
|
|
138
|
+
a {
|
|
139
|
+
padding-left: 2.5rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
li {
|
|
143
|
+
a {
|
|
144
|
+
padding-left: 3rem;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
@media screen and (min-width: $breakpoint) {
|
|
2
|
+
.layout-container {
|
|
3
|
+
&.layout-slim-plus {
|
|
4
|
+
.layout-topbar {
|
|
5
|
+
.topbar-menubutton {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sidebar-header {
|
|
11
|
+
justify-content: center;
|
|
12
|
+
padding: 1.7rem 0;
|
|
13
|
+
.app-logo {
|
|
14
|
+
display: flex;
|
|
15
|
+
justify-content: center;
|
|
16
|
+
align-items: center;
|
|
17
|
+
.app-logo-normal {
|
|
18
|
+
display: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.app-logo-small {
|
|
22
|
+
display: inline;
|
|
23
|
+
align-items: center;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.layout-sidebar {
|
|
29
|
+
width: 8rem;
|
|
30
|
+
overflow: visible;
|
|
31
|
+
z-index: 999;
|
|
32
|
+
.layout-menu-container {
|
|
33
|
+
overflow: auto;
|
|
34
|
+
|
|
35
|
+
&::-webkit-scrollbar {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.layout-content-wrapper {
|
|
42
|
+
margin-left: 8rem;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.layout-menu {
|
|
46
|
+
padding: 0 1rem;
|
|
47
|
+
ul {
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
li.active-menuitem {
|
|
52
|
+
> ul {
|
|
53
|
+
display: block;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.layout-root-menuitem {
|
|
58
|
+
> .layout-menuitem-root-text {
|
|
59
|
+
display: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
> a {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
align-items: center;
|
|
66
|
+
justify-content: center;
|
|
67
|
+
border-radius: 12px;
|
|
68
|
+
text-align: center;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
border: none;
|
|
71
|
+
outline: none;
|
|
72
|
+
transition: background-color var(--transition-duration);
|
|
73
|
+
width: auto;
|
|
74
|
+
height: auto;
|
|
75
|
+
margin: 0 auto 1rem auto;
|
|
76
|
+
padding: 8px;
|
|
77
|
+
|
|
78
|
+
.layout-submenu-toggler {
|
|
79
|
+
display: none;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.layout-menuitem-icon {
|
|
83
|
+
font-size: 1.5rem;
|
|
84
|
+
color: var(--text-color);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.layout-menuitem-text {
|
|
88
|
+
font-size: 0.875rem;
|
|
89
|
+
display: block;
|
|
90
|
+
margin-top: 0.25rem;
|
|
91
|
+
color: var(--text-color);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&:hover {
|
|
95
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
> ul {
|
|
100
|
+
position: absolute;
|
|
101
|
+
left: 8rem;
|
|
102
|
+
top: 0;
|
|
103
|
+
min-width: 15rem;
|
|
104
|
+
background: var(--surface-ground);
|
|
105
|
+
border-radius: var(--border-radius);
|
|
106
|
+
box-shadow: var(--sidebar-shadow);
|
|
107
|
+
padding: 0.5rem;
|
|
108
|
+
max-height: 20rem;
|
|
109
|
+
overflow: auto;
|
|
110
|
+
z-index: 999;
|
|
111
|
+
|
|
112
|
+
a {
|
|
113
|
+
padding-right: 0.5rem;
|
|
114
|
+
color: var(--text-color);
|
|
115
|
+
border-radius: var(--border-radius);
|
|
116
|
+
|
|
117
|
+
.layout-menuitem-icon {
|
|
118
|
+
color: var(--text-color);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&:hover {
|
|
122
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
li {
|
|
127
|
+
a {
|
|
128
|
+
padding-left: 0.5rem;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
li {
|
|
132
|
+
a {
|
|
133
|
+
padding-left: 1rem;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
li {
|
|
137
|
+
a {
|
|
138
|
+
padding-left: 1.5rem;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
li {
|
|
142
|
+
a {
|
|
143
|
+
padding-left: 2rem;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
li {
|
|
147
|
+
a {
|
|
148
|
+
padding-left: 2.5rem;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
li {
|
|
152
|
+
a {
|
|
153
|
+
padding-left: 3rem;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
.layout-sidebar {
|
|
2
|
+
position: fixed;
|
|
3
|
+
height: 100%;
|
|
4
|
+
top: 0;
|
|
5
|
+
left: 0;
|
|
6
|
+
width: 21rem;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
border-radius: 0 40px 40px 0;
|
|
10
|
+
|
|
11
|
+
.sidebar-header {
|
|
12
|
+
padding: 1.7rem 1.57rem 0.5rem 2.42rem;
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: flex-start;
|
|
15
|
+
align-items: center;
|
|
16
|
+
|
|
17
|
+
.app-logo {
|
|
18
|
+
width: 100%;
|
|
19
|
+
.app-logo-normal {
|
|
20
|
+
display: inline;
|
|
21
|
+
img {
|
|
22
|
+
height: 1.714rem;
|
|
23
|
+
border: 0 none;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.app-logo-small {
|
|
27
|
+
img {
|
|
28
|
+
height: 2.5rem;
|
|
29
|
+
border: 0 none;
|
|
30
|
+
}
|
|
31
|
+
display: none;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.layout-menu-container {
|
|
37
|
+
overflow: auto;
|
|
38
|
+
flex: 1;
|
|
39
|
+
padding-bottom: 2rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.layout-menu {
|
|
43
|
+
margin: 0;
|
|
44
|
+
padding: 0 1.5rem;
|
|
45
|
+
list-style-type: none;
|
|
46
|
+
|
|
47
|
+
> li {
|
|
48
|
+
margin-bottom: 2.25rem;
|
|
49
|
+
&:first-child {
|
|
50
|
+
margin-top: 2rem;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
li {
|
|
54
|
+
border-radius: 8px;
|
|
55
|
+
a {
|
|
56
|
+
border-left: 8px solid transparent;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.layout-root-menuitem {
|
|
61
|
+
> div {
|
|
62
|
+
padding-left: 1.5rem;
|
|
63
|
+
margin-bottom: 0.5rem;
|
|
64
|
+
font-size: 12px;
|
|
65
|
+
|
|
66
|
+
> .layout-menuitem-text {
|
|
67
|
+
font-size: 0.857rem;
|
|
68
|
+
font-weight: 600;
|
|
69
|
+
text-transform: uppercase;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
> a {
|
|
73
|
+
display: none;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
a {
|
|
78
|
+
user-select: none;
|
|
79
|
+
|
|
80
|
+
&.active-menuitem {
|
|
81
|
+
> .layout-submenu-toggler {
|
|
82
|
+
transform: rotate(-180deg);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
li.active-menuitem {
|
|
88
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
89
|
+
> a {
|
|
90
|
+
border-left-color: var(--primary-color);
|
|
91
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
92
|
+
.layout-submenu-toggler {
|
|
93
|
+
transform: rotate(-180deg);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
ul {
|
|
99
|
+
margin: 0;
|
|
100
|
+
padding: 0;
|
|
101
|
+
list-style-type: none;
|
|
102
|
+
|
|
103
|
+
a {
|
|
104
|
+
display: flex;
|
|
105
|
+
align-items: center;
|
|
106
|
+
position: relative;
|
|
107
|
+
outline: 0 none;
|
|
108
|
+
color: var(--text-color);
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
padding: 0.5rem 1rem;
|
|
111
|
+
border-radius: 8px;
|
|
112
|
+
transition:
|
|
113
|
+
background-color var(--transition-duration),
|
|
114
|
+
box-shadow var(--transition-duration);
|
|
115
|
+
|
|
116
|
+
.layout-menuitem-icon {
|
|
117
|
+
margin-right: 0.5rem;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.layout-submenu-toggler {
|
|
121
|
+
font-size: 75%;
|
|
122
|
+
margin-left: auto;
|
|
123
|
+
transition: transform var(--transition-duration);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&.active-route {
|
|
127
|
+
border-left-color: var(--primary-color);
|
|
128
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&:hover {
|
|
132
|
+
background-color: var(--root-menu-item-hover-bg);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
ul {
|
|
137
|
+
overflow: hidden;
|
|
138
|
+
border-radius: var(--border-radius);
|
|
139
|
+
|
|
140
|
+
li {
|
|
141
|
+
a {
|
|
142
|
+
padding-left: 2.5rem;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
li {
|
|
146
|
+
a {
|
|
147
|
+
padding-left: 3rem;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
li {
|
|
151
|
+
a {
|
|
152
|
+
padding-left: 3.5rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
li {
|
|
156
|
+
a {
|
|
157
|
+
padding-left: 4rem;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
li {
|
|
161
|
+
a {
|
|
162
|
+
padding-left: 5.5rem;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
li {
|
|
166
|
+
a {
|
|
167
|
+
padding-left: 5rem;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
.layout-rightmenu-button {
|
|
2
|
+
background: linear-gradient(271.89deg, rgba(70, 82, 104, 1), rgba(115, 130, 161, 1));
|
|
3
|
+
border-radius: 6px 0 0 6px;
|
|
4
|
+
border-color: transparent;
|
|
5
|
+
border-left: 0 none;
|
|
6
|
+
box-shadow: 0 0 10px rgb(15 139 253 / 25%);
|
|
7
|
+
right: 0;
|
|
8
|
+
color: #fff;
|
|
9
|
+
span {
|
|
10
|
+
font-weight: 400 !important;
|
|
11
|
+
}
|
|
12
|
+
&:enabled:hover {
|
|
13
|
+
background: linear-gradient(271.89deg, rgba(70, 82, 104, 0.5), rgba(115, 130, 161, 0.5));
|
|
14
|
+
border-color: transparent;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.layout-topbar {
|
|
18
|
+
margin-bottom: 2rem;
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: space-between;
|
|
21
|
+
align-items: center;
|
|
22
|
+
|
|
23
|
+
.topbar-start {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
position: relative;
|
|
27
|
+
z-index: 999;
|
|
28
|
+
.topbar-menubutton {
|
|
29
|
+
display: inline-flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
margin-right: 2rem;
|
|
33
|
+
border-radius: var(--border-radius);
|
|
34
|
+
width: 2.5rem;
|
|
35
|
+
height: 2.5rem;
|
|
36
|
+
flex-shrink: 0;
|
|
37
|
+
transition: background-color var(--transition-duration);
|
|
38
|
+
|
|
39
|
+
i {
|
|
40
|
+
font-size: 1.25rem;
|
|
41
|
+
color: var(--text-color);
|
|
42
|
+
transition: color var(--transition-duration);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:hover {
|
|
46
|
+
background-color: var(--primary-color);
|
|
47
|
+
|
|
48
|
+
i {
|
|
49
|
+
color: var(--primary-color-text);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.topbar-menu {
|
|
56
|
+
display: flex;
|
|
57
|
+
justify-content: flex-end;
|
|
58
|
+
align-items: center;
|
|
59
|
+
margin: 0;
|
|
60
|
+
padding: 0 1.15rem 0 0.85rem;
|
|
61
|
+
padding-right: 0;
|
|
62
|
+
list-style: none;
|
|
63
|
+
flex-grow: 1;
|
|
64
|
+
color: var(--topbar-item-text-color);
|
|
65
|
+
margin-right: -2rem;
|
|
66
|
+
|
|
67
|
+
li {
|
|
68
|
+
margin-left: 1.5rem;
|
|
69
|
+
&.topbar-item {
|
|
70
|
+
margin-left: 1.5rem;
|
|
71
|
+
display: inline-flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
position: relative;
|
|
75
|
+
|
|
76
|
+
img {
|
|
77
|
+
width: 2rem;
|
|
78
|
+
height: 2rem;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
button {
|
|
82
|
+
border-radius: 50%;
|
|
83
|
+
width: 2rem;
|
|
84
|
+
height: 2rem;
|
|
85
|
+
transition: box-shadow var(--transition-duration);
|
|
86
|
+
|
|
87
|
+
&:focus {
|
|
88
|
+
box-shadow: var(--focus-ring);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
ul {
|
|
93
|
+
position: absolute;
|
|
94
|
+
bottom: -9rem;
|
|
95
|
+
right: 0;
|
|
96
|
+
margin-right: 0;
|
|
97
|
+
display: none;
|
|
98
|
+
color: var(--text-color);
|
|
99
|
+
background: var(--surface-ground);
|
|
100
|
+
box-shadow: var(--box-shadow);
|
|
101
|
+
&.active-topbar-menu {
|
|
102
|
+
display: block;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
a {
|
|
106
|
+
color: var(--text-color);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
.topbar-search {
|
|
111
|
+
display: flex;
|
|
112
|
+
align-items: center;
|
|
113
|
+
flex-shrink: 0;
|
|
114
|
+
.topbar-searchbutton {
|
|
115
|
+
display: flex;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.search-input-wrapper {
|
|
119
|
+
position: relative;
|
|
120
|
+
width: 0;
|
|
121
|
+
opacity: 0;
|
|
122
|
+
visibility: hidden;
|
|
123
|
+
transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
124
|
+
|
|
125
|
+
span {
|
|
126
|
+
width: 100%;
|
|
127
|
+
|
|
128
|
+
.p-inputtext {
|
|
129
|
+
width: 100%;
|
|
130
|
+
position: relative;
|
|
131
|
+
border-radius: 40px;
|
|
132
|
+
padding: 9px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
i {
|
|
136
|
+
font-size: 18px;
|
|
137
|
+
margin-top: -9px;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&.topbar-search-active {
|
|
143
|
+
.topbar-searchbutton {
|
|
144
|
+
opacity: 0;
|
|
145
|
+
display: none;
|
|
146
|
+
pointer-events: none;
|
|
147
|
+
cursor: default;
|
|
148
|
+
transition: opacity 0.1s;
|
|
149
|
+
transition-delay: 0.1s;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.search-input-wrapper {
|
|
153
|
+
width: 190px;
|
|
154
|
+
opacity: 1;
|
|
155
|
+
visibility: visible;
|
|
156
|
+
border-radius: var(--border-radius);
|
|
157
|
+
i {
|
|
158
|
+
display: block;
|
|
159
|
+
}
|
|
160
|
+
input {
|
|
161
|
+
border-radius: var(--border-radius);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
button {
|
|
168
|
+
span {
|
|
169
|
+
color: var(--item-text-color);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|