@syncfusion/ej2-navigations 20.2.49 → 20.3.47
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/CHANGELOG.md +23 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/dist/ej2-navigations.min.js +10 -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 +355 -45
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +375 -46
- 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 +13 -12
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +112 -0
- package/src/appbar/appbar.js +220 -0
- package/src/appbar/index.d.ts +3 -0
- package/src/appbar/index.js +2 -0
- package/src/carousel/carousel-model.d.ts +11 -2
- package/src/carousel/carousel.d.ts +9 -0
- package/src/carousel/carousel.js +105 -14
- package/src/common/menu-base.js +2 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/tab/tab.d.ts +11 -7
- package/src/tab/tab.js +23 -16
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +24 -14
- package/styles/accordion/_all.scss +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +5 -2
- package/styles/accordion/_bootstrap-definition.scss +3 -3
- package/styles/accordion/_bootstrap4-definition.scss +4 -1
- package/styles/accordion/_bootstrap5-definition.scss +1 -1
- package/styles/accordion/_fabric-dark-definition.scss +3 -4
- package/styles/accordion/_fabric-definition.scss +3 -3
- package/styles/accordion/_fluent-definition.scss +0 -1
- package/styles/accordion/_fusionnew-definition.scss +1 -1
- package/styles/accordion/_highcontrast-definition.scss +4 -4
- package/styles/accordion/_highcontrast-light-definition.scss +1 -1
- package/styles/accordion/_layout.scss +8 -9
- package/styles/accordion/_material-dark-definition.scss +3 -1
- package/styles/accordion/_material-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +1 -1
- package/styles/accordion/_tailwind-definition.scss +0 -1
- package/styles/accordion/_theme.scss +6 -5
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/icons/_bootstrap-dark.scss +2 -2
- package/styles/accordion/icons/_bootstrap.scss +2 -2
- package/styles/accordion/icons/_bootstrap4.scss +2 -2
- package/styles/accordion/icons/_bootstrap5.scss +2 -3
- package/styles/accordion/icons/_fabric-dark.scss +2 -2
- package/styles/accordion/icons/_fabric.scss +2 -2
- package/styles/accordion/icons/_fluent.scss +2 -3
- package/styles/accordion/icons/_fusionnew.scss +2 -3
- package/styles/accordion/icons/_highcontrast-light.scss +2 -2
- package/styles/accordion/icons/_highcontrast.scss +2 -2
- package/styles/accordion/icons/_material-dark.scss +2 -2
- package/styles/accordion/icons/_material.scss +2 -2
- package/styles/accordion/icons/_material3.scss +2 -3
- package/styles/accordion/icons/_tailwind.scss +2 -3
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -0
- package/styles/appbar/_all.scss +2 -0
- package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
- package/styles/appbar/_bootstrap-definition.scss +8 -0
- package/styles/appbar/_bootstrap4-definition.scss +8 -0
- package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/appbar/_bootstrap5-definition.scss +8 -0
- package/styles/appbar/_fabric-dark-definition.scss +8 -0
- package/styles/appbar/_fabric-definition.scss +8 -0
- package/styles/appbar/_fluent-dark-definition.scss +1 -0
- package/styles/appbar/_fluent-definition.scss +8 -0
- package/styles/appbar/_fusionnew-definition.scss +8 -0
- package/styles/appbar/_highcontrast-definition.scss +8 -0
- package/styles/appbar/_highcontrast-light-definition.scss +8 -0
- package/styles/appbar/_layout.scss +81 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_tailwind-dark-definition.scss +1 -0
- package/styles/appbar/_tailwind-definition.scss +8 -0
- package/styles/appbar/_theme.scss +208 -0
- package/styles/appbar/bootstrap-dark.css +244 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/_all.scss +1 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +1 -2
- package/styles/breadcrumb/_layout.scss +4 -3
- package/styles/breadcrumb/_theme.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +1 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +1 -1
- package/styles/breadcrumb/icons/_fabric.scss +1 -1
- package/styles/breadcrumb/icons/_fluent.scss +1 -1
- package/styles/breadcrumb/icons/_fusionnew.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast-light.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +1 -1
- package/styles/breadcrumb/icons/_material-dark.scss +1 -1
- package/styles/breadcrumb/icons/_material.scss +1 -1
- package/styles/breadcrumb/icons/_material3.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind.scss +1 -1
- package/styles/carousel/_all.scss +1 -1
- package/styles/carousel/_layout.scss +44 -5
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/context-menu/_bootstrap4-definition.scss +3 -3
- package/styles/context-menu/_bootstrap5-definition.scss +2 -2
- package/styles/context-menu/_fabric-dark-definition.scss +2 -1
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -1
- package/styles/context-menu/_layout-mixin.scss +0 -1
- package/styles/context-menu/_layout.scss +1 -0
- package/styles/context-menu/_material-dark-definition.scss +2 -1
- package/styles/context-menu/_theme.scss +1 -0
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap.scss +1 -0
- package/styles/context-menu/icons/_bootstrap4.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +1 -0
- package/styles/context-menu/icons/_fabric-dark.scss +1 -0
- package/styles/context-menu/icons/_fabric.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +1 -0
- package/styles/context-menu/icons/_fusionnew.scss +1 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +1 -0
- package/styles/context-menu/icons/_highcontrast.scss +1 -0
- package/styles/context-menu/icons/_material-dark.scss +1 -0
- package/styles/context-menu/icons/_material.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +1 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +1 -0
- package/styles/context-menu/icons/_tailwind.scss +1 -0
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +4 -3
- package/styles/h-scroll/_bootstrap-definition.scss +3 -4
- package/styles/h-scroll/_bootstrap5-definition.scss +5 -7
- package/styles/h-scroll/_fabric-dark-definition.scss +4 -3
- package/styles/h-scroll/_fabric-definition.scss +4 -4
- package/styles/h-scroll/_fluent-definition.scss +5 -7
- package/styles/h-scroll/_fusionnew-definition.scss +5 -7
- package/styles/h-scroll/_highcontrast-definition.scss +4 -4
- package/styles/h-scroll/_highcontrast-light-definition.scss +4 -3
- package/styles/h-scroll/_layout.scss +11 -13
- package/styles/h-scroll/_material-dark-definition.scss +6 -5
- package/styles/h-scroll/_material-definition.scss +8 -10
- package/styles/h-scroll/_material3-definition.scss +5 -7
- package/styles/h-scroll/_tailwind-definition.scss +6 -8
- package/styles/h-scroll/_theme.scss +3 -5
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/icons/_bootstrap-dark.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap5.scss +3 -3
- package/styles/h-scroll/icons/_fabric-dark.scss +3 -3
- package/styles/h-scroll/icons/_fabric.scss +3 -3
- package/styles/h-scroll/icons/_fluent.scss +3 -3
- package/styles/h-scroll/icons/_fusionnew.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast-light.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast.scss +3 -3
- package/styles/h-scroll/icons/_material-dark.scss +3 -3
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +3 -3
- package/styles/h-scroll/icons/_tailwind.scss +3 -3
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/menu/_fabric-dark-definition.scss +2 -1
- package/styles/menu/_fluent-definition.scss +0 -1
- package/styles/menu/_layout.scss +4 -3
- package/styles/menu/_material-dark-definition.scss +2 -1
- package/styles/menu/_tailwind-definition.scss +0 -1
- package/styles/menu/_theme.scss +22 -1
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap.scss +1 -0
- package/styles/menu/icons/_bootstrap4.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +1 -0
- package/styles/menu/icons/_fabric-dark.scss +1 -0
- package/styles/menu/icons/_fabric.scss +1 -0
- package/styles/menu/icons/_fluent.scss +1 -0
- package/styles/menu/icons/_fusionnew.scss +1 -0
- package/styles/menu/icons/_highcontrast-light.scss +1 -0
- package/styles/menu/icons/_highcontrast.scss +1 -0
- package/styles/menu/icons/_material-dark.scss +1 -0
- package/styles/menu/icons/_material.scss +1 -0
- package/styles/menu/icons/_material3.scss +1 -0
- package/styles/menu/icons/_tailwind-dark.scss +1 -0
- package/styles/menu/icons/_tailwind.scss +1 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/_all.scss +1 -1
- package/styles/pager/_bootstrap-dark-definition.scss +0 -1
- package/styles/pager/_bootstrap-definition.scss +3 -4
- package/styles/pager/_bootstrap4-definition.scss +6 -6
- package/styles/pager/_bootstrap5-definition.scss +5 -5
- package/styles/pager/_fabric-dark-definition.scss +2 -2
- package/styles/pager/_fabric-definition.scss +0 -1
- package/styles/pager/_fluent-definition.scss +1 -1
- package/styles/pager/_highcontrast-definition.scss +0 -1
- package/styles/pager/_highcontrast-light-definition.scss +3 -2
- package/styles/pager/_layout.scss +35 -38
- package/styles/pager/_material-dark-definition.scss +2 -2
- package/styles/pager/_material-definition.scss +0 -1
- package/styles/pager/_tailwind-definition.scss +7 -7
- package/styles/pager/_theme.scss +3 -4
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/icons/_bootstrap-dark.scss +2 -2
- package/styles/pager/icons/_bootstrap.scss +2 -1
- package/styles/pager/icons/_bootstrap4.scss +2 -1
- package/styles/pager/icons/_bootstrap5.scss +2 -2
- package/styles/pager/icons/_fabric-dark.scss +4 -4
- package/styles/pager/icons/_fabric.scss +4 -4
- package/styles/pager/icons/_fluent.scss +2 -2
- package/styles/pager/icons/_fusionnew.scss +2 -2
- package/styles/pager/icons/_highcontrast-light.scss +3 -3
- package/styles/pager/icons/_highcontrast.scss +9 -4
- package/styles/pager/icons/_material-dark.scss +2 -2
- package/styles/pager/icons/_material.scss +10 -5
- package/styles/pager/icons/_material3.scss +2 -2
- package/styles/pager/icons/_tailwind.scss +2 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- package/styles/sidebar/_bootstrap5-definition.scss +1 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-definition.scss +1 -0
- package/styles/sidebar/_fusionnew-definition.scss +1 -0
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +1 -0
- package/styles/sidebar/_theme.scss +19 -28
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +4 -0
- package/styles/sidebar/fluent.css +4 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +2 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/_fabric-dark-definition.scss +2 -2
- package/styles/tab/_fabric-definition.scss +0 -1
- package/styles/tab/_fusionnew-definition.scss +1 -1
- package/styles/tab/_highcontrast-definition.scss +0 -1
- package/styles/tab/_highcontrast-light-definition.scss +0 -2
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +24 -26
- package/styles/tab/_material-dark-definition.scss +2 -3
- package/styles/tab/_material-definition.scss +0 -1
- package/styles/tab/_material3-definition.scss +1 -1
- package/styles/tab/_tailwind-definition.scss +0 -1
- package/styles/tab/_theme.scss +6 -8
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/icons/_bootstrap-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap.scss +1 -0
- package/styles/tab/icons/_bootstrap4.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +1 -1
- package/styles/tab/icons/_fabric-dark.scss +1 -0
- package/styles/tab/icons/_fabric.scss +1 -0
- package/styles/tab/icons/_fluent.scss +1 -1
- package/styles/tab/icons/_fusionnew.scss +1 -1
- package/styles/tab/icons/_highcontrast-light.scss +1 -0
- package/styles/tab/icons/_highcontrast.scss +1 -0
- package/styles/tab/icons/_material-dark.scss +1 -0
- package/styles/tab/icons/_material.scss +1 -0
- package/styles/tab/icons/_material3.scss +1 -1
- package/styles/tab/icons/_tailwind.scss +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +6 -5
- package/styles/toolbar/_bootstrap-definition.scss +13 -13
- package/styles/toolbar/_bootstrap4-definition.scss +6 -6
- package/styles/toolbar/_bootstrap5-definition.scss +1 -1
- package/styles/toolbar/_fabric-dark-definition.scss +2 -1
- package/styles/toolbar/_fluent-definition.scss +2 -2
- package/styles/toolbar/_fusionnew-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +2 -1
- package/styles/toolbar/_layout.scss +50 -74
- package/styles/toolbar/_material-dark-definition.scss +9 -11
- package/styles/toolbar/_material-definition.scss +12 -13
- package/styles/toolbar/_material3-definition.scss +1 -1
- package/styles/toolbar/_theme.scss +5 -8
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/icons/_bootstrap-dark.scss +1 -1
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +1 -1
- package/styles/toolbar/icons/_bootstrap5.scss +1 -2
- package/styles/toolbar/icons/_fabric-dark.scss +1 -1
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent.scss +1 -2
- package/styles/toolbar/icons/_fusionnew.scss +1 -2
- package/styles/toolbar/icons/_highcontrast-light.scss +1 -1
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +1 -1
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +1 -2
- package/styles/toolbar/icons/_tailwind.scss +1 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +1 -1
- package/styles/treeview/_bootstrap-definition.scss +1 -1
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/_fabric-dark-definition.scss +1 -1
- package/styles/treeview/_fabric-definition.scss +1 -1
- package/styles/treeview/_fluent-definition.scss +1 -1
- package/styles/treeview/_fusionnew-definition.scss +1 -1
- package/styles/treeview/_highcontrast-definition.scss +1 -1
- package/styles/treeview/_highcontrast-light-definition.scss +1 -1
- package/styles/treeview/_layout.scss +23 -18
- package/styles/treeview/_material-dark-definition.scss +1 -1
- package/styles/treeview/_material-definition.scss +1 -1
- package/styles/treeview/_material3-definition.scss +1 -1
- package/styles/treeview/_tailwind-definition.scss +2 -2
- package/styles/treeview/_theme.scss +15 -12
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/icons/_bootstrap-dark.scss +1 -1
- package/styles/treeview/icons/_bootstrap.scss +1 -1
- package/styles/treeview/icons/_bootstrap4.scss +1 -2
- package/styles/treeview/icons/_bootstrap5.scss +1 -1
- package/styles/treeview/icons/_fabric-dark.scss +1 -1
- package/styles/treeview/icons/_fabric.scss +1 -1
- package/styles/treeview/icons/_fluent.scss +1 -1
- package/styles/treeview/icons/_fusionnew.scss +1 -1
- package/styles/treeview/icons/_highcontrast-light.scss +1 -1
- package/styles/treeview/icons/_highcontrast.scss +1 -1
- package/styles/treeview/icons/_material-dark.scss +1 -1
- package/styles/treeview/icons/_material.scss +1 -1
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/icons/_tailwind-dark.scss +1 -1
- package/styles/treeview/icons/_tailwind.scss +1 -1
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +5 -4
- package/styles/v-scroll/_bootstrap-definition.scss +3 -3
- package/styles/v-scroll/_bootstrap4-definition.scss +1 -1
- package/styles/v-scroll/_bootstrap5-definition.scss +3 -3
- package/styles/v-scroll/_fabric-dark-definition.scss +6 -5
- package/styles/v-scroll/_fabric-definition.scss +4 -4
- package/styles/v-scroll/_fluent-definition.scss +3 -3
- package/styles/v-scroll/_fusionnew-definition.scss +3 -3
- package/styles/v-scroll/_highcontrast-definition.scss +4 -4
- package/styles/v-scroll/_highcontrast-light-definition.scss +6 -5
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +6 -5
- package/styles/v-scroll/_material-definition.scss +5 -5
- package/styles/v-scroll/_material3-definition.scss +3 -3
- package/styles/v-scroll/_tailwind-definition.scss +3 -3
- package/styles/v-scroll/_theme.scss +2 -1
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/icons/_bootstrap-dark.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5.scss +1 -1
- package/styles/v-scroll/icons/_fabric-dark.scss +1 -0
- package/styles/v-scroll/icons/_fabric.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +1 -1
- package/styles/v-scroll/icons/_fusionnew.scss +1 -1
- package/styles/v-scroll/icons/_highcontrast-light.scss +1 -0
- package/styles/v-scroll/icons/_highcontrast.scss +1 -0
- package/styles/v-scroll/icons/_material-dark.scss +1 -0
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +1 -1
- package/styles/v-scroll/icons/_tailwind.scss +1 -1
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* !componenticons */
|
|
2
2
|
.e-pager .e-icon-last::before,
|
|
3
3
|
.e-grid-menu .e-icon-last::before {
|
|
4
4
|
content: "\e7a9";
|
|
@@ -241,6 +241,8 @@
|
|
|
241
241
|
padding: 7px 8px 7px 8px;
|
|
242
242
|
white-space: normal;
|
|
243
243
|
width: 100%;
|
|
244
|
+
/* stylelint-disable */
|
|
245
|
+
/* stylelint-enable */
|
|
244
246
|
}
|
|
245
247
|
.e-pager [class^=e-] {
|
|
246
248
|
box-sizing: border-box;
|
|
@@ -284,10 +286,10 @@
|
|
|
284
286
|
text-align: center;
|
|
285
287
|
}
|
|
286
288
|
.e-pager .e-numericitem.e-currentitem {
|
|
287
|
-
padding:
|
|
289
|
+
padding: 7.4px 10.5px 8.4px 9.5px;
|
|
288
290
|
}
|
|
289
291
|
.e-pager .e-numericitem.e-currentitem:hover {
|
|
290
|
-
padding:
|
|
292
|
+
padding: 7.4px 10.5px 8.4px 9.5px;
|
|
291
293
|
}
|
|
292
294
|
.e-pager.e-rtl .e-numericitem.e-currentitem {
|
|
293
295
|
border-left-color: #86b7fe;
|
|
@@ -314,11 +316,11 @@
|
|
|
314
316
|
.e-pager .e-currentitem {
|
|
315
317
|
border-radius: 0;
|
|
316
318
|
cursor: pointer;
|
|
317
|
-
padding: 10px 12.5px
|
|
319
|
+
padding: 10px 12.5px 11.5px 12.5px;
|
|
318
320
|
text-decoration: none;
|
|
319
321
|
}
|
|
320
322
|
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
321
|
-
padding:
|
|
323
|
+
padding: 10.4px 12.5px 11.6px 12.5px;
|
|
322
324
|
}
|
|
323
325
|
.e-pager .e-currentitem {
|
|
324
326
|
border: 3px solid #86b7fe;
|
|
@@ -350,7 +352,7 @@
|
|
|
350
352
|
margin-right: 0;
|
|
351
353
|
margin-top: 0;
|
|
352
354
|
min-width: 26px;
|
|
353
|
-
padding:
|
|
355
|
+
padding: 14.2px 12.2px 12.7px 11.5px;
|
|
354
356
|
}
|
|
355
357
|
.e-pager .e-pagercontainer .e-lastpage,
|
|
356
358
|
.e-pager .e-pagercontainer .e-lastpagedisabled {
|
|
@@ -383,10 +385,10 @@
|
|
|
383
385
|
margin: 0 0 -4px 0.3px;
|
|
384
386
|
overflow: hidden;
|
|
385
387
|
}
|
|
386
|
-
.e-pager .e-lastpage:
|
|
388
|
+
.e-pager .e-lastpage:hover {
|
|
387
389
|
border-radius: 0 3px 3px 0;
|
|
388
390
|
}
|
|
389
|
-
.e-pager .e-firstpage:
|
|
391
|
+
.e-pager .e-firstpage:hover {
|
|
390
392
|
border-radius: 3px 0 0 3px;
|
|
391
393
|
}
|
|
392
394
|
.e-pager .e-pagermessage,
|
|
@@ -421,12 +423,12 @@
|
|
|
421
423
|
font-size: 14px;
|
|
422
424
|
font-weight: bold;
|
|
423
425
|
letter-spacing: 0;
|
|
424
|
-
padding:
|
|
426
|
+
padding: 10.4px 10.5px 11.4px 10.5px;
|
|
425
427
|
}
|
|
426
428
|
.e-pager .e-np.e-focused,
|
|
427
429
|
.e-pager .e-pp.e-focused {
|
|
428
430
|
line-height: 1;
|
|
429
|
-
padding:
|
|
431
|
+
padding: 10.4px 10.5px 11.4px 10.5px;
|
|
430
432
|
}
|
|
431
433
|
@media (max-width: 769px) {
|
|
432
434
|
.e-pager {
|
|
@@ -563,10 +565,10 @@
|
|
|
563
565
|
}
|
|
564
566
|
.e-pager.e-rtl .e-spacing, .e-pager.e-rtl .e-numericitem:hover, .e-pager.e-rtl .e-currentitem {
|
|
565
567
|
margin: 0;
|
|
566
|
-
padding:
|
|
568
|
+
padding: 10.4px 12.5px 11px 12.5px;
|
|
567
569
|
}
|
|
568
570
|
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
569
|
-
padding:
|
|
571
|
+
padding: 10.4px 12.5px 11px 12.5px;
|
|
570
572
|
}
|
|
571
573
|
.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 {
|
|
572
574
|
margin-top: 0;
|
|
@@ -855,8 +857,6 @@
|
|
|
855
857
|
display: inline-block;
|
|
856
858
|
height: inherit;
|
|
857
859
|
position: relative;
|
|
858
|
-
-ms-touch-action: none;
|
|
859
|
-
touch-action: none;
|
|
860
860
|
}
|
|
861
861
|
.e-hscroll .e-hscroll-content > * {
|
|
862
862
|
pointer-events: auto;
|
|
@@ -1082,8 +1082,6 @@
|
|
|
1082
1082
|
display: inline-block;
|
|
1083
1083
|
height: auto;
|
|
1084
1084
|
position: relative;
|
|
1085
|
-
-ms-touch-action: none;
|
|
1086
|
-
touch-action: none;
|
|
1087
1085
|
width: 100%;
|
|
1088
1086
|
}
|
|
1089
1087
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1206,7 +1204,8 @@
|
|
|
1206
1204
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
1207
1205
|
}
|
|
1208
1206
|
}
|
|
1209
|
-
/*! component's theme wise override definitions and variables */ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
1207
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */ /*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
1208
|
+
/* stylelint-disable */
|
|
1210
1209
|
/*! toolbar icons */
|
|
1211
1210
|
.e-toolbar .e-popup-down-icon::before {
|
|
1212
1211
|
content: "\e729";
|
|
@@ -1218,6 +1217,7 @@
|
|
|
1218
1217
|
}
|
|
1219
1218
|
|
|
1220
1219
|
/*! toolbar layout */
|
|
1220
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1221
1221
|
.e-bigger .e-toolbar,
|
|
1222
1222
|
.e-toolbar.e-bigger {
|
|
1223
1223
|
height: 46px;
|
|
@@ -1561,8 +1561,6 @@
|
|
|
1561
1561
|
height: 38px;
|
|
1562
1562
|
min-height: 38px;
|
|
1563
1563
|
position: relative;
|
|
1564
|
-
-ms-touch-action: none;
|
|
1565
|
-
touch-action: none;
|
|
1566
1564
|
-webkit-user-select: none;
|
|
1567
1565
|
-ms-user-select: none;
|
|
1568
1566
|
user-select: none;
|
|
@@ -2003,6 +2001,10 @@
|
|
|
2003
2001
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
2004
2002
|
margin-right: 8px;
|
|
2005
2003
|
}
|
|
2004
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
2005
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
2006
|
+
touch-action: pan-y pinch-zoom;
|
|
2007
|
+
}
|
|
2006
2008
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
2007
2009
|
margin-right: 8px;
|
|
2008
2010
|
}
|
|
@@ -2123,6 +2125,10 @@
|
|
|
2123
2125
|
bottom: auto;
|
|
2124
2126
|
top: 0;
|
|
2125
2127
|
}
|
|
2128
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2129
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2130
|
+
touch-action: pan-x pinch-zoom;
|
|
2131
|
+
}
|
|
2126
2132
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2127
2133
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2128
2134
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2172,6 +2178,7 @@
|
|
|
2172
2178
|
}
|
|
2173
2179
|
|
|
2174
2180
|
/*! toolbar theme */
|
|
2181
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2175
2182
|
.e-toolbar {
|
|
2176
2183
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2177
2184
|
background: #282d31;
|
|
@@ -2368,6 +2375,7 @@
|
|
|
2368
2375
|
}
|
|
2369
2376
|
|
|
2370
2377
|
/*! Accordion's bootstrap5 theme wise override definitions and variables */
|
|
2378
|
+
/* stylelint-disable */
|
|
2371
2379
|
/*! accordion icons */
|
|
2372
2380
|
.e-accordion .e-tgl-collapse-icon::before {
|
|
2373
2381
|
content: "\e729";
|
|
@@ -2610,6 +2618,7 @@
|
|
|
2610
2618
|
}
|
|
2611
2619
|
|
|
2612
2620
|
/*! accordion theme */
|
|
2621
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2613
2622
|
.e-accordion {
|
|
2614
2623
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2615
2624
|
background: #212529;
|
|
@@ -2732,7 +2741,8 @@
|
|
|
2732
2741
|
padding: 0;
|
|
2733
2742
|
position: relative;
|
|
2734
2743
|
}
|
|
2735
|
-
.e-carousel .e-carousel-items
|
|
2744
|
+
.e-carousel .e-carousel-items,
|
|
2745
|
+
.e-carousel .e-carousel-slide-container {
|
|
2736
2746
|
height: 100%;
|
|
2737
2747
|
margin: 0;
|
|
2738
2748
|
overflow: hidden;
|
|
@@ -2740,7 +2750,41 @@
|
|
|
2740
2750
|
position: relative;
|
|
2741
2751
|
width: 100%;
|
|
2742
2752
|
}
|
|
2743
|
-
.e-carousel.e-
|
|
2753
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2754
|
+
padding: 0 100px;
|
|
2755
|
+
}
|
|
2756
|
+
@media screen and (max-width: 480px) {
|
|
2757
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2758
|
+
padding: 0 75px;
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
2761
|
+
@media screen and (max-width: 320px) {
|
|
2762
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2763
|
+
padding: 0 50px;
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2767
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2768
|
+
display: -ms-flexbox;
|
|
2769
|
+
display: flex;
|
|
2770
|
+
-ms-flex-direction: row;
|
|
2771
|
+
flex-direction: row;
|
|
2772
|
+
transition-property: transform;
|
|
2773
|
+
transition-duration: 0.6s;
|
|
2774
|
+
transition-timing-function: ease-in-out;
|
|
2775
|
+
}
|
|
2776
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2777
|
+
height: 100%;
|
|
2778
|
+
overflow: hidden;
|
|
2779
|
+
padding: 0;
|
|
2780
|
+
position: relative;
|
|
2781
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2782
|
+
}
|
|
2783
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2784
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2785
|
+
transition: transform 0.6s ease-in-out;
|
|
2786
|
+
}
|
|
2787
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2744
2788
|
backface-visibility: hidden;
|
|
2745
2789
|
display: none;
|
|
2746
2790
|
float: left;
|
|
@@ -2750,16 +2794,16 @@
|
|
|
2750
2794
|
transition: transform 0.6s ease-in-out;
|
|
2751
2795
|
width: 100%;
|
|
2752
2796
|
}
|
|
2753
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-prev, .e-carousel.e-carousel-slide-animation .e-carousel-item.e-next, .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active {
|
|
2797
|
+
.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 {
|
|
2754
2798
|
display: block;
|
|
2755
2799
|
}
|
|
2756
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-next:not(.e-transition-start), .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active.e-transition-end {
|
|
2800
|
+
.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 {
|
|
2757
2801
|
transform: translateX(100%);
|
|
2758
2802
|
}
|
|
2759
|
-
.e-carousel.e-carousel-slide-animation .e-carousel-item.e-prev:not(.e-transition-end), .e-carousel.e-carousel-slide-animation .e-carousel-item.e-active.e-transition-start {
|
|
2803
|
+
.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 {
|
|
2760
2804
|
transform: translateX(-100%);
|
|
2761
2805
|
}
|
|
2762
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2806
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2763
2807
|
backface-visibility: hidden;
|
|
2764
2808
|
display: block;
|
|
2765
2809
|
float: left;
|
|
@@ -2771,19 +2815,19 @@
|
|
|
2771
2815
|
width: 100%;
|
|
2772
2816
|
z-index: 0;
|
|
2773
2817
|
}
|
|
2774
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2818
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2775
2819
|
opacity: 1;
|
|
2776
2820
|
z-index: 1;
|
|
2777
2821
|
}
|
|
2778
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2822
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2779
2823
|
display: none;
|
|
2780
2824
|
height: 100%;
|
|
2781
2825
|
width: 100%;
|
|
2782
2826
|
}
|
|
2783
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2827
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2784
2828
|
display: block;
|
|
2785
2829
|
}
|
|
2786
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2830
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2787
2831
|
display: block;
|
|
2788
2832
|
height: 100%;
|
|
2789
2833
|
left: 0;
|
|
@@ -2793,7 +2837,7 @@
|
|
|
2793
2837
|
top: 0;
|
|
2794
2838
|
width: 100%;
|
|
2795
2839
|
}
|
|
2796
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2840
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2797
2841
|
opacity: 1;
|
|
2798
2842
|
pointer-events: visible;
|
|
2799
2843
|
}
|
|
@@ -2941,7 +2985,7 @@
|
|
|
2941
2985
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
2942
2986
|
}
|
|
2943
2987
|
}
|
|
2944
|
-
/*! component's theme wise override definitions and variables */
|
|
2988
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
2945
2989
|
/*! contextmenu layout */
|
|
2946
2990
|
.e-contextmenu-wrapper ul .e-menu-item .e-previous::before,
|
|
2947
2991
|
.e-contextmenu-container ul .e-menu-item .e-previous::before {
|
|
@@ -3274,11 +3318,11 @@
|
|
|
3274
3318
|
}
|
|
3275
3319
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-caret,
|
|
3276
3320
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-caret {
|
|
3277
|
-
color: #
|
|
3321
|
+
color: #adb5bd;
|
|
3278
3322
|
}
|
|
3279
3323
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-menu-icon,
|
|
3280
3324
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-menu-icon {
|
|
3281
|
-
color: #
|
|
3325
|
+
color: #adb5bd;
|
|
3282
3326
|
}
|
|
3283
3327
|
.e-contextmenu-wrapper ul .e-disabled,
|
|
3284
3328
|
.e-contextmenu-container ul .e-disabled {
|
|
@@ -3312,7 +3356,10 @@
|
|
|
3312
3356
|
border-color: #444c54;
|
|
3313
3357
|
}
|
|
3314
3358
|
|
|
3315
|
-
/*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
3359
|
+
/*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
3360
|
+
/* stylelint-disable */
|
|
3361
|
+
/*! Tab's bootstrap5 theme wise override definitions and variables */
|
|
3362
|
+
/* stylelint-disable */
|
|
3316
3363
|
/*! Horizontal Tab */
|
|
3317
3364
|
/*! Bootstrap specific themes definition's */
|
|
3318
3365
|
/*! Vertical Tab */
|
|
@@ -5187,7 +5234,7 @@
|
|
|
5187
5234
|
right: -15px;
|
|
5188
5235
|
}
|
|
5189
5236
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5190
|
-
top: initial !important;
|
|
5237
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5191
5238
|
}
|
|
5192
5239
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5193
5240
|
float: left;
|
|
@@ -6952,7 +6999,9 @@
|
|
|
6952
6999
|
color: #e9ecef;
|
|
6953
7000
|
}
|
|
6954
7001
|
|
|
7002
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6955
7003
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
7004
|
+
/* stylelint-disable */
|
|
6956
7005
|
/*! TreeView icons */
|
|
6957
7006
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6958
7007
|
content: "\e75c";
|
|
@@ -6976,6 +7025,7 @@
|
|
|
6976
7025
|
content: "\e839";
|
|
6977
7026
|
}
|
|
6978
7027
|
|
|
7028
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6979
7029
|
@keyframes rotation {
|
|
6980
7030
|
from {
|
|
6981
7031
|
transform: rotate(0deg);
|
|
@@ -7603,6 +7653,8 @@
|
|
|
7603
7653
|
pointer-events: auto;
|
|
7604
7654
|
}
|
|
7605
7655
|
|
|
7656
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7657
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7606
7658
|
.e-bigger .e-treeview .e-list-text,
|
|
7607
7659
|
.e-treeview.e-bigger .e-list-text {
|
|
7608
7660
|
font-size: 16px;
|
|
@@ -7615,6 +7667,7 @@
|
|
|
7615
7667
|
}
|
|
7616
7668
|
.e-treeview {
|
|
7617
7669
|
-webkit-tap-highlight-color: transparent;
|
|
7670
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7618
7671
|
}
|
|
7619
7672
|
.e-treeview.e-disabled {
|
|
7620
7673
|
opacity: 0.5;
|
|
@@ -7794,6 +7847,7 @@
|
|
|
7794
7847
|
border: 1px solid #0d6efd;
|
|
7795
7848
|
}
|
|
7796
7849
|
|
|
7850
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7797
7851
|
ejs-sidebar {
|
|
7798
7852
|
display: none;
|
|
7799
7853
|
}
|
|
@@ -7803,6 +7857,7 @@ ejs-sidebar {
|
|
|
7803
7857
|
}
|
|
7804
7858
|
|
|
7805
7859
|
.e-sidebar {
|
|
7860
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7806
7861
|
-webkit-tap-highlight-color: transparent;
|
|
7807
7862
|
background: #282d31;
|
|
7808
7863
|
height: 100%;
|
|
@@ -7915,10 +7970,12 @@ ejs-sidebar {
|
|
|
7915
7970
|
touch-action: none;
|
|
7916
7971
|
}
|
|
7917
7972
|
|
|
7973
|
+
/* stylelint-disable */
|
|
7918
7974
|
.e-sidebar-overflow {
|
|
7919
7975
|
overflow-x: hidden !important;
|
|
7920
7976
|
}
|
|
7921
7977
|
|
|
7978
|
+
/* stylelint-enable */
|
|
7922
7979
|
.e-sidebar-overlay {
|
|
7923
7980
|
background-color: rgba(0, 0, 0, 0.4);
|
|
7924
7981
|
height: 100%;
|
|
@@ -7948,7 +8005,7 @@ ejs-sidebar {
|
|
|
7948
8005
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
7949
8006
|
}
|
|
7950
8007
|
}
|
|
7951
|
-
/*! component's theme wise override definitions and variables */
|
|
8008
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
7952
8009
|
/*! menu layout */
|
|
7953
8010
|
.e-menu-wrapper ul.e-vertical .e-menu-item .e-caret::before,
|
|
7954
8011
|
.e-menu-container ul.e-vertical .e-menu-item .e-caret::before {
|
|
@@ -8640,6 +8697,8 @@ ejs-sidebar {
|
|
|
8640
8697
|
border: none;
|
|
8641
8698
|
overflow-y: auto;
|
|
8642
8699
|
width: 100%;
|
|
8700
|
+
/* stylelint-disable */
|
|
8701
|
+
/* stylelint-enable */
|
|
8643
8702
|
}
|
|
8644
8703
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8645
8704
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -9001,6 +9060,26 @@ ejs-sidebar {
|
|
|
9001
9060
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
9002
9061
|
background: #0d6efd;
|
|
9003
9062
|
}
|
|
9063
|
+
.e-menu-wrapper.e-inherit,
|
|
9064
|
+
.e-menu-container.e-inherit {
|
|
9065
|
+
border: 0;
|
|
9066
|
+
}
|
|
9067
|
+
.e-menu-wrapper.e-inherit .e-menu, .e-menu-wrapper.e-inherit .e-menu .e-menu-item .e-menu-icon, .e-menu-wrapper.e-inherit .e-menu .e-menu-item .e-caret,
|
|
9068
|
+
.e-menu-container.e-inherit .e-menu,
|
|
9069
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
9070
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
9071
|
+
color: inherit;
|
|
9072
|
+
}
|
|
9073
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
9074
|
+
.e-menu-container.e-inherit .e-menu {
|
|
9075
|
+
background: inherit;
|
|
9076
|
+
}
|
|
9077
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9078
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9079
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9080
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9081
|
+
color: inherit;
|
|
9082
|
+
}
|
|
9004
9083
|
|
|
9005
9084
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
9006
9085
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9423,4 +9502,249 @@ ejs-sidebar {
|
|
|
9423
9502
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9424
9503
|
background-color: #444c54;
|
|
9425
9504
|
color: #fff;
|
|
9505
|
+
}
|
|
9506
|
+
|
|
9507
|
+
/*! AppBar component bootstrap5 theme definitions and variables */
|
|
9508
|
+
/*! appbar component styles */
|
|
9509
|
+
.e-bigger .e-appbar,
|
|
9510
|
+
.e-appbar.e-bigger {
|
|
9511
|
+
height: 56px;
|
|
9512
|
+
font-size: 16px;
|
|
9513
|
+
}
|
|
9514
|
+
.e-bigger .e-appbar.e-dense,
|
|
9515
|
+
.e-appbar.e-bigger.e-dense {
|
|
9516
|
+
height: 48px;
|
|
9517
|
+
}
|
|
9518
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9519
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9520
|
+
height: 112px;
|
|
9521
|
+
}
|
|
9522
|
+
|
|
9523
|
+
.e-appbar {
|
|
9524
|
+
display: -ms-flexbox;
|
|
9525
|
+
display: flex;
|
|
9526
|
+
width: 100%;
|
|
9527
|
+
height: 48px;
|
|
9528
|
+
-ms-flex-negative: 0;
|
|
9529
|
+
flex-shrink: 0;
|
|
9530
|
+
-ms-flex-direction: row;
|
|
9531
|
+
flex-direction: row;
|
|
9532
|
+
position: relative;
|
|
9533
|
+
-ms-flex-align: center;
|
|
9534
|
+
align-items: center;
|
|
9535
|
+
padding: 8px;
|
|
9536
|
+
overflow: hidden;
|
|
9537
|
+
font-size: 14px;
|
|
9538
|
+
}
|
|
9539
|
+
.e-appbar > div:first-child {
|
|
9540
|
+
display: -ms-flexbox;
|
|
9541
|
+
display: flex;
|
|
9542
|
+
-ms-flex-align: center;
|
|
9543
|
+
align-items: center;
|
|
9544
|
+
width: 100%;
|
|
9545
|
+
height: 100%;
|
|
9546
|
+
}
|
|
9547
|
+
.e-appbar.e-sticky {
|
|
9548
|
+
position: sticky;
|
|
9549
|
+
top: 0;
|
|
9550
|
+
z-index: 1000;
|
|
9551
|
+
}
|
|
9552
|
+
.e-appbar.e-prominent {
|
|
9553
|
+
height: 94px;
|
|
9554
|
+
-ms-flex-align: start;
|
|
9555
|
+
align-items: flex-start;
|
|
9556
|
+
}
|
|
9557
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9558
|
+
-ms-flex-align: start;
|
|
9559
|
+
align-items: flex-start;
|
|
9560
|
+
}
|
|
9561
|
+
.e-appbar.e-dense {
|
|
9562
|
+
height: 40px;
|
|
9563
|
+
}
|
|
9564
|
+
.e-appbar.e-horizontal-bottom {
|
|
9565
|
+
position: absolute;
|
|
9566
|
+
bottom: 0;
|
|
9567
|
+
right: 0;
|
|
9568
|
+
left: 0;
|
|
9569
|
+
}
|
|
9570
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9571
|
+
position: fixed;
|
|
9572
|
+
top: auto;
|
|
9573
|
+
}
|
|
9574
|
+
.e-appbar .e-appbar-separator {
|
|
9575
|
+
height: 32px;
|
|
9576
|
+
}
|
|
9577
|
+
.e-appbar .e-appbar-spacer {
|
|
9578
|
+
-ms-flex-positive: 1;
|
|
9579
|
+
flex-grow: 1;
|
|
9580
|
+
}
|
|
9581
|
+
|
|
9582
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9583
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9584
|
+
overflow: hidden;
|
|
9585
|
+
}
|
|
9586
|
+
|
|
9587
|
+
/*! appbar component theme */
|
|
9588
|
+
.e-appbar {
|
|
9589
|
+
box-shadow: none;
|
|
9590
|
+
}
|
|
9591
|
+
.e-appbar.e-light {
|
|
9592
|
+
background: #343a40;
|
|
9593
|
+
color: #fff;
|
|
9594
|
+
border-color: #343a40;
|
|
9595
|
+
border: none;
|
|
9596
|
+
}
|
|
9597
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9598
|
+
border-left: 1px solid #fff;
|
|
9599
|
+
}
|
|
9600
|
+
.e-appbar.e-light .e-btn.e-inherit:hover, .e-appbar.e-light .e-btn.e-inherit:focus, .e-appbar.e-light .e-btn.e-inherit:active, .e-appbar.e-light .e-btn.e-inherit.e-active,
|
|
9601
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9602
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9603
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9604
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9605
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9606
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9607
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9608
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9609
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9610
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9611
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9612
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9613
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9614
|
+
}
|
|
9615
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9616
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9617
|
+
background: #343a40;
|
|
9618
|
+
color: #fff;
|
|
9619
|
+
border-color: #343a40;
|
|
9620
|
+
box-shadow: none;
|
|
9621
|
+
}
|
|
9622
|
+
.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,
|
|
9623
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9624
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9625
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9626
|
+
}
|
|
9627
|
+
.e-appbar.e-dark {
|
|
9628
|
+
background: #dee2e6;
|
|
9629
|
+
color: #212529;
|
|
9630
|
+
border-color: #dee2e6;
|
|
9631
|
+
}
|
|
9632
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9633
|
+
border-left: 1px solid #212529;
|
|
9634
|
+
}
|
|
9635
|
+
.e-appbar.e-dark .e-btn.e-inherit:hover, .e-appbar.e-dark .e-btn.e-inherit:focus, .e-appbar.e-dark .e-btn.e-inherit:active, .e-appbar.e-dark .e-btn.e-inherit.e-active,
|
|
9636
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9637
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9638
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9639
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9640
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9641
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9642
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9643
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9644
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9645
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9646
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9647
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9648
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9649
|
+
}
|
|
9650
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9651
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9652
|
+
background: #dee2e6;
|
|
9653
|
+
color: #212529;
|
|
9654
|
+
border-color: #dee2e6;
|
|
9655
|
+
box-shadow: none;
|
|
9656
|
+
}
|
|
9657
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-dark .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9658
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9659
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9660
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9661
|
+
}
|
|
9662
|
+
.e-appbar.e-primary {
|
|
9663
|
+
background: #0d6efd;
|
|
9664
|
+
color: #fff;
|
|
9665
|
+
border-color: #0d6efd;
|
|
9666
|
+
}
|
|
9667
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9668
|
+
border-left: 1px solid #fff;
|
|
9669
|
+
}
|
|
9670
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9671
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9672
|
+
background: #0d6efd;
|
|
9673
|
+
color: #fff;
|
|
9674
|
+
border-color: #0d6efd;
|
|
9675
|
+
box-shadow: none;
|
|
9676
|
+
}
|
|
9677
|
+
.e-appbar.e-inherit {
|
|
9678
|
+
background: inherit;
|
|
9679
|
+
color: inherit;
|
|
9680
|
+
border-color: inherit;
|
|
9681
|
+
border: 1px solid;
|
|
9682
|
+
}
|
|
9683
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9684
|
+
border-left: 1px solid;
|
|
9685
|
+
}
|
|
9686
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9687
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9688
|
+
background: inherit;
|
|
9689
|
+
color: inherit;
|
|
9690
|
+
border-color: inherit;
|
|
9691
|
+
box-shadow: none;
|
|
9692
|
+
}
|
|
9693
|
+
.e-appbar.e-horizontal-bottom {
|
|
9694
|
+
box-shadow: none;
|
|
9695
|
+
}
|
|
9696
|
+
|
|
9697
|
+
.e-light.e-inherit.e-input-group, .e-light.e-inherit.e-input-group.e-control-wrapper, .e-light.e-inherit.e-float-input, .e-light.e-inherit.e-float-input.e-input-group, .e-light.e-inherit.e-float-input.e-control-wrapper, .e-light.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-light.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-light.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9698
|
+
background: #343a40;
|
|
9699
|
+
color: #fff;
|
|
9700
|
+
}
|
|
9701
|
+
|
|
9702
|
+
.e-dark.e-inherit.e-input-group, .e-dark.e-inherit.e-input-group.e-control-wrapper, .e-dark.e-inherit.e-float-input, .e-dark.e-inherit.e-float-input.e-input-group, .e-dark.e-inherit.e-float-input.e-control-wrapper, .e-dark.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-dark.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-dark.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9703
|
+
background: #dee2e6;
|
|
9704
|
+
color: #212529;
|
|
9705
|
+
}
|
|
9706
|
+
|
|
9707
|
+
.e-primary.e-inherit.e-input-group, .e-primary.e-inherit.e-input-group.e-control-wrapper, .e-primary.e-inherit.e-float-input, .e-primary.e-inherit.e-float-input.e-input-group, .e-primary.e-inherit.e-float-input.e-control-wrapper, .e-primary.e-inherit.e-float-input.e-input-group.e-control-wrapper, .e-primary.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover, .e-primary.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9708
|
+
background: #0d6efd;
|
|
9709
|
+
color: #fff;
|
|
9710
|
+
}
|
|
9711
|
+
|
|
9712
|
+
.e-inherit.e-input-group,
|
|
9713
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9714
|
+
.e-inherit.e-float-input,
|
|
9715
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9716
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9717
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9718
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9719
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9720
|
+
color: inherit;
|
|
9721
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9722
|
+
}
|
|
9723
|
+
|
|
9724
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9725
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9726
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9727
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9728
|
+
box-shadow: none;
|
|
9729
|
+
}
|
|
9730
|
+
|
|
9731
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9732
|
+
color: inherit;
|
|
9733
|
+
opacity: 0.8;
|
|
9734
|
+
}
|
|
9735
|
+
|
|
9736
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9737
|
+
color: inherit;
|
|
9738
|
+
opacity: 0.8;
|
|
9739
|
+
}
|
|
9740
|
+
|
|
9741
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9742
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9743
|
+
border: none;
|
|
9744
|
+
color: inherit;
|
|
9745
|
+
}
|
|
9746
|
+
|
|
9747
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9748
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9749
|
+
color: inherit;
|
|
9426
9750
|
}
|