@syncfusion/ej2-navigations 19.3.53 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +56 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +528 -150
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +535 -151
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/accordion/accordion-model.d.ts +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/menu-base.js +2 -2
- package/src/common/v-scroll.js +1 -1
- package/src/sidebar/sidebar.js +4 -4
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +26 -15
- package/src/tab/tab.js +59 -30
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +68 -5
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +317 -84
- package/styles/bootstrap.css +316 -83
- package/styles/bootstrap4.css +317 -76
- package/styles/bootstrap5-dark.css +340 -76
- package/styles/bootstrap5.css +342 -78
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +305 -41
- package/styles/fabric.css +308 -44
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +1 -1
- package/styles/h-scroll/bootstrap5-dark.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +317 -47
- package/styles/highcontrast.css +322 -52
- package/styles/material-dark.css +295 -32
- package/styles/material.css +296 -33
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +1 -1
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +1 -1
- package/styles/menu/bootstrap.css +1 -1
- package/styles/menu/bootstrap4.css +1 -1
- package/styles/menu/bootstrap5-dark.css +4 -4
- package/styles/menu/bootstrap5.css +5 -5
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +1 -1
- package/styles/menu/material.css +1 -1
- package/styles/menu/tailwind-dark.css +1 -1
- package/styles/menu/tailwind.css +1 -1
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +54 -31
- package/styles/tab/bootstrap5.css +54 -31
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +313 -50
- package/styles/tailwind.css +313 -50
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
.e-menu-wrapper .e-ul,
|
|
255
255
|
.e-menu-container .e-ul {
|
|
256
256
|
font-size: 14px;
|
|
257
|
-
padding:
|
|
257
|
+
padding: 0;
|
|
258
258
|
min-width: 120px;
|
|
259
259
|
}
|
|
260
260
|
|
|
@@ -1167,9 +1167,9 @@
|
|
|
1167
1167
|
|
|
1168
1168
|
.e-menu-wrapper .e-ul .e-menu-item.e-selected,
|
|
1169
1169
|
.e-menu-container .e-ul .e-menu-item.e-selected {
|
|
1170
|
-
background-color: #
|
|
1170
|
+
background-color: #0d6efd;
|
|
1171
1171
|
color: #fff;
|
|
1172
|
-
outline: 0 solid #
|
|
1172
|
+
outline: 0 solid #0d6efd;
|
|
1173
1173
|
outline-offset: 0;
|
|
1174
1174
|
}
|
|
1175
1175
|
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
|
|
1233
1233
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active,
|
|
1234
1234
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
1235
|
-
background: #
|
|
1235
|
+
background: #0d6efd;
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
1238
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
.e-menu-wrapper .e-ul,
|
|
255
255
|
.e-menu-container .e-ul {
|
|
256
256
|
font-size: 14px;
|
|
257
|
-
padding:
|
|
257
|
+
padding: 0;
|
|
258
258
|
min-width: 120px;
|
|
259
259
|
}
|
|
260
260
|
|
|
@@ -1167,9 +1167,9 @@
|
|
|
1167
1167
|
|
|
1168
1168
|
.e-menu-wrapper .e-ul .e-menu-item.e-selected,
|
|
1169
1169
|
.e-menu-container .e-ul .e-menu-item.e-selected {
|
|
1170
|
-
background-color: #
|
|
1171
|
-
color: #
|
|
1172
|
-
outline: 0 solid #
|
|
1170
|
+
background-color: #0d6efd;
|
|
1171
|
+
color: #fff;
|
|
1172
|
+
outline: 0 solid #0d6efd;
|
|
1173
1173
|
outline-offset: 0;
|
|
1174
1174
|
}
|
|
1175
1175
|
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
|
|
1233
1233
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active,
|
|
1234
1234
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
1235
|
-
background: #
|
|
1235
|
+
background: #0d6efd;
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
1238
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
@include export-module('menu-fluent-icons') {
|
|
2
|
+
/*! menu layout */
|
|
3
|
+
.e-menu-wrapper,
|
|
4
|
+
.e-menu-container {
|
|
5
|
+
@at-root {
|
|
6
|
+
& ul {
|
|
7
|
+
&.e-vertical .e-menu-item {
|
|
8
|
+
& .e-caret {
|
|
9
|
+
&::before {
|
|
10
|
+
content: '\e7c2';
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& .e-menu-item {
|
|
16
|
+
& .e-caret {
|
|
17
|
+
&::before {
|
|
18
|
+
content: '\e7c3';
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& .e-ul .e-menu-item {
|
|
25
|
+
& .e-caret {
|
|
26
|
+
&::before {
|
|
27
|
+
content: '\e7c2';
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.e-hamburger {
|
|
34
|
+
|
|
35
|
+
& .e-menu-header {
|
|
36
|
+
|
|
37
|
+
& .e-menu-icon::before {
|
|
38
|
+
content: '\e728';
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.e-close-icon {
|
|
43
|
+
& .e-menu-header {
|
|
44
|
+
|
|
45
|
+
& .e-menu-icon::before {
|
|
46
|
+
content: '\e74f';
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
& .e-vertical .e-menu-item .e-caret,
|
|
52
|
+
& .e-menu-item .e-caret {
|
|
53
|
+
&::before {
|
|
54
|
+
content: '\e7c3';
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.e-rtl.e-hamburger ul {
|
|
60
|
+
&.e-ul {
|
|
61
|
+
& .e-caret {
|
|
62
|
+
&::before {
|
|
63
|
+
content: '\e7c3';
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
& .e-menu-hscroll.e-hscroll .e-nav-left-arrow::before,
|
|
70
|
+
& .e-menu-hscroll.e-hscroll .e-nav-right-arrow::before {
|
|
71
|
+
content: '\e7c2';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
& .e-menu-vscroll.e-vscroll .e-nav-up-arrow::before,
|
|
75
|
+
& .e-menu-vscroll.e-vscroll .e-nav-down-arrow::before {
|
|
76
|
+
content: '\e7c3';
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-rtl.e-menu-wrapper ul,
|
|
81
|
+
.e-rtl.e-menu-container ul {
|
|
82
|
+
&.e-vertical {
|
|
83
|
+
& .e-caret {
|
|
84
|
+
&::before {
|
|
85
|
+
content: '\e7c1';
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
&.e-ul {
|
|
91
|
+
& .e-caret {
|
|
92
|
+
&::before {
|
|
93
|
+
content: '\e7c1';
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-bigger .e-rtl.e-menu-wrapper ul,
|
|
100
|
+
.e-bigger.e-rtl.e-menu-wrapper ul,
|
|
101
|
+
.e-bigger .e-rtl.e-menu-container ul,
|
|
102
|
+
.e-bigger.e-rtl.e-menu-container ul {
|
|
103
|
+
&.e-vertical {
|
|
104
|
+
& .e-caret {
|
|
105
|
+
&::before {
|
|
106
|
+
content: '\e7c1';
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
&.e-ul {
|
|
112
|
+
& .e-caret {
|
|
113
|
+
&::before {
|
|
114
|
+
content: '\e7c1';
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-bigger .e-rtl.e-menu-wrapper.e-hamburger ul,
|
|
121
|
+
.e-bigger.e-rtl.e-menu-wrapper.e-hamburger ul,
|
|
122
|
+
.e-bigger .e-rtl.e-menu-container.e-hamburger ul,
|
|
123
|
+
.e-bigger.e-rtl.e-menu-container.e-hamburger ul {
|
|
124
|
+
|
|
125
|
+
&.e-ul {
|
|
126
|
+
& .e-caret {
|
|
127
|
+
&::before {
|
|
128
|
+
content: '\e7c3';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
package/styles/menu/material.css
CHANGED
package/styles/menu/tailwind.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
$sidebar-box-shadow: $shadow !default;
|
|
2
|
-
//color variables
|
|
3
|
-
$sidebar-background: $content-bg-color-alt1 !default;
|
|
4
|
-
$sidebar-border: $transparent !default;
|
|
5
|
-
$sidebar-overlay: $overlay-bg-color !default;
|
|
1
|
+
$sidebar-box-shadow: $shadow !default;
|
|
2
|
+
//color variables
|
|
3
|
+
$sidebar-background: $content-bg-color-alt1 !default;
|
|
4
|
+
$sidebar-border: $transparent !default;
|
|
5
|
+
$sidebar-overlay: $overlay-bg-color !default;
|
|
@@ -128,7 +128,9 @@
|
|
|
128
128
|
background-color: $sidebar-overlay;
|
|
129
129
|
height: 100%;
|
|
130
130
|
left: 0;
|
|
131
|
-
|
|
131
|
+
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
132
|
+
opacity: .5;
|
|
133
|
+
}
|
|
132
134
|
pointer-events: auto;
|
|
133
135
|
top: 0;
|
|
134
136
|
width: auto;
|
|
@@ -162,7 +164,7 @@
|
|
|
162
164
|
background-color: $sidebar-overlay;
|
|
163
165
|
height: 100%;
|
|
164
166
|
left: 0;
|
|
165
|
-
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5') {
|
|
167
|
+
@if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
|
|
166
168
|
opacity: .5;
|
|
167
169
|
}
|
|
168
170
|
pointer-events: auto;
|
|
@@ -182,6 +182,7 @@ $tab-mob-fill-wrap-padding: 0 15px !default;
|
|
|
182
182
|
$tab-bg-big-wrap-padding: 0 20px !default;
|
|
183
183
|
$tab-bg-nrml-wrap-padding: 0 15px !default;
|
|
184
184
|
$tab-item-hover-bg-color: $grey !default;
|
|
185
|
+
$tab-bg-item-wrap-hover-bg-color: $tab-item-hover-bg-color !default;
|
|
185
186
|
$tab-mob-item-hover-bg-color: initial !default;
|
|
186
187
|
$tab-pop-text-color: $grey-light-font !default;
|
|
187
188
|
$tab-alt-disable-active-item-opacity: .65 !default;
|
|
@@ -236,6 +237,7 @@ $tab-nrml-even-active-text-height: 40px !default;
|
|
|
236
237
|
$tab-fill-big-even-active-text-height: 50px !default;
|
|
237
238
|
$tab-fill-nrml-even-active-text-height: 40px !default;
|
|
238
239
|
$tab-text-color: lighten($brand-primary, 15%) !default;
|
|
240
|
+
$tab-wrap-comb-icon-color: $tab-text-color !default;
|
|
239
241
|
$tab-disable-text-color: $grey-light !default;
|
|
240
242
|
$tab-mob-text-color: lighten($brand-primary, 15%) !default;
|
|
241
243
|
$tab-active-text-color: $grey-dark-font !default;
|
|
@@ -249,11 +251,13 @@ $tab-alt-active-text-color: $brand-primary-font !default;
|
|
|
249
251
|
$tab-alt-disable-active-text-color: $brand-primary-font !default;
|
|
250
252
|
$tab-alt-hover-text-color: lighten($brand-primary, 10%) !default;
|
|
251
253
|
$tab-alt-active-hover-text-color: $brand-primary-font !default;
|
|
254
|
+
$tab-alt-active-style-hover-icon-color: $tab-alt-active-hover-text-color !default;
|
|
252
255
|
$tab-clone-item-bg-color: rgba($grey-light, .87) !default;
|
|
253
256
|
$tab-clone-text-color: lighten($brand-primary, 15%) !default;
|
|
254
257
|
|
|
255
258
|
$tab-icon-container-width: auto !default;
|
|
256
259
|
|
|
260
|
+
$tab-nav-pop-press-border: 0 !default;
|
|
257
261
|
$tab-big-nav-icon-container-size: 44px !default;
|
|
258
262
|
$tab-nrml-nav-icon-container-size: 34px !default;
|
|
259
263
|
$tab-big-nav-icon-size: 16px !default;
|
|
@@ -324,6 +328,7 @@ $tab-mob-close-icon-color: $grey-dark-font !default;
|
|
|
324
328
|
$tab-close-icon-hover-color: $grey-light-font !default;
|
|
325
329
|
$tab-close-icon-active-color: $grey-light-font !default;
|
|
326
330
|
$tab-alt-close-icon-color: $brand-primary-font !default;
|
|
331
|
+
$tab-alt-active-wrap-close-icon-color: $tab-alt-close-icon-color !default;
|
|
327
332
|
$tab-alt-active-close-icon-color: $brand-primary-font !default;
|
|
328
333
|
$tab-alt-active-hover-close-icon-color: $brand-primary-font !default;
|
|
329
334
|
$tab-pop-bg-color: $grey-dark !default;
|
|
@@ -357,8 +362,12 @@ $tab-bg-nav-focus-icon-color: $grey-dark-font !default;
|
|
|
357
362
|
$tab-pop-icon-color: $grey-dark-font !default;
|
|
358
363
|
$tab-pop-icon-hover-bg-color: $grey !default;
|
|
359
364
|
$tab-pop-icon-hover-border: 1px solid $grey !default;
|
|
365
|
+
$tab-pop-up-icon-hover-border: $tab-pop-icon-hover-border !default;
|
|
366
|
+
$tab-pop-up-down-icon-hover-border: $tab-pop-icon-hover-border !default;
|
|
360
367
|
$tab-pop-icon-focus-border: 1px solid none !default;
|
|
368
|
+
$tab-pop-up-icon-focus-border: $tab-pop-icon-focus-border !default;
|
|
361
369
|
$tab-pop-icon-active-border: 1px solid none !default;
|
|
370
|
+
$tab-pop-up-icon-active-border: $tab-pop-icon-active-border !default;
|
|
362
371
|
$tab-pop-border-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
363
372
|
$tab-bg-hover-nav-icon-color: $grey-dark-font !default;
|
|
364
373
|
|
|
@@ -369,7 +378,7 @@ $tab-pop-up-icon-transform: rotate(0deg) !default;
|
|
|
369
378
|
$tab-pop-down-icon-transform: rotate(0deg) !default;
|
|
370
379
|
$tab-alt-focused-active-wrap-focus-or-hover-color: lighten($brand-primary-font, 15%) !default;
|
|
371
380
|
$tab-alt-focused-active-wrap-focus-and-hover-color: $brand-primary-darken-25 !default;
|
|
372
|
-
$tab-even-active-item-bottom-border-color:
|
|
381
|
+
$tab-even-active-item-bottom-border-color: 0 !default;
|
|
373
382
|
$tab-fill-focused-active-wrap-focus-color: $brand-primary-darken-25 !default;
|
|
374
383
|
$tab-alt-active-wrap-hover-close-color: $brand-primary-font !default;
|
|
375
384
|
$tab-alt-pop-wrap-hover-color: $brand-primary !default;
|
|
@@ -165,6 +165,7 @@ $tab-mob-fill-wrap-padding: 0 15px !default;
|
|
|
165
165
|
$tab-bg-big-wrap-padding: 0 20px !default;
|
|
166
166
|
$tab-bg-nrml-wrap-padding: 0 15px !default;
|
|
167
167
|
$tab-item-hover-bg-color: $grey-lighter !default;
|
|
168
|
+
$tab-bg-item-wrap-hover-bg-color: $tab-item-hover-bg-color !default;
|
|
168
169
|
$tab-mob-item-hover-bg-color: initial !default;
|
|
169
170
|
$tab-pop-text-color: $grey-light-font !default;
|
|
170
171
|
$tab-alt-disable-active-item-opacity: .65 !default;
|
|
@@ -219,6 +220,7 @@ $tab-nrml-even-active-text-height: 40px !default;
|
|
|
219
220
|
$tab-fill-big-even-active-text-height: 50px !default;
|
|
220
221
|
$tab-fill-nrml-even-active-text-height: 40px !default;
|
|
221
222
|
$tab-text-color: $brand-primary !default;
|
|
223
|
+
$tab-wrap-comb-icon-color: $tab-text-color !default;
|
|
222
224
|
$tab-disable-text-color: $grey-light !default;
|
|
223
225
|
$tab-mob-text-color: $brand-primary !default;
|
|
224
226
|
$tab-active-text-color: $grey !default;
|
|
@@ -232,11 +234,13 @@ $tab-alt-active-text-color: $brand-primary-font !default;
|
|
|
232
234
|
$tab-alt-disable-active-text-color: $brand-primary-font !default;
|
|
233
235
|
$tab-alt-hover-text-color: $brand-primary-darken-25 !default;
|
|
234
236
|
$tab-alt-active-hover-text-color: $brand-primary-font !default;
|
|
237
|
+
$tab-alt-active-style-hover-icon-color: $tab-alt-active-hover-text-color !default;
|
|
235
238
|
$tab-clone-item-bg-color: $grey-white !default;
|
|
236
239
|
$tab-clone-text-color: $brand-primary !default;
|
|
237
240
|
|
|
238
241
|
$tab-icon-container-width: auto !default;
|
|
239
242
|
|
|
243
|
+
$tab-nav-pop-press-border: 0 !default;
|
|
240
244
|
$tab-big-nav-icon-container-size: 44px !default;
|
|
241
245
|
$tab-nrml-nav-icon-container-size: 34px !default;
|
|
242
246
|
$tab-big-nav-icon-size: 16px !default;
|
|
@@ -307,6 +311,7 @@ $tab-mob-close-icon-color: $grey-light !default;
|
|
|
307
311
|
$tab-close-icon-hover-color: $grey-light-font !default;
|
|
308
312
|
$tab-close-icon-active-color: $grey-light-font !default;
|
|
309
313
|
$tab-alt-close-icon-color: $grey-light !default;
|
|
314
|
+
$tab-alt-active-wrap-close-icon-color: $tab-alt-close-icon-color !default;
|
|
310
315
|
$tab-alt-active-close-icon-color: $grey-f5 !default;
|
|
311
316
|
$tab-alt-active-hover-close-icon-color: $brand-primary-font !default;
|
|
312
317
|
$tab-pop-bg-color: $grey-white !default;
|
|
@@ -340,8 +345,12 @@ $tab-bg-nav-focus-icon-color: $grey-light-font !default;
|
|
|
340
345
|
$tab-pop-icon-color: $grey-light-font !default;
|
|
341
346
|
$tab-pop-icon-hover-bg-color: $grey-e6 !default;
|
|
342
347
|
$tab-pop-icon-hover-border: 1px solid $grey-ad !default;
|
|
348
|
+
$tab-pop-up-icon-hover-border: $tab-pop-icon-hover-border !default;
|
|
349
|
+
$tab-pop-up-down-icon-hover-border: $tab-pop-icon-hover-border !default;
|
|
343
350
|
$tab-pop-icon-focus-border: 1px solid $grey-8c !default;
|
|
351
|
+
$tab-pop-up-icon-focus-border: $tab-pop-icon-focus-border !default;
|
|
344
352
|
$tab-pop-icon-active-border: 1px solid $grey-ad !default;
|
|
353
|
+
$tab-pop-up-icon-active-border: $tab-pop-icon-active-border !default;
|
|
345
354
|
$tab-pop-border-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !default;
|
|
346
355
|
$tab-bg-hover-nav-icon-color: $grey-light-font !default;
|
|
347
356
|
|
|
@@ -361,7 +370,7 @@ $tab-pop-down-icon-transform: rotate(0deg) !default;
|
|
|
361
370
|
/*! Bootstrap specific themes definition's */
|
|
362
371
|
$tab-alt-focused-active-wrap-focus-or-hover-color: $brand-primary-darken-25 !default;
|
|
363
372
|
$tab-alt-focused-active-wrap-focus-and-hover-color: $brand-primary-darken-25 !default;
|
|
364
|
-
$tab-even-active-item-bottom-border-color: $grey-dd !default;
|
|
373
|
+
$tab-even-active-item-bottom-border-color: 1px solid $grey-dd !default;
|
|
365
374
|
$tab-fill-focused-active-wrap-focus-color: $brand-primary-darken-25 !default;
|
|
366
375
|
$tab-alt-active-wrap-hover-close-color: $brand-primary-font !default;
|
|
367
376
|
$tab-alt-pop-wrap-hover-color: $brand-primary !default;
|
|
@@ -32,6 +32,10 @@ $tab-border-style: $tab-border-width Solid !default;
|
|
|
32
32
|
$tab-focus-outline: 0 !default;
|
|
33
33
|
$tab-active-focus-outline: 0 !default;
|
|
34
34
|
$tab-active-text-item-border: 0 !default;
|
|
35
|
+
$tab-pop-up-icon-hover-border: $tab-active-text-item-border !default;
|
|
36
|
+
$tab-pop-up-icon-focus-border: $tab-active-text-item-border !default;
|
|
37
|
+
$tab-pop-up-down-icon-hover-border: $tab-active-text-item-border !default;
|
|
38
|
+
$tab-pop-up-icon-active-border: $tab-active-text-item-border !default;
|
|
35
39
|
$tab-disable-active-text-item-border: 0 !default;
|
|
36
40
|
$tab-alt-active-item-border: $tab-border-style #555 !default;
|
|
37
41
|
$tab-accent-active-item-border: $tab-border-style #555 !default;
|
|
@@ -164,6 +168,7 @@ $tab-mob-fill-wrap-padding: 0 15px !default;
|
|
|
164
168
|
$tab-bg-big-wrap-padding: 0 20px !default;
|
|
165
169
|
$tab-bg-nrml-wrap-padding: 0 15px !default;
|
|
166
170
|
$tab-item-hover-bg-color: transparent !default;
|
|
171
|
+
$tab-bg-item-wrap-hover-bg-color: $tab-item-hover-bg-color !default;
|
|
167
172
|
$tab-mob-item-hover-bg-color: initial !default;
|
|
168
173
|
$tab-pop-text-color: $gray-900 !default;
|
|
169
174
|
$tab-alt-disable-active-item-opacity: .65 !default;
|
|
@@ -218,6 +223,7 @@ $tab-nrml-even-active-text-height: 40px !default;
|
|
|
218
223
|
$tab-fill-big-even-active-text-height: 50px !default;
|
|
219
224
|
$tab-fill-nrml-even-active-text-height: 40px !default;
|
|
220
225
|
$tab-text-color: $primary !default;
|
|
226
|
+
$tab-wrap-comb-icon-color: $tab-text-color !default;
|
|
221
227
|
$tab-disable-text-color: $gray-600 !default;
|
|
222
228
|
$tab-mob-text-color: #317ab9 !default;
|
|
223
229
|
$tab-active-text-color: $gray-700 !default;
|
|
@@ -229,6 +235,7 @@ $tab-alt-text-color: $primary !default;
|
|
|
229
235
|
$tab-alt-disable-text-color: $gray-600 !default;
|
|
230
236
|
$tab-alt-active-text-color: $primary-font !default;
|
|
231
237
|
$tab-alt-active-style-hover-text-color: $gray-900 !default;
|
|
238
|
+
$tab-alt-active-style-hover-icon-color: $tab-alt-active-style-hover-text-color !default;
|
|
232
239
|
$tab-alt-disable-active-text-color: $gray-600 !default;
|
|
233
240
|
$tab-alt-hover-text-color: darken($gray-600, 7.5%) !default;
|
|
234
241
|
$tab-alt-active-hover-text-color: $primary-font !default;
|
|
@@ -307,6 +314,7 @@ $tab-mob-close-icon-color: #777 !default;
|
|
|
307
314
|
$tab-close-icon-hover-color: rgba($black, .75) !default;
|
|
308
315
|
$tab-close-icon-active-color: rgba($black, .75) !default;
|
|
309
316
|
$tab-alt-close-icon-color: rgba($black, .5) !default;
|
|
317
|
+
$tab-alt-active-wrap-close-icon-color: $tab-alt-close-icon-color !default;
|
|
310
318
|
$tab-alt-text-color: $primary-font !default;
|
|
311
319
|
$tab-alt-hover-text-color: $primary-font !default;
|
|
312
320
|
$tab-alt-active-text-color: $primary-font !default;
|
|
@@ -366,7 +374,7 @@ $tab-pop-down-icon-transform: rotate(0deg) !default;
|
|
|
366
374
|
/*! Bootstrap specific themes definition's */
|
|
367
375
|
$tab-alt-focused-active-wrap-focus-or-hover-color: darken($primary, 15%) !default;
|
|
368
376
|
$tab-alt-focused-active-wrap-focus-and-hover-color: darken($primary, 15%) !default;
|
|
369
|
-
$tab-even-active-item-bottom-border-color: #ddd !default;
|
|
377
|
+
$tab-even-active-item-bottom-border-color: 1px solid #ddd !default;
|
|
370
378
|
$tab-fill-focused-active-wrap-focus-color: darken($primary, 15%) !default;
|
|
371
379
|
$tab-alt-active-wrap-hover-close-color: $primary-font !default;
|
|
372
380
|
$tab-alt-pop-wrap-hover-color: #317ab9 !default;
|