@syncfusion/ej2-navigations 21.2.8 → 22.1.34
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +29 -0
- package/dist/ej2-navigations.min.js +2 -2
- 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 +328 -107
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +332 -107
- 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 +4 -2
- package/src/accordion/accordion.d.ts +4 -2
- package/src/accordion/accordion.js +1 -1
- package/src/breadcrumb/breadcrumb-model.d.ts +4 -2
- package/src/breadcrumb/breadcrumb.d.ts +4 -2
- package/src/carousel/carousel-model.d.ts +37 -8
- package/src/carousel/carousel.d.ts +69 -6
- package/src/carousel/carousel.js +287 -89
- package/src/common/menu-base-model.d.ts +2 -1
- package/src/common/menu-base.d.ts +2 -1
- package/src/common/menu-base.js +9 -1
- package/src/menu/menu-model.d.ts +3 -2
- package/src/menu/menu.d.ts +2 -1
- package/src/menu/menu.js +1 -1
- package/src/sidebar/sidebar.d.ts +12 -26
- package/src/tab/tab-model.d.ts +3 -2
- package/src/tab/tab.d.ts +3 -2
- package/src/toolbar/toolbar-model.d.ts +3 -1
- package/src/toolbar/toolbar.d.ts +5 -1
- package/src/toolbar/toolbar.js +33 -14
- package/src/treeview/treeview-model.d.ts +4 -1
- package/src/treeview/treeview.d.ts +17 -31
- package/src/treeview/treeview.js +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +3 -1
- package/styles/accordion/_bootstrap-definition.scss +3 -1
- package/styles/accordion/_bootstrap4-definition.scss +2 -0
- package/styles/accordion/_bootstrap5-definition.scss +3 -1
- package/styles/accordion/_fabric-dark-definition.scss +2 -0
- package/styles/accordion/_fabric-definition.scss +2 -0
- package/styles/accordion/_fluent-definition.scss +2 -0
- package/styles/accordion/_fusionnew-definition.scss +2 -0
- package/styles/accordion/_highcontrast-definition.scss +2 -0
- package/styles/accordion/_highcontrast-light-definition.scss +2 -0
- package/styles/accordion/_layout.scss +9 -0
- package/styles/accordion/_material-dark-definition.scss +2 -0
- package/styles/accordion/_material-definition.scss +2 -0
- package/styles/accordion/_material3-dark-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +182 -0
- package/styles/accordion/_tailwind-definition.scss +2 -0
- package/styles/accordion/_theme.scss +9 -0
- package/styles/accordion/bootstrap-dark.css +11 -1
- package/styles/accordion/bootstrap.css +11 -1
- package/styles/accordion/bootstrap4.css +10 -0
- package/styles/accordion/bootstrap5-dark.css +11 -1
- package/styles/accordion/bootstrap5.css +11 -1
- package/styles/accordion/fabric-dark.css +10 -0
- package/styles/accordion/fabric.css +10 -0
- package/styles/accordion/fluent-dark.css +10 -0
- package/styles/accordion/fluent.css +10 -0
- package/styles/accordion/highcontrast-light.css +10 -0
- package/styles/accordion/highcontrast.css +10 -0
- package/styles/accordion/icons/_material3-dark.scss +1 -0
- package/styles/accordion/material-dark.css +10 -0
- package/styles/accordion/material.css +10 -0
- package/styles/accordion/material3-dark.css +596 -0
- package/styles/accordion/material3-dark.scss +5 -0
- package/styles/accordion/material3.css +652 -0
- package/styles/accordion/material3.scss +5 -0
- package/styles/accordion/tailwind-dark.css +10 -0
- package/styles/accordion/tailwind.css +10 -0
- package/styles/appbar/_layout.scss +6 -1
- package/styles/appbar/_material3-dark-definition.scss +1 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_theme.scss +12 -2
- package/styles/appbar/bootstrap-dark.css +7 -3
- package/styles/appbar/bootstrap.css +7 -3
- package/styles/appbar/bootstrap4.css +7 -3
- package/styles/appbar/bootstrap5-dark.css +7 -3
- package/styles/appbar/bootstrap5.css +7 -3
- package/styles/appbar/fabric-dark.css +7 -3
- package/styles/appbar/fabric.css +7 -3
- package/styles/appbar/fluent-dark.css +7 -3
- package/styles/appbar/fluent.css +7 -3
- package/styles/appbar/highcontrast-light.css +7 -3
- package/styles/appbar/highcontrast.css +7 -3
- package/styles/appbar/material-dark.css +7 -3
- package/styles/appbar/material.css +7 -3
- package/styles/appbar/material3-dark.css +307 -0
- package/styles/appbar/material3-dark.scss +4 -0
- package/styles/appbar/material3.css +363 -0
- package/styles/appbar/material3.scss +4 -0
- package/styles/appbar/tailwind-dark.css +7 -3
- package/styles/appbar/tailwind.css +7 -3
- package/styles/bootstrap-dark.css +185 -126
- package/styles/bootstrap.css +185 -126
- package/styles/bootstrap4.css +183 -124
- package/styles/bootstrap5-dark.css +179 -120
- package/styles/bootstrap5.css +179 -120
- package/styles/breadcrumb/_material3-dark-definition.scss +1 -0
- package/styles/breadcrumb/_material3-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +13 -11
- package/styles/breadcrumb/bootstrap-dark.css +9 -9
- package/styles/breadcrumb/bootstrap.css +9 -9
- package/styles/breadcrumb/bootstrap4.css +9 -9
- package/styles/breadcrumb/bootstrap5-dark.css +8 -8
- package/styles/breadcrumb/bootstrap5.css +8 -8
- package/styles/breadcrumb/fabric-dark.css +7 -7
- package/styles/breadcrumb/fabric.css +7 -7
- package/styles/breadcrumb/fluent-dark.css +5 -5
- package/styles/breadcrumb/fluent.css +5 -5
- package/styles/breadcrumb/highcontrast-light.css +7 -7
- package/styles/breadcrumb/highcontrast.css +7 -7
- package/styles/breadcrumb/icons/_material3-dark.scss +1 -0
- package/styles/breadcrumb/icons/_material3.scss +0 -11
- package/styles/breadcrumb/material-dark.css +9 -9
- package/styles/breadcrumb/material.css +9 -9
- package/styles/breadcrumb/material3-dark.css +424 -0
- package/styles/breadcrumb/material3-dark.scss +5 -0
- package/styles/breadcrumb/material3.css +480 -0
- package/styles/breadcrumb/material3.scss +5 -0
- package/styles/breadcrumb/tailwind-dark.css +8 -8
- package/styles/breadcrumb/tailwind.css +8 -8
- package/styles/carousel/_bootstrap-dark-definition.scss +5 -0
- package/styles/carousel/_bootstrap-definition.scss +5 -0
- package/styles/carousel/_bootstrap4-definition.scss +5 -0
- package/styles/carousel/_bootstrap5-definition.scss +5 -0
- package/styles/carousel/_fabric-dark-definition.scss +5 -0
- package/styles/carousel/_fabric-definition.scss +5 -0
- package/styles/carousel/_fluent-definition.scss +5 -0
- package/styles/carousel/_fusionnew-definition.scss +5 -0
- package/styles/carousel/_highcontrast-definition.scss +5 -0
- package/styles/carousel/_highcontrast-light-definition.scss +5 -0
- package/styles/carousel/_layout.scss +96 -67
- package/styles/carousel/_material-dark-definition.scss +5 -0
- package/styles/carousel/_material-definition.scss +5 -0
- package/styles/carousel/_material3-dark-definition.scss +1 -0
- package/styles/carousel/_material3-definition.scss +28 -0
- package/styles/carousel/_tailwind-definition.scss +5 -0
- package/styles/carousel/_theme.scss +49 -20
- package/styles/carousel/bootstrap-dark.css +101 -62
- package/styles/carousel/bootstrap.css +101 -62
- package/styles/carousel/bootstrap4.css +101 -62
- package/styles/carousel/bootstrap5-dark.css +101 -62
- package/styles/carousel/bootstrap5.css +101 -62
- package/styles/carousel/fabric-dark.css +101 -62
- package/styles/carousel/fabric.css +101 -62
- package/styles/carousel/fluent-dark.css +101 -62
- package/styles/carousel/fluent.css +101 -62
- package/styles/carousel/highcontrast-light.css +101 -62
- package/styles/carousel/highcontrast.css +101 -62
- package/styles/carousel/icons/_material3-dark.scss +1 -0
- package/styles/carousel/material-dark.css +101 -62
- package/styles/carousel/material.css +101 -62
- package/styles/carousel/material3-dark.css +359 -0
- package/styles/carousel/material3-dark.scss +6 -0
- package/styles/carousel/material3.css +415 -0
- package/styles/carousel/material3.scss +6 -0
- package/styles/carousel/tailwind-dark.css +101 -62
- package/styles/carousel/tailwind.css +101 -62
- package/styles/context-menu/_layout.scss +2 -2
- package/styles/context-menu/_material3-dark-definition.scss +1 -0
- package/styles/context-menu/_material3-definition.scss +52 -0
- package/styles/context-menu/_theme.scss +6 -1
- package/styles/context-menu/icons/_material3-dark.scss +1 -0
- package/styles/context-menu/material3-dark.css +435 -0
- package/styles/context-menu/material3-dark.scss +8 -0
- package/styles/context-menu/material3.css +491 -0
- package/styles/context-menu/material3.scss +8 -0
- package/styles/fabric-dark.css +186 -127
- package/styles/fabric.css +185 -126
- package/styles/fluent-dark.css +179 -120
- package/styles/fluent.css +179 -120
- package/styles/h-scroll/_material3-dark-definition.scss +1 -0
- package/styles/h-scroll/_material3-definition.scss +83 -0
- package/styles/h-scroll/icons/_material3-dark.scss +1 -0
- package/styles/h-scroll/material3-dark.css +336 -0
- package/styles/h-scroll/material3-dark.scss +5 -0
- package/styles/h-scroll/material3.css +392 -0
- package/styles/h-scroll/material3.scss +5 -0
- package/styles/highcontrast-light.css +178 -119
- package/styles/highcontrast.css +182 -123
- package/styles/material-dark.css +189 -130
- package/styles/material.css +188 -129
- package/styles/material3-dark.css +10343 -0
- package/styles/material3-dark.scss +15 -0
- package/styles/material3.css +10399 -0
- package/styles/material3.scss +15 -0
- package/styles/menu/_layout.scss +7 -0
- package/styles/menu/_material3-dark-definition.scss +1 -0
- package/styles/menu/_material3-definition.scss +67 -0
- package/styles/menu/_theme.scss +5 -2
- package/styles/menu/bootstrap-dark.css +4 -0
- package/styles/menu/bootstrap.css +4 -0
- package/styles/menu/bootstrap4.css +4 -0
- package/styles/menu/bootstrap5-dark.css +4 -0
- package/styles/menu/bootstrap5.css +4 -0
- package/styles/menu/fabric-dark.css +4 -0
- package/styles/menu/fabric.css +4 -0
- package/styles/menu/fluent-dark.css +4 -0
- package/styles/menu/fluent.css +4 -0
- package/styles/menu/highcontrast-light.css +4 -0
- package/styles/menu/highcontrast.css +4 -0
- package/styles/menu/icons/_material3-dark.scss +1 -0
- package/styles/menu/material-dark.css +4 -0
- package/styles/menu/material.css +4 -0
- package/styles/menu/material3-dark.css +1162 -0
- package/styles/menu/material3-dark.scss +9 -0
- package/styles/menu/material3.css +1218 -0
- package/styles/menu/material3.scss +9 -0
- package/styles/menu/tailwind-dark.css +4 -0
- package/styles/menu/tailwind.css +4 -0
- package/styles/pager/_bootstrap-dark-definition.scss +9 -5
- package/styles/pager/_bootstrap-definition.scss +9 -5
- package/styles/pager/_bootstrap4-definition.scss +8 -4
- package/styles/pager/_bootstrap5-definition.scss +4 -0
- package/styles/pager/_fabric-dark-definition.scss +10 -6
- package/styles/pager/_fabric-definition.scss +10 -6
- package/styles/pager/_fluent-definition.scss +8 -4
- package/styles/pager/_fusionnew-definition.scss +4 -0
- package/styles/pager/_highcontrast-definition.scss +8 -4
- package/styles/pager/_highcontrast-light-definition.scss +4 -0
- package/styles/pager/_layout.scss +63 -48
- package/styles/pager/_material-dark-definition.scss +12 -8
- package/styles/pager/_material-definition.scss +11 -7
- package/styles/pager/_material3-dark-definition.scss +1 -0
- package/styles/pager/_material3-definition.scss +150 -0
- package/styles/pager/_tailwind-definition.scss +9 -5
- package/styles/pager/_theme.scss +12 -5
- package/styles/pager/bootstrap-dark.css +15 -43
- package/styles/pager/bootstrap.css +15 -43
- package/styles/pager/bootstrap4.css +14 -42
- package/styles/pager/bootstrap5-dark.css +10 -38
- package/styles/pager/bootstrap5.css +10 -38
- package/styles/pager/fabric-dark.css +17 -45
- package/styles/pager/fabric.css +16 -44
- package/styles/pager/fluent-dark.css +14 -42
- package/styles/pager/fluent.css +14 -42
- package/styles/pager/highcontrast-light.css +10 -38
- package/styles/pager/highcontrast.css +14 -42
- package/styles/pager/icons/_material3-dark.scss +1 -0
- package/styles/pager/icons/_material3.scss +4 -4
- package/styles/pager/material-dark.css +18 -46
- package/styles/pager/material.css +17 -45
- package/styles/pager/material3-dark.css +765 -0
- package/styles/pager/material3-dark.scss +5 -0
- package/styles/pager/material3.css +821 -0
- package/styles/pager/material3.scss +5 -0
- package/styles/pager/tailwind-dark.css +15 -43
- package/styles/pager/tailwind.css +15 -43
- package/styles/sidebar/_material3-dark-definition.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +7 -0
- package/styles/sidebar/material3-dark.css +204 -0
- package/styles/sidebar/material3-dark.scss +4 -0
- package/styles/sidebar/material3.css +260 -0
- package/styles/sidebar/material3.scss +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +4 -0
- package/styles/tab/_bootstrap-definition.scss +4 -0
- package/styles/tab/_bootstrap4-definition.scss +4 -0
- package/styles/tab/_bootstrap5-definition.scss +4 -0
- package/styles/tab/_fabric-dark-definition.scss +4 -0
- package/styles/tab/_fabric-definition.scss +4 -0
- package/styles/tab/_fluent-definition.scss +4 -0
- package/styles/tab/_fusionnew-definition.scss +4 -0
- package/styles/tab/_highcontrast-definition.scss +4 -0
- package/styles/tab/_highcontrast-light-definition.scss +4 -0
- package/styles/tab/_layout.scss +37 -13
- package/styles/tab/_material-dark-definition.scss +4 -0
- package/styles/tab/_material-definition.scss +4 -0
- package/styles/tab/_material3-dark-definition.scss +1 -0
- package/styles/tab/_material3-definition.scss +661 -0
- package/styles/tab/_tailwind-definition.scss +4 -0
- package/styles/tab/_theme.scss +44 -1
- package/styles/tab/bootstrap-dark.css +30 -7
- package/styles/tab/bootstrap.css +30 -7
- package/styles/tab/bootstrap4.css +30 -7
- package/styles/tab/bootstrap5-dark.css +30 -7
- package/styles/tab/bootstrap5.css +30 -7
- package/styles/tab/fabric-dark.css +30 -7
- package/styles/tab/fabric.css +30 -7
- package/styles/tab/fluent-dark.css +30 -7
- package/styles/tab/fluent.css +30 -7
- package/styles/tab/highcontrast-light.css +30 -7
- package/styles/tab/highcontrast.css +30 -7
- package/styles/tab/icons/_material3-dark.scss +1 -0
- package/styles/tab/material-dark.css +30 -7
- package/styles/tab/material.css +30 -7
- package/styles/tab/material3-dark.css +4109 -0
- package/styles/tab/material3-dark.scss +6 -0
- package/styles/tab/material3.css +4165 -0
- package/styles/tab/material3.scss +6 -0
- package/styles/tab/tailwind-dark.css +29 -6
- package/styles/tab/tailwind.css +29 -6
- package/styles/tailwind-dark.css +185 -126
- package/styles/tailwind.css +185 -126
- package/styles/toolbar/_fabric-dark-definition.scss +3 -3
- package/styles/toolbar/_fabric-definition.scss +3 -3
- package/styles/toolbar/_highcontrast-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +1 -1
- package/styles/toolbar/_layout.scss +8 -0
- package/styles/toolbar/_material-dark-definition.scss +3 -3
- package/styles/toolbar/_material-definition.scss +3 -3
- package/styles/toolbar/_material3-dark-definition.scss +1 -0
- package/styles/toolbar/_material3-definition.scss +220 -0
- package/styles/toolbar/_tailwind-definition.scss +3 -3
- package/styles/toolbar/_theme.scss +2 -1
- package/styles/toolbar/bootstrap-dark.css +8 -1
- package/styles/toolbar/bootstrap.css +8 -1
- package/styles/toolbar/bootstrap4.css +8 -1
- package/styles/toolbar/bootstrap5-dark.css +8 -1
- package/styles/toolbar/bootstrap5.css +8 -1
- package/styles/toolbar/fabric-dark.css +10 -3
- package/styles/toolbar/fabric.css +10 -3
- package/styles/toolbar/fluent-dark.css +8 -1
- package/styles/toolbar/fluent.css +8 -1
- package/styles/toolbar/highcontrast-light.css +9 -2
- package/styles/toolbar/highcontrast.css +9 -2
- package/styles/toolbar/icons/_material3-dark.scss +1 -0
- package/styles/toolbar/material-dark.css +10 -3
- package/styles/toolbar/material.css +10 -3
- package/styles/toolbar/material3-dark.css +1145 -0
- package/styles/toolbar/material3-dark.scss +9 -0
- package/styles/toolbar/material3.css +1201 -0
- package/styles/toolbar/material3.scss +9 -0
- package/styles/toolbar/tailwind-dark.css +11 -4
- package/styles/toolbar/tailwind.css +11 -4
- package/styles/treeview/_layout.scss +15 -2
- package/styles/treeview/_material3-dark-definition.scss +1 -0
- package/styles/treeview/_material3-definition.scss +121 -0
- package/styles/treeview/icons/_material3-dark.scss +1 -0
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/material3-dark.css +903 -0
- package/styles/treeview/material3-dark.scss +7 -0
- package/styles/treeview/material3.css +959 -0
- package/styles/treeview/material3.scss +7 -0
- package/styles/v-scroll/_material3-dark-definition.scss +1 -0
- package/styles/v-scroll/_material3-definition.scss +49 -0
- package/styles/v-scroll/icons/_material3-dark.scss +1 -0
- package/styles/v-scroll/material3-dark.css +258 -0
- package/styles/v-scroll/material3-dark.scss +5 -0
- package/styles/v-scroll/material3.css +314 -0
- package/styles/v-scroll/material3.scss +5 -0
package/styles/tailwind-dark.css
CHANGED
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
}
|
|
114
114
|
.e-bigger .e-pager .e-pagerconstant,
|
|
115
115
|
.e-pager.e-bigger .e-pagerconstant {
|
|
116
|
-
margin-bottom:
|
|
116
|
+
margin-bottom: 1px;
|
|
117
117
|
margin-left: 16px;
|
|
118
118
|
line-height: 22px;
|
|
119
119
|
}
|
|
@@ -207,33 +207,11 @@
|
|
|
207
207
|
border-radius: 0;
|
|
208
208
|
padding: 7px 14px 6.5px;
|
|
209
209
|
}
|
|
210
|
-
.e-bigger .e-pager.e-rtl .e-spacing, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-
|
|
211
|
-
.e-pager.e-bigger.e-rtl .e-spacing,
|
|
212
|
-
.e-pager.e-bigger.e-rtl .e-numericitem
|
|
213
|
-
.e-pager.e-bigger.e-rtl .e-
|
|
214
|
-
|
|
215
|
-
padding: 7px 14px;
|
|
216
|
-
}
|
|
217
|
-
.e-bigger .e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
218
|
-
.e-pager.e-bigger .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
219
|
-
padding: 7px 14px 6.5px;
|
|
220
|
-
}
|
|
221
|
-
.e-bigger .e-pager.e-rtl, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-currentitem,
|
|
222
|
-
.e-pager.e-bigger.e-rtl,
|
|
223
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover,
|
|
224
|
-
.e-pager.e-bigger.e-rtl .e-currentitem {
|
|
225
|
-
margin: 0;
|
|
226
|
-
padding: 7px 14px 7px 14px;
|
|
227
|
-
}
|
|
228
|
-
.e-bigger .e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
229
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
230
|
-
padding: 7px 14px 7px 14px;
|
|
231
|
-
}
|
|
232
|
-
.e-bigger .e-pager.e-rtl .e-pp, .e-bigger .e-pager.e-rtl .e-np, .e-bigger .e-pager.e-rtl .e-pp:hover, .e-bigger .e-pager.e-rtl .e-np:hover,
|
|
233
|
-
.e-pager.e-bigger.e-rtl .e-pp,
|
|
234
|
-
.e-pager.e-bigger.e-rtl .e-np,
|
|
235
|
-
.e-pager.e-bigger.e-rtl .e-pp:hover,
|
|
236
|
-
.e-pager.e-bigger.e-rtl .e-np:hover {
|
|
210
|
+
.e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem:hover,
|
|
211
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem,
|
|
212
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem,
|
|
213
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem:hover,
|
|
214
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem:hover {
|
|
237
215
|
font-size: 12px;
|
|
238
216
|
margin-top: 0;
|
|
239
217
|
padding: 7px 12.6px;
|
|
@@ -307,6 +285,9 @@
|
|
|
307
285
|
.e-pager [class^=e-] {
|
|
308
286
|
box-sizing: border-box;
|
|
309
287
|
}
|
|
288
|
+
.e-pager .e-pager-default.e-hide {
|
|
289
|
+
display: none;
|
|
290
|
+
}
|
|
310
291
|
.e-pager div.e-parentmsgbar {
|
|
311
292
|
float: right;
|
|
312
293
|
padding-bottom: 0;
|
|
@@ -322,7 +303,7 @@
|
|
|
322
303
|
height: 30px;
|
|
323
304
|
margin-left: 10px;
|
|
324
305
|
margin-right: 8px;
|
|
325
|
-
margin-top: -
|
|
306
|
+
margin-top: -18px;
|
|
326
307
|
overflow: unset;
|
|
327
308
|
vertical-align: middle;
|
|
328
309
|
width: 90px;
|
|
@@ -330,7 +311,7 @@
|
|
|
330
311
|
.e-pager .e-pagerconstant {
|
|
331
312
|
display: inline-block;
|
|
332
313
|
line-height: 18px;
|
|
333
|
-
margin: 6px 0
|
|
314
|
+
margin: 6px 0 4px 8px;
|
|
334
315
|
overflow: hidden;
|
|
335
316
|
width: auto;
|
|
336
317
|
}
|
|
@@ -382,9 +363,6 @@
|
|
|
382
363
|
padding: 4.5px 11px 7px 11px;
|
|
383
364
|
text-decoration: none;
|
|
384
365
|
}
|
|
385
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
386
|
-
padding: 4.5px 11px 7px 11px;
|
|
387
|
-
}
|
|
388
366
|
.e-pager .e-currentitem {
|
|
389
367
|
font-style: normal;
|
|
390
368
|
font-variant: normal;
|
|
@@ -528,7 +506,6 @@
|
|
|
528
506
|
padding-right: 0;
|
|
529
507
|
padding-top: 0;
|
|
530
508
|
text-align: center;
|
|
531
|
-
vertical-align: top;
|
|
532
509
|
width: calc(60% - 48px);
|
|
533
510
|
}
|
|
534
511
|
.e-pager .e-pagesizes {
|
|
@@ -591,12 +568,13 @@
|
|
|
591
568
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
592
569
|
float: left;
|
|
593
570
|
margin-left: 6px;
|
|
571
|
+
padding-top: 6px;
|
|
594
572
|
}
|
|
595
573
|
.e-pager.e-rtl .e-pagerdropdown {
|
|
596
|
-
margin: -
|
|
574
|
+
margin: -18px 16px 0 0;
|
|
597
575
|
}
|
|
598
576
|
.e-pager.e-rtl .e-pagerconstant {
|
|
599
|
-
margin: 6px 8px
|
|
577
|
+
margin: 6px 8px 3px 8px;
|
|
600
578
|
}
|
|
601
579
|
.e-pager.e-rtl .e-pagerexternalmsg {
|
|
602
580
|
float: none;
|
|
@@ -649,7 +627,7 @@
|
|
|
649
627
|
border-radius: 0 4px 4px 0;
|
|
650
628
|
}
|
|
651
629
|
.e-pager.e-rtl .e-lastpage:hover {
|
|
652
|
-
border-radius: 4px
|
|
630
|
+
border-radius: 0 4px 4px 0;
|
|
653
631
|
}
|
|
654
632
|
.e-pager.e-rtl .e-numericcontainer {
|
|
655
633
|
float: none;
|
|
@@ -669,9 +647,6 @@
|
|
|
669
647
|
margin: 0;
|
|
670
648
|
padding: 4.5px 11px 7px 11px;
|
|
671
649
|
}
|
|
672
|
-
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
673
|
-
padding: 4.5px 11px 7px 11px;
|
|
674
|
-
}
|
|
675
650
|
.e-pager.e-rtl .e-pp, .e-pager.e-rtl .e-np, .e-pager.e-rtl .e-pp:hover, .e-pager.e-rtl .e-np:hover {
|
|
676
651
|
margin-top: 0;
|
|
677
652
|
padding: 4.5px 8.7px 5px 8.7px;
|
|
@@ -744,9 +719,6 @@
|
|
|
744
719
|
color: #fff;
|
|
745
720
|
opacity: 1;
|
|
746
721
|
}
|
|
747
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
748
|
-
border-left: 0 solid #4b5563;
|
|
749
|
-
}
|
|
750
722
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
751
723
|
background-color: #4b5563;
|
|
752
724
|
opacity: 1;
|
|
@@ -1344,6 +1316,12 @@
|
|
|
1344
1316
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1345
1317
|
margin-left: 10px;
|
|
1346
1318
|
}
|
|
1319
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1320
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
1321
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1322
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1323
|
+
margin-right: 10px;
|
|
1324
|
+
}
|
|
1347
1325
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
1348
1326
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1349
1327
|
margin-right: 10px;
|
|
@@ -2259,7 +2237,7 @@
|
|
|
2259
2237
|
}
|
|
2260
2238
|
.e-toolbar .e-hor-nav:hover {
|
|
2261
2239
|
background: #4b5563;
|
|
2262
|
-
border-left:
|
|
2240
|
+
border-left: 1px solid #4b5563;
|
|
2263
2241
|
color: #9ca3af;
|
|
2264
2242
|
}
|
|
2265
2243
|
.e-toolbar .e-hor-nav:hover .e-icons {
|
|
@@ -2268,7 +2246,7 @@
|
|
|
2268
2246
|
.e-toolbar .e-hor-nav:hover:not(.e-nav-active) {
|
|
2269
2247
|
border-color: #4b5563;
|
|
2270
2248
|
border-style: solid;
|
|
2271
|
-
border-width: 0;
|
|
2249
|
+
border-width: 0 0 0 1px;
|
|
2272
2250
|
}
|
|
2273
2251
|
.e-toolbar .e-hor-nav:hover:active {
|
|
2274
2252
|
background: #4b5563;
|
|
@@ -2384,12 +2362,13 @@
|
|
|
2384
2362
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
2385
2363
|
background: #374151;
|
|
2386
2364
|
border: solid #4b5563;
|
|
2387
|
-
border-
|
|
2388
|
-
border-width: 0 0 0 0;
|
|
2365
|
+
border-width: 0 1px 0 0;
|
|
2389
2366
|
}
|
|
2390
2367
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
2391
2368
|
background: #4b5563;
|
|
2392
2369
|
color: #9ca3af;
|
|
2370
|
+
border: solid #4b5563;
|
|
2371
|
+
border-width: 0 1px 0 0;
|
|
2393
2372
|
}
|
|
2394
2373
|
|
|
2395
2374
|
/*! component's theme wise override tailwind-definitions and variables */
|
|
@@ -2417,6 +2396,7 @@
|
|
|
2417
2396
|
}
|
|
2418
2397
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header,
|
|
2419
2398
|
.e-accordion.e-bigger .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2399
|
+
box-shadow: none;
|
|
2420
2400
|
padding: 12px 0 12px 28px;
|
|
2421
2401
|
}
|
|
2422
2402
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content,
|
|
@@ -2511,6 +2491,9 @@
|
|
|
2511
2491
|
.e-accordion .e-acrdn-item.e-select.e-selected:last-child {
|
|
2512
2492
|
border-bottom: 1px solid #4b5563;
|
|
2513
2493
|
}
|
|
2494
|
+
.e-accordion .e-acrdn-item:first-child {
|
|
2495
|
+
margin-top: 0;
|
|
2496
|
+
}
|
|
2514
2497
|
.e-accordion .e-acrdn-item:not(.e-select) + .e-acrdn-item:not(.e-select) {
|
|
2515
2498
|
margin-bottom: 0;
|
|
2516
2499
|
margin-top: 0;
|
|
@@ -2600,6 +2583,9 @@
|
|
|
2600
2583
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2601
2584
|
padding: 8px 0 8px 26px;
|
|
2602
2585
|
}
|
|
2586
|
+
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header:focus {
|
|
2587
|
+
box-shadow: none;
|
|
2588
|
+
}
|
|
2603
2589
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content {
|
|
2604
2590
|
padding: 0;
|
|
2605
2591
|
}
|
|
@@ -2778,6 +2764,7 @@
|
|
|
2778
2764
|
color: #fff;
|
|
2779
2765
|
background: none;
|
|
2780
2766
|
border-top: 0;
|
|
2767
|
+
border-bottom: 0;
|
|
2781
2768
|
}
|
|
2782
2769
|
.e-accordion .e-acrdn-item .e-acrdn-header .e-acrdn-header-content {
|
|
2783
2770
|
color: #fff;
|
|
@@ -2881,6 +2868,8 @@
|
|
|
2881
2868
|
}
|
|
2882
2869
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2883
2870
|
box-shadow: none;
|
|
2871
|
+
position: relative;
|
|
2872
|
+
z-index: 2;
|
|
2884
2873
|
}
|
|
2885
2874
|
.e-accordion .e-acrdn-item.e-selected + .e-selected {
|
|
2886
2875
|
border-color: #4b5563;
|
|
@@ -2955,6 +2944,9 @@
|
|
|
2955
2944
|
position: relative;
|
|
2956
2945
|
width: 100%;
|
|
2957
2946
|
}
|
|
2947
|
+
.e-carousel .e-carousel-items.e-swipe-start {
|
|
2948
|
+
cursor: pointer;
|
|
2949
|
+
}
|
|
2958
2950
|
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2959
2951
|
padding: 0 100px;
|
|
2960
2952
|
}
|
|
@@ -2968,7 +2960,7 @@
|
|
|
2968
2960
|
padding: 0 50px;
|
|
2969
2961
|
}
|
|
2970
2962
|
}
|
|
2971
|
-
.e-carousel
|
|
2963
|
+
.e-carousel .e-carousel-items {
|
|
2972
2964
|
width: calc(var(--carousel-items-count) * 100%);
|
|
2973
2965
|
display: -ms-flexbox;
|
|
2974
2966
|
display: flex;
|
|
@@ -2978,63 +2970,35 @@
|
|
|
2978
2970
|
transition-duration: 0.6s;
|
|
2979
2971
|
transition-timing-function: ease-in-out;
|
|
2980
2972
|
}
|
|
2981
|
-
.e-carousel.e-
|
|
2973
|
+
.e-carousel .e-carousel-items .e-carousel-item {
|
|
2982
2974
|
height: 100%;
|
|
2983
2975
|
overflow: hidden;
|
|
2984
2976
|
padding: 0;
|
|
2985
2977
|
position: relative;
|
|
2986
2978
|
width: calc(100% / var(--carousel-items-count));
|
|
2987
2979
|
}
|
|
2988
|
-
.e-carousel.e-blazor-carousel
|
|
2989
|
-
transform: translateX(calc(-100% / var(--carousel-items-count) *
|
|
2990
|
-
transition: transform
|
|
2980
|
+
.e-carousel.e-blazor-carousel .e-carousel-items {
|
|
2981
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2982
|
+
transition: transform;
|
|
2991
2983
|
}
|
|
2992
|
-
.e-carousel.e-blazor-carousel.e-
|
|
2993
|
-
transform: translateX(calc(100% / var(--carousel-items-count) *
|
|
2994
|
-
transition: transform
|
|
2984
|
+
.e-carousel.e-blazor-carousel.e-rtl .e-carousel-items {
|
|
2985
|
+
transform: translateX(calc(100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2986
|
+
transition: transform;
|
|
2995
2987
|
}
|
|
2996
|
-
.e-carousel.e-carousel-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
float: left;
|
|
3000
|
-
height: 100%;
|
|
3001
|
-
margin-right: -100%;
|
|
3002
|
-
position: relative;
|
|
3003
|
-
transition: transform 0.6s ease-in-out;
|
|
3004
|
-
width: 100%;
|
|
3005
|
-
}
|
|
3006
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
3007
|
-
display: block;
|
|
3008
|
-
}
|
|
3009
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next:not(.e-transition-start), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-end {
|
|
3010
|
-
transform: translateX(100%);
|
|
3011
|
-
}
|
|
3012
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev:not(.e-transition-end), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-start {
|
|
3013
|
-
transform: translateX(-100%);
|
|
2988
|
+
.e-carousel.e-carousel-fade-animation .e-carousel-items.e-fade-in-out {
|
|
2989
|
+
transition-property: none;
|
|
2990
|
+
animation: fade-in-out 0.6s ease-in-out;
|
|
3014
2991
|
}
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
position: relative;
|
|
3023
|
-
transition: opacity 0.6s ease-in-out;
|
|
3024
|
-
width: 100%;
|
|
3025
|
-
z-index: 0;
|
|
3026
|
-
}
|
|
3027
|
-
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
3028
|
-
opacity: 1;
|
|
3029
|
-
z-index: 1;
|
|
3030
|
-
}
|
|
3031
|
-
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
3032
|
-
display: none;
|
|
3033
|
-
height: 100%;
|
|
3034
|
-
width: 100%;
|
|
2992
|
+
@keyframes fade-in-out {
|
|
2993
|
+
0% {
|
|
2994
|
+
opacity: 0;
|
|
2995
|
+
}
|
|
2996
|
+
100% {
|
|
2997
|
+
opacity: 1;
|
|
2998
|
+
}
|
|
3035
2999
|
}
|
|
3036
|
-
.e-carousel.e-carousel-animation
|
|
3037
|
-
|
|
3000
|
+
.e-carousel.e-carousel-slide-animation .e-carousel-items.e-slide {
|
|
3001
|
+
transition-duration: 0.6s;
|
|
3038
3002
|
}
|
|
3039
3003
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
3040
3004
|
display: block;
|
|
@@ -3042,9 +3006,7 @@
|
|
|
3042
3006
|
left: 0;
|
|
3043
3007
|
opacity: 0;
|
|
3044
3008
|
pointer-events: none;
|
|
3045
|
-
position: absolute;
|
|
3046
3009
|
top: 0;
|
|
3047
|
-
width: 100%;
|
|
3048
3010
|
}
|
|
3049
3011
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
3050
3012
|
opacity: 1;
|
|
@@ -3106,7 +3068,7 @@
|
|
|
3106
3068
|
width: 100%;
|
|
3107
3069
|
z-index: 1;
|
|
3108
3070
|
}
|
|
3109
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars {
|
|
3071
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars {
|
|
3110
3072
|
display: -ms-flexbox;
|
|
3111
3073
|
display: flex;
|
|
3112
3074
|
-ms-flex-wrap: wrap;
|
|
@@ -3115,10 +3077,10 @@
|
|
|
3115
3077
|
justify-content: center;
|
|
3116
3078
|
pointer-events: auto;
|
|
3117
3079
|
}
|
|
3118
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar {
|
|
3080
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar {
|
|
3119
3081
|
padding: 0;
|
|
3120
3082
|
}
|
|
3121
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
3083
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
3122
3084
|
-ms-flex-align: center;
|
|
3123
3085
|
align-items: center;
|
|
3124
3086
|
display: -ms-flexbox;
|
|
@@ -3127,7 +3089,7 @@
|
|
|
3127
3089
|
justify-content: center;
|
|
3128
3090
|
padding: 6px;
|
|
3129
3091
|
}
|
|
3130
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
3092
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
3131
3093
|
border: 1px solid rgba(255, 255, 255, 0.4);
|
|
3132
3094
|
border-radius: 50%;
|
|
3133
3095
|
height: 12px;
|
|
@@ -3136,9 +3098,60 @@
|
|
|
3136
3098
|
transition-timing-function: ease-in-out;
|
|
3137
3099
|
width: 12px;
|
|
3138
3100
|
}
|
|
3139
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3101
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3140
3102
|
display: none;
|
|
3141
3103
|
}
|
|
3104
|
+
.e-carousel .e-carousel-indicators.e-dynamic {
|
|
3105
|
+
min-height: 36px;
|
|
3106
|
+
}
|
|
3107
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars {
|
|
3108
|
+
display: block;
|
|
3109
|
+
overflow: hidden;
|
|
3110
|
+
transition: opacity 0.6s ease-in-out;
|
|
3111
|
+
white-space: nowrap;
|
|
3112
|
+
width: 80px;
|
|
3113
|
+
}
|
|
3114
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3115
|
+
border-radius: 50%;
|
|
3116
|
+
display: inline-block;
|
|
3117
|
+
height: 8px;
|
|
3118
|
+
left: calc(32px - 16px * var(--carousel-items-current));
|
|
3119
|
+
margin: 0 4px;
|
|
3120
|
+
opacity: 1;
|
|
3121
|
+
position: relative;
|
|
3122
|
+
transform: scale(0.33);
|
|
3123
|
+
transition-duration: 0.6s;
|
|
3124
|
+
transition-property: transform, left;
|
|
3125
|
+
transition-timing-function: ease-in-out;
|
|
3126
|
+
white-space: nowrap;
|
|
3127
|
+
width: 8px;
|
|
3128
|
+
}
|
|
3129
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3130
|
+
transform: scale(1);
|
|
3131
|
+
}
|
|
3132
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-prev, .e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-next {
|
|
3133
|
+
transform: scale(0.66);
|
|
3134
|
+
}
|
|
3135
|
+
.e-carousel .e-carousel-indicators.e-fraction {
|
|
3136
|
+
min-height: 36px;
|
|
3137
|
+
}
|
|
3138
|
+
.e-carousel .e-carousel-indicators.e-progress {
|
|
3139
|
+
min-height: 4px;
|
|
3140
|
+
}
|
|
3141
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3142
|
+
height: 4px;
|
|
3143
|
+
width: 100%;
|
|
3144
|
+
}
|
|
3145
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3146
|
+
height: 100%;
|
|
3147
|
+
left: 0;
|
|
3148
|
+
position: absolute;
|
|
3149
|
+
top: 0;
|
|
3150
|
+
transform: translate3d(0, 0, 0) scaleX(calc(var(--carousel-items-current) / var(--carousel-items-count))) scaleY(1);
|
|
3151
|
+
transition-duration: 0.6s;
|
|
3152
|
+
transform-origin: left top;
|
|
3153
|
+
width: 100%;
|
|
3154
|
+
}
|
|
3142
3155
|
|
|
3143
3156
|
/*! carousel component theme */
|
|
3144
3157
|
.e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled),
|
|
@@ -3161,28 +3174,43 @@
|
|
|
3161
3174
|
background-color: rgba(255, 255, 255, 0.4);
|
|
3162
3175
|
outline: none;
|
|
3163
3176
|
}
|
|
3164
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
|
|
3177
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator {
|
|
3165
3178
|
background-color: transparent;
|
|
3166
3179
|
border-color: transparent;
|
|
3167
3180
|
box-shadow: none;
|
|
3168
3181
|
}
|
|
3169
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
|
|
3170
|
-
background
|
|
3182
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator div {
|
|
3183
|
+
background: #fff;
|
|
3171
3184
|
border-color: #fff;
|
|
3172
3185
|
}
|
|
3173
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:hover {
|
|
3174
|
-
background
|
|
3186
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:hover {
|
|
3187
|
+
background: transparent;
|
|
3175
3188
|
border-color: transparent;
|
|
3176
3189
|
box-shadow: none;
|
|
3177
3190
|
outline: none;
|
|
3178
3191
|
}
|
|
3179
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus-visible {
|
|
3192
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus-visible {
|
|
3180
3193
|
border-color: #000;
|
|
3181
3194
|
}
|
|
3182
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar.e-active .e-indicator div {
|
|
3195
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar.e-active .e-indicator div {
|
|
3183
3196
|
background-color: #22d3ee;
|
|
3184
3197
|
border-color: #22d3ee;
|
|
3185
3198
|
}
|
|
3199
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3200
|
+
background-color: #fff;
|
|
3201
|
+
}
|
|
3202
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3203
|
+
background-color: #22d3ee;
|
|
3204
|
+
}
|
|
3205
|
+
.e-carousel .e-carousel-indicators.e-fraction .e-indicator-bars {
|
|
3206
|
+
color: #fff;
|
|
3207
|
+
}
|
|
3208
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3209
|
+
background-color: rgba(34, 211, 238, 0.4);
|
|
3210
|
+
}
|
|
3211
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3212
|
+
background-color: #22d3ee;
|
|
3213
|
+
}
|
|
3186
3214
|
|
|
3187
3215
|
/*! component's theme wise override definitions and variables */
|
|
3188
3216
|
@keyframes hscroll-popup-shadow {
|
|
@@ -3894,7 +3922,7 @@
|
|
|
3894
3922
|
}
|
|
3895
3923
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
3896
3924
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
3897
|
-
margin: 0;
|
|
3925
|
+
margin: 0 0 0 8px;
|
|
3898
3926
|
}
|
|
3899
3927
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
3900
3928
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -5025,7 +5053,7 @@
|
|
|
5025
5053
|
}
|
|
5026
5054
|
@media screen and (max-width: 480px) {
|
|
5027
5055
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
5028
|
-
height:
|
|
5056
|
+
height: 62px;
|
|
5029
5057
|
}
|
|
5030
5058
|
}
|
|
5031
5059
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -5038,7 +5066,7 @@
|
|
|
5038
5066
|
}
|
|
5039
5067
|
@media screen and (max-width: 480px) {
|
|
5040
5068
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
5041
|
-
height:
|
|
5069
|
+
height: 62px;
|
|
5042
5070
|
}
|
|
5043
5071
|
}
|
|
5044
5072
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -5430,6 +5458,11 @@
|
|
|
5430
5458
|
height: 38px;
|
|
5431
5459
|
padding: 0;
|
|
5432
5460
|
}
|
|
5461
|
+
@media screen and (max-width: 480px) {
|
|
5462
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
5463
|
+
height: 48px;
|
|
5464
|
+
}
|
|
5465
|
+
}
|
|
5433
5466
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
5434
5467
|
top: unset;
|
|
5435
5468
|
}
|
|
@@ -5816,6 +5849,10 @@
|
|
|
5816
5849
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
5817
5850
|
height: auto;
|
|
5818
5851
|
}
|
|
5852
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
5853
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
5854
|
+
display: inherit;
|
|
5855
|
+
}
|
|
5819
5856
|
.e-tab.e-template .e-content > .e-item {
|
|
5820
5857
|
display: none;
|
|
5821
5858
|
}
|
|
@@ -6358,7 +6395,7 @@
|
|
|
6358
6395
|
}
|
|
6359
6396
|
@media screen and (max-width: 480px) {
|
|
6360
6397
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
6361
|
-
height:
|
|
6398
|
+
height: 62px;
|
|
6362
6399
|
}
|
|
6363
6400
|
}
|
|
6364
6401
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -6371,7 +6408,7 @@
|
|
|
6371
6408
|
}
|
|
6372
6409
|
@media screen and (max-width: 480px) {
|
|
6373
6410
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
6374
|
-
height:
|
|
6411
|
+
height: 62px;
|
|
6375
6412
|
}
|
|
6376
6413
|
}
|
|
6377
6414
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -6581,6 +6618,9 @@
|
|
|
6581
6618
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
6582
6619
|
background: inherit;
|
|
6583
6620
|
}
|
|
6621
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
6622
|
+
background: inherit;
|
|
6623
|
+
}
|
|
6584
6624
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
6585
6625
|
background: rgba(0, 0, 0, 0.12);
|
|
6586
6626
|
}
|
|
@@ -6636,8 +6676,8 @@
|
|
|
6636
6676
|
content: unset;
|
|
6637
6677
|
display: unset;
|
|
6638
6678
|
position: unset;
|
|
6639
|
-
top: unset;
|
|
6640
6679
|
width: unset;
|
|
6680
|
+
top: unset;
|
|
6641
6681
|
}
|
|
6642
6682
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
6643
6683
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -6649,6 +6689,9 @@
|
|
|
6649
6689
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
6650
6690
|
color: #22d3ee;
|
|
6651
6691
|
}
|
|
6692
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
6693
|
+
color: #d1d5db;
|
|
6694
|
+
}
|
|
6652
6695
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6653
6696
|
color: #d1d5db;
|
|
6654
6697
|
}
|
|
@@ -7062,6 +7105,10 @@
|
|
|
7062
7105
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
7063
7106
|
border: 0;
|
|
7064
7107
|
}
|
|
7108
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7109
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7110
|
+
color: #6b7280;
|
|
7111
|
+
}
|
|
7065
7112
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
7066
7113
|
background: #22d3ee;
|
|
7067
7114
|
border-radius: 0;
|
|
@@ -7222,6 +7269,10 @@
|
|
|
7222
7269
|
margin: 0;
|
|
7223
7270
|
background: inherit;
|
|
7224
7271
|
}
|
|
7272
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7273
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7274
|
+
color: #6b7280;
|
|
7275
|
+
}
|
|
7225
7276
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
7226
7277
|
background: #22d3ee;
|
|
7227
7278
|
border-color: unset;
|
|
@@ -9515,6 +9566,10 @@ ejs-sidebar {
|
|
|
9515
9566
|
text-indent: inherit;
|
|
9516
9567
|
}
|
|
9517
9568
|
|
|
9569
|
+
.e-menu-container .e-vscroll ul {
|
|
9570
|
+
position: relative;
|
|
9571
|
+
}
|
|
9572
|
+
|
|
9518
9573
|
/*! menu theme */
|
|
9519
9574
|
.e-menu-wrapper,
|
|
9520
9575
|
.e-menu-container {
|
|
@@ -10048,11 +10103,11 @@ ejs-sidebar {
|
|
|
10048
10103
|
color: #fff;
|
|
10049
10104
|
}
|
|
10050
10105
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
10051
|
-
background
|
|
10106
|
+
background: #374151;
|
|
10052
10107
|
color: #f3f4f6;
|
|
10053
10108
|
}
|
|
10054
10109
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:active {
|
|
10055
|
-
background
|
|
10110
|
+
background: #4b5563;
|
|
10056
10111
|
color: #f3f4f6;
|
|
10057
10112
|
}
|
|
10058
10113
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
@@ -10074,17 +10129,17 @@ ejs-sidebar {
|
|
|
10074
10129
|
}
|
|
10075
10130
|
.e-breadcrumb .e-breadcrumb-collapsed:hover,
|
|
10076
10131
|
.e-breadcrumb .e-breadcrumb-menu:hover {
|
|
10077
|
-
background
|
|
10132
|
+
background: #374151;
|
|
10078
10133
|
color: #f3f4f6;
|
|
10079
10134
|
}
|
|
10080
10135
|
.e-breadcrumb .e-breadcrumb-collapsed:active,
|
|
10081
10136
|
.e-breadcrumb .e-breadcrumb-menu:active {
|
|
10082
|
-
background
|
|
10137
|
+
background: #4b5563;
|
|
10083
10138
|
color: #f3f4f6;
|
|
10084
10139
|
}
|
|
10085
10140
|
.e-breadcrumb .e-breadcrumb-collapsed:focus,
|
|
10086
10141
|
.e-breadcrumb .e-breadcrumb-menu:focus {
|
|
10087
|
-
background
|
|
10142
|
+
background: #374151;
|
|
10088
10143
|
color: #f3f4f6;
|
|
10089
10144
|
}
|
|
10090
10145
|
.e-breadcrumb.e-disabled .e-breadcrumb-item .e-breadcrumb-text,
|
|
@@ -10097,17 +10152,17 @@ ejs-sidebar {
|
|
|
10097
10152
|
}
|
|
10098
10153
|
|
|
10099
10154
|
.e-breadcrumb-popup {
|
|
10100
|
-
background
|
|
10155
|
+
background: #374151;
|
|
10101
10156
|
}
|
|
10102
10157
|
.e-breadcrumb-popup .e-breadcrumb-text {
|
|
10103
10158
|
color: #fff;
|
|
10104
10159
|
}
|
|
10105
10160
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
10106
|
-
background
|
|
10161
|
+
background: #4b5563;
|
|
10107
10162
|
color: #fff;
|
|
10108
10163
|
}
|
|
10109
10164
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10110
|
-
background
|
|
10165
|
+
background: #4b5563;
|
|
10111
10166
|
color: #fff;
|
|
10112
10167
|
}
|
|
10113
10168
|
|
|
@@ -10182,12 +10237,16 @@ ejs-sidebar {
|
|
|
10182
10237
|
right: auto;
|
|
10183
10238
|
}
|
|
10184
10239
|
.e-appbar .e-appbar-separator {
|
|
10185
|
-
height:
|
|
10240
|
+
height: 24px;
|
|
10186
10241
|
}
|
|
10187
10242
|
.e-appbar .e-appbar-spacer {
|
|
10188
10243
|
-ms-flex-positive: 1;
|
|
10189
10244
|
flex-grow: 1;
|
|
10190
10245
|
}
|
|
10246
|
+
.e-appbar .e-btn,
|
|
10247
|
+
.e-appbar .e-css.e-btn {
|
|
10248
|
+
border-image: unset;
|
|
10249
|
+
}
|
|
10191
10250
|
|
|
10192
10251
|
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
10193
10252
|
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
@@ -10201,8 +10260,8 @@ ejs-sidebar {
|
|
|
10201
10260
|
.e-appbar.e-light {
|
|
10202
10261
|
background: #374151;
|
|
10203
10262
|
color: #fff;
|
|
10204
|
-
border-color: #374151;
|
|
10205
10263
|
border: none;
|
|
10264
|
+
border-color: #374151;
|
|
10206
10265
|
}
|
|
10207
10266
|
.e-appbar.e-light .e-appbar-separator {
|
|
10208
10267
|
border-left: 1px solid #fff;
|
|
@@ -10226,8 +10285,8 @@ ejs-sidebar {
|
|
|
10226
10285
|
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
10227
10286
|
background: #374151;
|
|
10228
10287
|
color: #fff;
|
|
10229
|
-
border-color: #374151;
|
|
10230
10288
|
box-shadow: none;
|
|
10289
|
+
border-color: #374151;
|
|
10231
10290
|
}
|
|
10232
10291
|
.e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
10233
10292
|
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|