@syncfusion/ej2-navigations 20.2.50 → 20.3.48
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 +35 -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 +345 -35
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +364 -35
- 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/accordion/accordion-model.d.ts +1 -1
- package/src/accordion/accordion.js +7 -3
- 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 +21 -14
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +9 -3
- 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
package/styles/material-dark.css
CHANGED
|
@@ -225,6 +225,8 @@
|
|
|
225
225
|
padding: 0;
|
|
226
226
|
white-space: normal;
|
|
227
227
|
width: 100%;
|
|
228
|
+
/* stylelint-disable */
|
|
229
|
+
/* stylelint-enable */
|
|
228
230
|
}
|
|
229
231
|
.e-pager [class^=e-] {
|
|
230
232
|
box-sizing: border-box;
|
|
@@ -351,10 +353,10 @@
|
|
|
351
353
|
margin: 5px 6px 5px 18px;
|
|
352
354
|
overflow: hidden;
|
|
353
355
|
}
|
|
354
|
-
.e-pager .e-lastpage:
|
|
356
|
+
.e-pager .e-lastpage:hover {
|
|
355
357
|
border-radius: 0 4px 4px 0;
|
|
356
358
|
}
|
|
357
|
-
.e-pager .e-firstpage:
|
|
359
|
+
.e-pager .e-firstpage:hover {
|
|
358
360
|
border-radius: 4px 0 0 4px;
|
|
359
361
|
}
|
|
360
362
|
.e-pager .e-pagermessage,
|
|
@@ -820,8 +822,6 @@
|
|
|
820
822
|
display: inline-block;
|
|
821
823
|
height: inherit;
|
|
822
824
|
position: relative;
|
|
823
|
-
-ms-touch-action: none;
|
|
824
|
-
touch-action: none;
|
|
825
825
|
}
|
|
826
826
|
.e-hscroll .e-hscroll-content > * {
|
|
827
827
|
pointer-events: auto;
|
|
@@ -1056,8 +1056,6 @@
|
|
|
1056
1056
|
display: inline-block;
|
|
1057
1057
|
height: auto;
|
|
1058
1058
|
position: relative;
|
|
1059
|
-
-ms-touch-action: none;
|
|
1060
|
-
touch-action: none;
|
|
1061
1059
|
width: 100%;
|
|
1062
1060
|
}
|
|
1063
1061
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1219,6 +1217,7 @@
|
|
|
1219
1217
|
}
|
|
1220
1218
|
|
|
1221
1219
|
/*! toolbar layout */
|
|
1220
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1222
1221
|
.e-bigger .e-toolbar,
|
|
1223
1222
|
.e-toolbar.e-bigger {
|
|
1224
1223
|
height: 56px;
|
|
@@ -1564,8 +1563,6 @@
|
|
|
1564
1563
|
height: 42px;
|
|
1565
1564
|
min-height: 42px;
|
|
1566
1565
|
position: relative;
|
|
1567
|
-
-ms-touch-action: none;
|
|
1568
|
-
touch-action: none;
|
|
1569
1566
|
-webkit-user-select: none;
|
|
1570
1567
|
-ms-user-select: none;
|
|
1571
1568
|
user-select: none;
|
|
@@ -2008,6 +2005,10 @@
|
|
|
2008
2005
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
2009
2006
|
margin-right: 3px;
|
|
2010
2007
|
}
|
|
2008
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
2009
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
2010
|
+
touch-action: pan-y pinch-zoom;
|
|
2011
|
+
}
|
|
2011
2012
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
2012
2013
|
margin-right: 3px;
|
|
2013
2014
|
}
|
|
@@ -2126,6 +2127,10 @@
|
|
|
2126
2127
|
bottom: auto;
|
|
2127
2128
|
top: 0;
|
|
2128
2129
|
}
|
|
2130
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2131
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2132
|
+
touch-action: pan-x pinch-zoom;
|
|
2133
|
+
}
|
|
2129
2134
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2130
2135
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2131
2136
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2175,6 +2180,7 @@
|
|
|
2175
2180
|
}
|
|
2176
2181
|
|
|
2177
2182
|
/*! toolbar theme */
|
|
2183
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2178
2184
|
.e-toolbar {
|
|
2179
2185
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2180
2186
|
background: #212121;
|
|
@@ -2586,6 +2592,7 @@
|
|
|
2586
2592
|
}
|
|
2587
2593
|
|
|
2588
2594
|
/*! accordion theme */
|
|
2595
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2589
2596
|
.e-accordion {
|
|
2590
2597
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2591
2598
|
background: #303030;
|
|
@@ -2705,7 +2712,8 @@
|
|
|
2705
2712
|
padding: 0;
|
|
2706
2713
|
position: relative;
|
|
2707
2714
|
}
|
|
2708
|
-
.e-carousel .e-carousel-items
|
|
2715
|
+
.e-carousel .e-carousel-items,
|
|
2716
|
+
.e-carousel .e-carousel-slide-container {
|
|
2709
2717
|
height: 100%;
|
|
2710
2718
|
margin: 0;
|
|
2711
2719
|
overflow: hidden;
|
|
@@ -2713,7 +2721,41 @@
|
|
|
2713
2721
|
position: relative;
|
|
2714
2722
|
width: 100%;
|
|
2715
2723
|
}
|
|
2716
|
-
.e-carousel.e-
|
|
2724
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2725
|
+
padding: 0 100px;
|
|
2726
|
+
}
|
|
2727
|
+
@media screen and (max-width: 480px) {
|
|
2728
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2729
|
+
padding: 0 75px;
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2732
|
+
@media screen and (max-width: 320px) {
|
|
2733
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2734
|
+
padding: 0 50px;
|
|
2735
|
+
}
|
|
2736
|
+
}
|
|
2737
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2738
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2739
|
+
display: -ms-flexbox;
|
|
2740
|
+
display: flex;
|
|
2741
|
+
-ms-flex-direction: row;
|
|
2742
|
+
flex-direction: row;
|
|
2743
|
+
transition-property: transform;
|
|
2744
|
+
transition-duration: 0.6s;
|
|
2745
|
+
transition-timing-function: ease-in-out;
|
|
2746
|
+
}
|
|
2747
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2748
|
+
height: 100%;
|
|
2749
|
+
overflow: hidden;
|
|
2750
|
+
padding: 0;
|
|
2751
|
+
position: relative;
|
|
2752
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2753
|
+
}
|
|
2754
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2755
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2756
|
+
transition: transform 0.6s ease-in-out;
|
|
2757
|
+
}
|
|
2758
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2717
2759
|
backface-visibility: hidden;
|
|
2718
2760
|
display: none;
|
|
2719
2761
|
float: left;
|
|
@@ -2723,16 +2765,16 @@
|
|
|
2723
2765
|
transition: transform 0.6s ease-in-out;
|
|
2724
2766
|
width: 100%;
|
|
2725
2767
|
}
|
|
2726
|
-
.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 {
|
|
2768
|
+
.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 {
|
|
2727
2769
|
display: block;
|
|
2728
2770
|
}
|
|
2729
|
-
.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 {
|
|
2771
|
+
.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 {
|
|
2730
2772
|
transform: translateX(100%);
|
|
2731
2773
|
}
|
|
2732
|
-
.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 {
|
|
2774
|
+
.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 {
|
|
2733
2775
|
transform: translateX(-100%);
|
|
2734
2776
|
}
|
|
2735
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2777
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2736
2778
|
backface-visibility: hidden;
|
|
2737
2779
|
display: block;
|
|
2738
2780
|
float: left;
|
|
@@ -2744,19 +2786,19 @@
|
|
|
2744
2786
|
width: 100%;
|
|
2745
2787
|
z-index: 0;
|
|
2746
2788
|
}
|
|
2747
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2789
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2748
2790
|
opacity: 1;
|
|
2749
2791
|
z-index: 1;
|
|
2750
2792
|
}
|
|
2751
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2793
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2752
2794
|
display: none;
|
|
2753
2795
|
height: 100%;
|
|
2754
2796
|
width: 100%;
|
|
2755
2797
|
}
|
|
2756
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2798
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2757
2799
|
display: block;
|
|
2758
2800
|
}
|
|
2759
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2801
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2760
2802
|
display: block;
|
|
2761
2803
|
height: 100%;
|
|
2762
2804
|
left: 0;
|
|
@@ -2766,7 +2808,7 @@
|
|
|
2766
2808
|
top: 0;
|
|
2767
2809
|
width: 100%;
|
|
2768
2810
|
}
|
|
2769
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2811
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2770
2812
|
opacity: 1;
|
|
2771
2813
|
pointer-events: visible;
|
|
2772
2814
|
}
|
|
@@ -5069,7 +5111,7 @@
|
|
|
5069
5111
|
right: -18px;
|
|
5070
5112
|
}
|
|
5071
5113
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5072
|
-
top: initial !important;
|
|
5114
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5073
5115
|
}
|
|
5074
5116
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5075
5117
|
float: left;
|
|
@@ -6685,12 +6727,14 @@
|
|
|
6685
6727
|
color: rgba(255, 255, 255, 0.7);
|
|
6686
6728
|
}
|
|
6687
6729
|
|
|
6730
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6688
6731
|
@keyframes e-input-ripple {
|
|
6689
6732
|
100% {
|
|
6690
6733
|
opacity: 0;
|
|
6691
6734
|
transform: scale(4);
|
|
6692
6735
|
}
|
|
6693
6736
|
}
|
|
6737
|
+
/* stylelint-disable */
|
|
6694
6738
|
/*! TreeView icons */
|
|
6695
6739
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6696
6740
|
content: "\e22f";
|
|
@@ -6714,6 +6758,7 @@
|
|
|
6714
6758
|
content: "\e22a";
|
|
6715
6759
|
}
|
|
6716
6760
|
|
|
6761
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6717
6762
|
@keyframes rotation {
|
|
6718
6763
|
from {
|
|
6719
6764
|
transform: rotate(0deg);
|
|
@@ -7242,6 +7287,8 @@
|
|
|
7242
7287
|
pointer-events: auto;
|
|
7243
7288
|
}
|
|
7244
7289
|
|
|
7290
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7291
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7245
7292
|
.e-bigger .e-treeview .e-list-text,
|
|
7246
7293
|
.e-treeview.e-bigger .e-list-text {
|
|
7247
7294
|
font-size: 14px;
|
|
@@ -7254,6 +7301,7 @@
|
|
|
7254
7301
|
}
|
|
7255
7302
|
.e-treeview {
|
|
7256
7303
|
-webkit-tap-highlight-color: transparent;
|
|
7304
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7257
7305
|
}
|
|
7258
7306
|
.e-treeview .e-text-content,
|
|
7259
7307
|
.e-treeview .e-fullrow {
|
|
@@ -7422,6 +7470,7 @@
|
|
|
7422
7470
|
border-left-color: transparent;
|
|
7423
7471
|
}
|
|
7424
7472
|
|
|
7473
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7425
7474
|
ejs-sidebar {
|
|
7426
7475
|
display: none;
|
|
7427
7476
|
}
|
|
@@ -7431,6 +7480,7 @@ ejs-sidebar {
|
|
|
7431
7480
|
}
|
|
7432
7481
|
|
|
7433
7482
|
.e-sidebar {
|
|
7483
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7434
7484
|
-webkit-tap-highlight-color: transparent;
|
|
7435
7485
|
background: #424242;
|
|
7436
7486
|
height: 100%;
|
|
@@ -7544,10 +7594,12 @@ ejs-sidebar {
|
|
|
7544
7594
|
touch-action: none;
|
|
7545
7595
|
}
|
|
7546
7596
|
|
|
7597
|
+
/* stylelint-disable */
|
|
7547
7598
|
.e-sidebar-overflow {
|
|
7548
7599
|
overflow-x: hidden !important;
|
|
7549
7600
|
}
|
|
7550
7601
|
|
|
7602
|
+
/* stylelint-enable */
|
|
7551
7603
|
.e-sidebar-overlay {
|
|
7552
7604
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7553
7605
|
height: 100%;
|
|
@@ -8277,6 +8329,8 @@ ejs-sidebar {
|
|
|
8277
8329
|
border: 1px solid transparent;
|
|
8278
8330
|
overflow-y: auto;
|
|
8279
8331
|
width: 100%;
|
|
8332
|
+
/* stylelint-disable */
|
|
8333
|
+
/* stylelint-enable */
|
|
8280
8334
|
}
|
|
8281
8335
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8282
8336
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8638,6 +8692,26 @@ ejs-sidebar {
|
|
|
8638
8692
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8639
8693
|
background: rgba(255, 255, 255, 0.18);
|
|
8640
8694
|
}
|
|
8695
|
+
.e-menu-wrapper.e-inherit,
|
|
8696
|
+
.e-menu-container.e-inherit {
|
|
8697
|
+
border: 0;
|
|
8698
|
+
}
|
|
8699
|
+
.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,
|
|
8700
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8701
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8702
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8703
|
+
color: inherit;
|
|
8704
|
+
}
|
|
8705
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8706
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8707
|
+
background: inherit;
|
|
8708
|
+
}
|
|
8709
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8710
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8711
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8712
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8713
|
+
color: inherit;
|
|
8714
|
+
}
|
|
8641
8715
|
|
|
8642
8716
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8643
8717
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9029,4 +9103,249 @@ ejs-sidebar {
|
|
|
9029
9103
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9030
9104
|
background-color: rgba(255, 255, 255, 0.1);
|
|
9031
9105
|
color: #fff;
|
|
9106
|
+
}
|
|
9107
|
+
|
|
9108
|
+
/*! AppBar component material-dark theme definitions and variables */
|
|
9109
|
+
/*! appbar component styles */
|
|
9110
|
+
.e-bigger .e-appbar,
|
|
9111
|
+
.e-appbar.e-bigger {
|
|
9112
|
+
height: 56px;
|
|
9113
|
+
font-size: 14px;
|
|
9114
|
+
}
|
|
9115
|
+
.e-bigger .e-appbar.e-dense,
|
|
9116
|
+
.e-appbar.e-bigger.e-dense {
|
|
9117
|
+
height: 48px;
|
|
9118
|
+
}
|
|
9119
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9120
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9121
|
+
height: 112px;
|
|
9122
|
+
}
|
|
9123
|
+
|
|
9124
|
+
.e-appbar {
|
|
9125
|
+
display: -ms-flexbox;
|
|
9126
|
+
display: flex;
|
|
9127
|
+
width: 100%;
|
|
9128
|
+
height: 48px;
|
|
9129
|
+
-ms-flex-negative: 0;
|
|
9130
|
+
flex-shrink: 0;
|
|
9131
|
+
-ms-flex-direction: row;
|
|
9132
|
+
flex-direction: row;
|
|
9133
|
+
position: relative;
|
|
9134
|
+
-ms-flex-align: center;
|
|
9135
|
+
align-items: center;
|
|
9136
|
+
padding: 8px;
|
|
9137
|
+
overflow: hidden;
|
|
9138
|
+
font-size: 14px;
|
|
9139
|
+
}
|
|
9140
|
+
.e-appbar > div:first-child {
|
|
9141
|
+
display: -ms-flexbox;
|
|
9142
|
+
display: flex;
|
|
9143
|
+
-ms-flex-align: center;
|
|
9144
|
+
align-items: center;
|
|
9145
|
+
width: 100%;
|
|
9146
|
+
height: 100%;
|
|
9147
|
+
}
|
|
9148
|
+
.e-appbar.e-sticky {
|
|
9149
|
+
position: sticky;
|
|
9150
|
+
top: 0;
|
|
9151
|
+
z-index: 1000;
|
|
9152
|
+
}
|
|
9153
|
+
.e-appbar.e-prominent {
|
|
9154
|
+
height: 94px;
|
|
9155
|
+
-ms-flex-align: start;
|
|
9156
|
+
align-items: flex-start;
|
|
9157
|
+
}
|
|
9158
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9159
|
+
-ms-flex-align: start;
|
|
9160
|
+
align-items: flex-start;
|
|
9161
|
+
}
|
|
9162
|
+
.e-appbar.e-dense {
|
|
9163
|
+
height: 40px;
|
|
9164
|
+
}
|
|
9165
|
+
.e-appbar.e-horizontal-bottom {
|
|
9166
|
+
position: absolute;
|
|
9167
|
+
bottom: 0;
|
|
9168
|
+
right: 0;
|
|
9169
|
+
left: 0;
|
|
9170
|
+
}
|
|
9171
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9172
|
+
position: fixed;
|
|
9173
|
+
top: auto;
|
|
9174
|
+
}
|
|
9175
|
+
.e-appbar .e-appbar-separator {
|
|
9176
|
+
height: 32px;
|
|
9177
|
+
}
|
|
9178
|
+
.e-appbar .e-appbar-spacer {
|
|
9179
|
+
-ms-flex-positive: 1;
|
|
9180
|
+
flex-grow: 1;
|
|
9181
|
+
}
|
|
9182
|
+
|
|
9183
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9184
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9185
|
+
overflow: hidden;
|
|
9186
|
+
}
|
|
9187
|
+
|
|
9188
|
+
/*! appbar component theme */
|
|
9189
|
+
.e-appbar {
|
|
9190
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.16);
|
|
9191
|
+
}
|
|
9192
|
+
.e-appbar.e-light {
|
|
9193
|
+
background: #303030;
|
|
9194
|
+
color: #fff;
|
|
9195
|
+
border-color: #303030;
|
|
9196
|
+
border: none;
|
|
9197
|
+
}
|
|
9198
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9199
|
+
border-left: 1px solid #fff;
|
|
9200
|
+
}
|
|
9201
|
+
.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,
|
|
9202
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9203
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9204
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9205
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9206
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9207
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9208
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9209
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9210
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9211
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9212
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9213
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9214
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9215
|
+
}
|
|
9216
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9217
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9218
|
+
background: #303030;
|
|
9219
|
+
color: #fff;
|
|
9220
|
+
border-color: #303030;
|
|
9221
|
+
box-shadow: none;
|
|
9222
|
+
}
|
|
9223
|
+
.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,
|
|
9224
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9225
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9226
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9227
|
+
}
|
|
9228
|
+
.e-appbar.e-dark {
|
|
9229
|
+
background: #9e9e9e;
|
|
9230
|
+
color: #fff;
|
|
9231
|
+
border-color: #9e9e9e;
|
|
9232
|
+
}
|
|
9233
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9234
|
+
border-left: 1px solid #fff;
|
|
9235
|
+
}
|
|
9236
|
+
.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,
|
|
9237
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9238
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9239
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9240
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9241
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9242
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9243
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9244
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9245
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9246
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9247
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9248
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9249
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9250
|
+
}
|
|
9251
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9252
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9253
|
+
background: #9e9e9e;
|
|
9254
|
+
color: #fff;
|
|
9255
|
+
border-color: #9e9e9e;
|
|
9256
|
+
box-shadow: none;
|
|
9257
|
+
}
|
|
9258
|
+
.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,
|
|
9259
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9260
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9261
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9262
|
+
}
|
|
9263
|
+
.e-appbar.e-primary {
|
|
9264
|
+
background: #3f51b5;
|
|
9265
|
+
color: #fff;
|
|
9266
|
+
border-color: #3f51b5;
|
|
9267
|
+
}
|
|
9268
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9269
|
+
border-left: 1px solid #fff;
|
|
9270
|
+
}
|
|
9271
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9272
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9273
|
+
background: #3f51b5;
|
|
9274
|
+
color: #fff;
|
|
9275
|
+
border-color: #3f51b5;
|
|
9276
|
+
box-shadow: none;
|
|
9277
|
+
}
|
|
9278
|
+
.e-appbar.e-inherit {
|
|
9279
|
+
background: inherit;
|
|
9280
|
+
color: inherit;
|
|
9281
|
+
border-color: inherit;
|
|
9282
|
+
border: 1px solid;
|
|
9283
|
+
}
|
|
9284
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9285
|
+
border-left: 1px solid;
|
|
9286
|
+
}
|
|
9287
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9288
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9289
|
+
background: inherit;
|
|
9290
|
+
color: inherit;
|
|
9291
|
+
border-color: inherit;
|
|
9292
|
+
box-shadow: none;
|
|
9293
|
+
}
|
|
9294
|
+
.e-appbar.e-horizontal-bottom {
|
|
9295
|
+
box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1), 0 -2px 6px rgba(0, 0, 0, 0.2);
|
|
9296
|
+
}
|
|
9297
|
+
|
|
9298
|
+
.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 {
|
|
9299
|
+
background: #303030;
|
|
9300
|
+
color: #fff;
|
|
9301
|
+
}
|
|
9302
|
+
|
|
9303
|
+
.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 {
|
|
9304
|
+
background: #9e9e9e;
|
|
9305
|
+
color: #fff;
|
|
9306
|
+
}
|
|
9307
|
+
|
|
9308
|
+
.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 {
|
|
9309
|
+
background: #3f51b5;
|
|
9310
|
+
color: #fff;
|
|
9311
|
+
}
|
|
9312
|
+
|
|
9313
|
+
.e-inherit.e-input-group,
|
|
9314
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9315
|
+
.e-inherit.e-float-input,
|
|
9316
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9317
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9318
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9319
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9320
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9321
|
+
color: inherit;
|
|
9322
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9323
|
+
}
|
|
9324
|
+
|
|
9325
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9326
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9327
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9328
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9329
|
+
box-shadow: none;
|
|
9330
|
+
}
|
|
9331
|
+
|
|
9332
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9333
|
+
color: inherit;
|
|
9334
|
+
opacity: 0.8;
|
|
9335
|
+
}
|
|
9336
|
+
|
|
9337
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9338
|
+
color: inherit;
|
|
9339
|
+
opacity: 0.8;
|
|
9340
|
+
}
|
|
9341
|
+
|
|
9342
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9343
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9344
|
+
border: none;
|
|
9345
|
+
color: inherit;
|
|
9346
|
+
}
|
|
9347
|
+
|
|
9348
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9349
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9350
|
+
color: inherit;
|
|
9032
9351
|
}
|