@mediusinc/mng-commons-layout 6.2.1 → 7.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/components/index.d.ts +168 -10
  2. package/components/pages/error/index.d.ts +10 -1
  3. package/components/pages/main/index.d.ts +35 -2
  4. package/components/pages/main/lazy/index.d.ts +11 -1
  5. package/components/pages/not-found/index.d.ts +10 -1
  6. package/fesm2022/mediusinc-mng-commons-layout-components-pages-error.mjs +4 -4
  7. package/fesm2022/mediusinc-mng-commons-layout-components-pages-error.mjs.map +1 -1
  8. package/fesm2022/mediusinc-mng-commons-layout-components-pages-main-lazy.mjs.map +1 -1
  9. package/fesm2022/mediusinc-mng-commons-layout-components-pages-main.mjs +9 -9
  10. package/fesm2022/mediusinc-mng-commons-layout-components-pages-main.mjs.map +1 -1
  11. package/fesm2022/mediusinc-mng-commons-layout-components-pages-not-found.mjs +4 -4
  12. package/fesm2022/mediusinc-mng-commons-layout-components-pages-not-found.mjs.map +1 -1
  13. package/fesm2022/mediusinc-mng-commons-layout-components.mjs +66 -65
  14. package/fesm2022/mediusinc-mng-commons-layout-components.mjs.map +1 -1
  15. package/fesm2022/mediusinc-mng-commons-layout.mjs +40 -41
  16. package/fesm2022/mediusinc-mng-commons-layout.mjs.map +1 -1
  17. package/index.d.ts +206 -8
  18. package/package.json +25 -16
  19. package/styles/atlantis/index.scss +16 -0
  20. package/{scss → styles/atlantis}/layout/_content.scss +1 -1
  21. package/{scss → styles/atlantis}/layout/_main.scss +17 -2
  22. package/{scss → styles/atlantis}/layout/_profile.scss +1 -1
  23. package/styles/atlantis/layout/_sass_variables.scss +1 -0
  24. package/{scss → styles/atlantis}/layout/_sidebar_drawer.scss +5 -3
  25. package/{scss → styles/atlantis}/layout/_sidebar_horizontal.scss +8 -10
  26. package/{scss → styles/atlantis}/layout/_sidebar_reveal.scss +9 -12
  27. package/{scss → styles/atlantis}/layout/_sidebar_slim.scss +1 -2
  28. package/{scss → styles/atlantis}/layout/_sidebar_slim_plus.scss +1 -2
  29. package/{scss → styles/atlantis}/layout/_sidebar_vertical.scss +3 -1
  30. package/{scss → styles/atlantis}/layout/_topbar.scss +0 -1
  31. package/styles/atlantis/layout/atlantis.scss +0 -0
  32. package/{scss → styles/atlantis}/layout/layout.scss +3 -3
  33. package/{scss → styles/atlantis}/layout/variables/_dark.scss +2 -2
  34. package/{scss → styles/atlantis}/layout/variables/_light.scss +2 -2
  35. package/styles/tailwindcss-commons/atlantis/index.css +20 -0
  36. package/styles/tailwindcss-commons/atlantis/layout/breadcrumb.css +100 -0
  37. package/styles/tailwindcss-commons/atlantis/layout/content.css +3 -0
  38. package/styles/tailwindcss-commons/atlantis/layout/main.css +67 -0
  39. package/styles/tailwindcss-commons/atlantis/layout/profile.css +10 -0
  40. package/styles/tailwindcss-commons/atlantis/layout/responsive.css +131 -0
  41. package/styles/tailwindcss-commons/atlantis/layout/sidebar-drawer.css +286 -0
  42. package/styles/tailwindcss-commons/atlantis/layout/sidebar-reveal.css +204 -0
  43. package/styles/tailwindcss-commons/atlantis/layout/sidebar-slim-plus.css +166 -0
  44. package/styles/tailwindcss-commons/atlantis/layout/sidebar-slim.css +156 -0
  45. package/styles/tailwindcss-commons/atlantis/layout/sidebar-vertical.css +184 -0
  46. package/styles/tailwindcss-commons/atlantis/layout/topbar.css +203 -0
  47. package/styles/tailwindcss-commons/atlantis/layout/utils.css +29 -0
  48. package/styles/tailwindcss-commons/atlantis/variables/common.css +15 -0
  49. package/styles/tailwindcss-commons/atlantis/variables/dark.css +10 -0
  50. package/styles/tailwindcss-commons/atlantis/variables/light.css +10 -0
  51. package/styles/tailwindcss-commons/index.css +15 -0
  52. package/styles/tailwindcss-commons/index_wo_atlantis.css +14 -0
  53. package/styles/tailwindcss-commons/setup/breakpoints.css +15 -0
  54. package/styles/tailwindcss-commons/setup/dark.css +2 -0
  55. package/styles/tailwindcss-commons/setup/heading.css +26 -0
  56. package/{scss/layout/mng/variables/_mng-variables-common.scss → styles/tailwindcss-commons/setup/variables.css} +9 -0
  57. package/{scss/layout/mng/theme/_mng_theme_button.scss → styles/tailwindcss-commons/styles/button.css} +2 -2
  58. package/{scss/layout/mng/theme/_mng_theme_dialog.scss → styles/tailwindcss-commons/styles/dialog.css} +22 -18
  59. package/styles/tailwindcss-commons/styles/topbar.css +24 -0
  60. package/version-info.json +6 -6
  61. package/components/lib/components/breadcrumb.component.d.ts +0 -9
  62. package/components/lib/components/footer.component.d.ts +0 -13
  63. package/components/lib/components/main-layout.component.d.ts +0 -23
  64. package/components/lib/components/menu-item.component.d.ts +0 -26
  65. package/components/lib/components/menu.component.d.ts +0 -12
  66. package/components/lib/components/settings.component.d.ts +0 -28
  67. package/components/lib/components/sidebar.component.d.ts +0 -15
  68. package/components/lib/components/topbar-user.component.d.ts +0 -16
  69. package/components/lib/components/topbar.component.d.ts +0 -16
  70. package/components/lib/components/version.component.d.ts +0 -19
  71. package/components/pages/error/lib/error.page.component.d.ts +0 -7
  72. package/components/pages/main/lazy/lib/route-builder.d.ts +0 -8
  73. package/components/pages/main/lib/main-layout.component.d.ts +0 -23
  74. package/components/pages/main/lib/route-builder.d.ts +0 -8
  75. package/components/pages/not-found/lib/not-found.page.component.d.ts +0 -7
  76. package/lib/helpers/menu-items.d.ts +0 -5
  77. package/lib/models/layout-state.model.d.ts +0 -10
  78. package/lib/models/menu.model.d.ts +0 -4
  79. package/lib/provide.d.ts +0 -8
  80. package/lib/services/layout-feature-config.token.d.ts +0 -91
  81. package/lib/services/layout.service.d.ts +0 -48
  82. package/lib/services/menu.service.d.ts +0 -22
  83. package/lib/services/version.service.d.ts +0 -14
  84. package/scss/commons.scss +0 -1
  85. package/scss/layout/_sass_variables.scss +0 -1
  86. package/scss/layout/mng/layout/_mng_layout_topbar.scss +0 -18
  87. /package/{scss → styles/atlantis}/layout/_breadcrumb.scss +0 -0
  88. /package/{scss → styles/atlantis}/layout/_config.scss +0 -0
  89. /package/{scss → styles/atlantis}/layout/_responsive.scss +0 -0
  90. /package/{scss → styles/atlantis}/layout/_utils.scss +0 -0
  91. /package/{scss → styles/atlantis}/layout/variables/_common.scss +0 -0
  92. /package/{scss/layout/mng/layout/_mng_layout_footer.scss → styles/tailwindcss-commons/styles/footer.css} +0 -0
  93. /package/{scss/layout/mng/layout/_mng_layout.scss → styles/tailwindcss-commons/styles/layout.css} +0 -0
  94. /package/{scss/layout/mng/layout/_mng_layout_menu.scss → styles/tailwindcss-commons/styles/menu.css} +0 -0
  95. /package/{scss/layout/mng/layout/_mng_sidebar_vertical.scss → styles/tailwindcss-commons/styles/sidebar.css} +0 -0
  96. /package/{scss/layout/mng/theme/_mng_theme_toast.scss → styles/tailwindcss-commons/styles/toast.css} +0 -0
  97. /package/{scss/layout/mng/theme/_mng_theme_toggleswitch.scss → styles/tailwindcss-commons/styles/toggleswitch.css} +0 -0
@@ -0,0 +1,204 @@
1
+ @variant media-lg {
2
+ .layout-container {
3
+ &.layout-reveal {
4
+ .layout-topbar {
5
+ .topbar-menubutton {
6
+ display: none;
7
+ }
8
+ }
9
+
10
+ .layout-sidebar {
11
+ height: 100%;
12
+ top: 0;
13
+ transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
14
+ transform: translateX(-15.5rem);
15
+ z-index: 999;
16
+ background: var(--surface-ground);
17
+ padding-bottom: 3rem;
18
+ .sidebar-header {
19
+ display: flex;
20
+ justify-content: flex-end;
21
+ align-items: center;
22
+ gap: 1rem;
23
+ padding: 1.5rem 1rem;
24
+ height: 5.71rem;
25
+ .app-logo {
26
+ text-align: right;
27
+ .app-logo-small {
28
+ display: inline;
29
+ order: 1;
30
+ margin-right: 0.5rem;
31
+ }
32
+
33
+ .app-logo-normal {
34
+ display: none;
35
+ }
36
+ }
37
+
38
+ .layout-sidebar-anchor {
39
+ display: none;
40
+ width: 1.25rem;
41
+ height: 1.25rem;
42
+ border-radius: 50%;
43
+ border: 2px solid var(--primary-color);
44
+ background-color: transparent;
45
+ transition:
46
+ background-color var(--layout-section-transition-duration),
47
+ transform 0.3s;
48
+ }
49
+ }
50
+ .layout-menu-container {
51
+ overflow: hidden;
52
+ }
53
+
54
+ .layout-menu {
55
+ .layout-root-menuitem {
56
+ > .layout-menuitem-root-text {
57
+ > span {
58
+ margin-right: auto;
59
+ }
60
+
61
+ > .layout-menuitem-root-icon {
62
+ display: block;
63
+ margin-right: 0.125rem;
64
+ }
65
+ }
66
+ }
67
+
68
+ ul {
69
+ margin: 0;
70
+ padding: 0;
71
+ list-style-type: none;
72
+
73
+ a {
74
+ padding: 0.5rem 1rem;
75
+ .layout-menuitem-text {
76
+ order: 1;
77
+ margin-right: auto;
78
+ }
79
+
80
+ .layout-submenu-toggler {
81
+ order: 2;
82
+ display: none;
83
+ margin-right: 0.5rem;
84
+ }
85
+
86
+ .layout-menuitem-icon {
87
+ order: 3;
88
+ margin-right: 0;
89
+ font-size: 1rem;
90
+ width: auto;
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+
97
+ &.layout-reveal {
98
+ .layout-content-wrapper {
99
+ margin-left: 4.25rem;
100
+ transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
101
+ }
102
+ }
103
+
104
+ &.layout-sidebar-active {
105
+ .layout-sidebar {
106
+ padding-bottom: 0rem;
107
+ transform: translateX(0);
108
+ .layout-menu-container {
109
+ overflow: auto;
110
+ }
111
+ .sidebar-header {
112
+ padding: 1.5rem 2rem;
113
+ justify-content: space-between;
114
+ .app-logo {
115
+ text-align: left;
116
+ .app-logo-normal {
117
+ display: inline;
118
+ }
119
+
120
+ .app-logo-small {
121
+ display: none;
122
+ }
123
+ }
124
+ .layout-sidebar-anchor {
125
+ display: block;
126
+ animation: px-fadein 0.15s linear;
127
+ flex-shrink: 0;
128
+ }
129
+ }
130
+
131
+ .layout-menu {
132
+ .layout-root-menuitem {
133
+ > .layout-menuitem-root-text {
134
+ > .layout-menuitem-root-icon {
135
+ display: none;
136
+ }
137
+ }
138
+ }
139
+
140
+ ul {
141
+ a {
142
+ .layout-submenu-toggler {
143
+ display: block;
144
+ }
145
+ }
146
+ ul {
147
+ overflow: hidden;
148
+ border-radius: var(--border-radius);
149
+
150
+ li {
151
+ a {
152
+ padding-left: 2.5rem;
153
+ }
154
+
155
+ li {
156
+ a {
157
+ padding-left: 3rem;
158
+ }
159
+
160
+ li {
161
+ a {
162
+ padding-left: 3.5rem;
163
+ }
164
+
165
+ li {
166
+ a {
167
+ padding-left: 4rem;
168
+ }
169
+
170
+ li {
171
+ a {
172
+ padding-left: 5.5rem;
173
+ }
174
+
175
+ li {
176
+ a {
177
+ padding-left: 5rem;
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
184
+ }
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+
191
+ &.layout-sidebar-anchored {
192
+ .sidebar-header {
193
+ .layout-sidebar-anchor {
194
+ background-color: var(--primary-color);
195
+ }
196
+ }
197
+
198
+ .layout-content-wrapper {
199
+ margin-left: 22rem;
200
+ }
201
+ }
202
+ }
203
+ }
204
+ }
@@ -0,0 +1,166 @@
1
+ @variant media-lg {
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(--layout-section-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,156 @@
1
+ @variant media-lg {
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(--layout-section-transition-duration);
66
+ padding: 8px;
67
+ width: 40px;
68
+ height: 40px;
69
+ margin: 0 auto 1rem auto;
70
+
71
+ .layout-submenu-toggler {
72
+ display: none;
73
+ }
74
+
75
+ .layout-menuitem-icon {
76
+ font-size: 1.5rem;
77
+ }
78
+
79
+ .layout-menuitem-text {
80
+ display: none;
81
+ }
82
+
83
+ &:hover {
84
+ color: var(--primary-color-text);
85
+ background-color: var(--primary-color);
86
+ }
87
+ }
88
+
89
+ > ul {
90
+ position: absolute;
91
+ left: 5.857rem;
92
+ top: 0;
93
+ min-width: 15rem;
94
+ background: var(--surface-ground);
95
+ border-radius: var(--border-radius);
96
+ box-shadow: var(--sidebar-shadow);
97
+ padding: 0.5rem;
98
+ max-height: 20rem;
99
+ overflow: auto;
100
+ z-index: 999;
101
+
102
+ a {
103
+ padding-right: 0.5rem;
104
+ color: var(--text-color);
105
+ border-radius: var(--border-radius);
106
+
107
+ .layout-menuitem-icon {
108
+ color: var(--text-color);
109
+ }
110
+
111
+ &:hover {
112
+ background-color: var(--root-menu-item-hover-bg);
113
+ }
114
+ }
115
+
116
+ li {
117
+ a {
118
+ padding-left: 0.5rem;
119
+ }
120
+
121
+ li {
122
+ a {
123
+ padding-left: 1rem;
124
+ }
125
+
126
+ li {
127
+ a {
128
+ padding-left: 1.5rem;
129
+ }
130
+
131
+ li {
132
+ a {
133
+ padding-left: 2rem;
134
+ }
135
+
136
+ li {
137
+ a {
138
+ padding-left: 2.5rem;
139
+ }
140
+
141
+ li {
142
+ a {
143
+ padding-left: 3rem;
144
+ }
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ }
151
+ }
152
+ }
153
+ }
154
+ }
155
+ }
156
+ }
@@ -0,0 +1,184 @@
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: 0px 40px 40px 0px;
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
+
20
+ .app-logo-normal {
21
+ display: inline;
22
+ img {
23
+ height: 1.714rem;
24
+ border: 0 none;
25
+ }
26
+ }
27
+
28
+ .app-logo-small {
29
+ display: none;
30
+
31
+ img {
32
+ height: 2.5rem;
33
+ border: 0 none;
34
+ }
35
+ }
36
+ }
37
+
38
+ .layout-sidebar-anchor {
39
+ display: none;
40
+ }
41
+ }
42
+ .layout-menu-container {
43
+ overflow: auto;
44
+ flex: 1;
45
+ padding-bottom: 2rem;
46
+ }
47
+
48
+ .layout-menu {
49
+ margin: 0;
50
+ padding: 0 1.5rem;
51
+ list-style-type: none;
52
+
53
+ > li {
54
+ margin-bottom: 2.25rem;
55
+ &:first-child {
56
+ margin-top: 2rem;
57
+ }
58
+ }
59
+ li {
60
+ border-radius: 8px;
61
+ a {
62
+ border-left: 8px solid transparent;
63
+ }
64
+ }
65
+
66
+ .layout-root-menuitem {
67
+ > div {
68
+ padding-left: 1.5rem;
69
+ margin-bottom: 0.5rem;
70
+ font-size: 12px;
71
+
72
+ > .layout-menuitem-text {
73
+ font-size: 0.857rem;
74
+ font-weight: 600;
75
+ text-transform: uppercase;
76
+ }
77
+ }
78
+ > a {
79
+ display: none;
80
+ }
81
+ }
82
+
83
+ a {
84
+ user-select: none;
85
+
86
+ &.active-menuitem {
87
+ > .layout-submenu-toggler {
88
+ transform: rotate(-180deg);
89
+ }
90
+ }
91
+ }
92
+
93
+ li.active-menuitem {
94
+ background-color: var(--root-menu-item-hover-bg);
95
+ > a {
96
+ border-left-color: var(--primary-color);
97
+ background-color: var(--root-menu-item-hover-bg);
98
+ .layout-submenu-toggler {
99
+ transform: rotate(-180deg);
100
+ }
101
+ }
102
+ }
103
+
104
+ ul {
105
+ margin: 0;
106
+ padding: 0;
107
+ list-style-type: none;
108
+
109
+ a {
110
+ display: flex;
111
+ align-items: center;
112
+ position: relative;
113
+ outline: 0 none;
114
+ color: var(--text-color);
115
+ cursor: pointer;
116
+ padding: 0.5rem 1rem;
117
+ border-radius: 8px;
118
+ transition:
119
+ background-color var(--layout-section-transition-duration),
120
+ box-shadow var(--layout-section-transition-duration);
121
+
122
+ .layout-menuitem-icon {
123
+ margin-right: 0.5rem;
124
+ }
125
+
126
+ .layout-submenu-toggler {
127
+ font-size: 75%;
128
+ margin-left: auto;
129
+ transition: transform var(--layout-section-transition-duration);
130
+ }
131
+
132
+ &.active-route {
133
+ border-left-color: var(--primary-color);
134
+ background-color: var(--root-menu-item-hover-bg);
135
+ }
136
+
137
+ &:hover {
138
+ background-color: var(--root-menu-item-hover-bg);
139
+ }
140
+ }
141
+
142
+ ul {
143
+ overflow: hidden;
144
+ border-radius: var(--border-radius);
145
+
146
+ li {
147
+ a {
148
+ padding-left: 2.5rem;
149
+ }
150
+
151
+ li {
152
+ a {
153
+ padding-left: 3rem;
154
+ }
155
+
156
+ li {
157
+ a {
158
+ padding-left: 3.5rem;
159
+ }
160
+
161
+ li {
162
+ a {
163
+ padding-left: 4rem;
164
+ }
165
+
166
+ li {
167
+ a {
168
+ padding-left: 5.5rem;
169
+ }
170
+
171
+ li {
172
+ a {
173
+ padding-left: 5rem;
174
+ }
175
+ }
176
+ }
177
+ }
178
+ }
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
184
+ }