@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
package/styles/highcontrast.css
CHANGED
|
@@ -224,6 +224,8 @@
|
|
|
224
224
|
padding: 13px 0 12px;
|
|
225
225
|
white-space: normal;
|
|
226
226
|
width: 100%;
|
|
227
|
+
/* stylelint-disable */
|
|
228
|
+
/* stylelint-enable */
|
|
227
229
|
}
|
|
228
230
|
.e-pager [class^=e-] {
|
|
229
231
|
box-sizing: border-box;
|
|
@@ -350,10 +352,10 @@
|
|
|
350
352
|
margin: 0 6px -3px;
|
|
351
353
|
overflow: hidden;
|
|
352
354
|
}
|
|
353
|
-
.e-pager .e-lastpage:
|
|
355
|
+
.e-pager .e-lastpage:hover {
|
|
354
356
|
border-radius: 0;
|
|
355
357
|
}
|
|
356
|
-
.e-pager .e-firstpage:
|
|
358
|
+
.e-pager .e-firstpage:hover {
|
|
357
359
|
border-radius: 0;
|
|
358
360
|
}
|
|
359
361
|
.e-pager .e-pagermessage,
|
|
@@ -810,8 +812,6 @@
|
|
|
810
812
|
display: inline-block;
|
|
811
813
|
height: inherit;
|
|
812
814
|
position: relative;
|
|
813
|
-
-ms-touch-action: none;
|
|
814
|
-
touch-action: none;
|
|
815
815
|
}
|
|
816
816
|
.e-hscroll .e-hscroll-content > * {
|
|
817
817
|
pointer-events: auto;
|
|
@@ -1037,8 +1037,6 @@
|
|
|
1037
1037
|
display: inline-block;
|
|
1038
1038
|
height: auto;
|
|
1039
1039
|
position: relative;
|
|
1040
|
-
-ms-touch-action: none;
|
|
1041
|
-
touch-action: none;
|
|
1042
1040
|
width: 100%;
|
|
1043
1041
|
}
|
|
1044
1042
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1175,6 +1173,7 @@
|
|
|
1175
1173
|
}
|
|
1176
1174
|
|
|
1177
1175
|
/*! toolbar layout */
|
|
1176
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1178
1177
|
.e-bigger .e-toolbar,
|
|
1179
1178
|
.e-toolbar.e-bigger {
|
|
1180
1179
|
height: 50px;
|
|
@@ -1519,8 +1518,6 @@
|
|
|
1519
1518
|
height: 40px;
|
|
1520
1519
|
min-height: 40px;
|
|
1521
1520
|
position: relative;
|
|
1522
|
-
-ms-touch-action: none;
|
|
1523
|
-
touch-action: none;
|
|
1524
1521
|
-webkit-user-select: none;
|
|
1525
1522
|
-ms-user-select: none;
|
|
1526
1523
|
user-select: none;
|
|
@@ -1962,6 +1959,10 @@
|
|
|
1962
1959
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1963
1960
|
margin-right: 3px;
|
|
1964
1961
|
}
|
|
1962
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1963
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1964
|
+
touch-action: pan-y pinch-zoom;
|
|
1965
|
+
}
|
|
1965
1966
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1966
1967
|
margin-right: 3px;
|
|
1967
1968
|
}
|
|
@@ -2083,6 +2084,10 @@
|
|
|
2083
2084
|
bottom: auto;
|
|
2084
2085
|
top: 0;
|
|
2085
2086
|
}
|
|
2087
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2088
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2089
|
+
touch-action: pan-x pinch-zoom;
|
|
2090
|
+
}
|
|
2086
2091
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2087
2092
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2088
2093
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2132,6 +2137,7 @@
|
|
|
2132
2137
|
}
|
|
2133
2138
|
|
|
2134
2139
|
/*! toolbar theme */
|
|
2140
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2135
2141
|
.e-toolbar {
|
|
2136
2142
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2137
2143
|
background: #000;
|
|
@@ -2585,6 +2591,7 @@
|
|
|
2585
2591
|
}
|
|
2586
2592
|
|
|
2587
2593
|
/*! accordion theme */
|
|
2594
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2588
2595
|
.e-accordion {
|
|
2589
2596
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2590
2597
|
background: #000;
|
|
@@ -2769,7 +2776,8 @@
|
|
|
2769
2776
|
padding: 0;
|
|
2770
2777
|
position: relative;
|
|
2771
2778
|
}
|
|
2772
|
-
.e-carousel .e-carousel-items
|
|
2779
|
+
.e-carousel .e-carousel-items,
|
|
2780
|
+
.e-carousel .e-carousel-slide-container {
|
|
2773
2781
|
height: 100%;
|
|
2774
2782
|
margin: 0;
|
|
2775
2783
|
overflow: hidden;
|
|
@@ -2777,7 +2785,41 @@
|
|
|
2777
2785
|
position: relative;
|
|
2778
2786
|
width: 100%;
|
|
2779
2787
|
}
|
|
2780
|
-
.e-carousel.e-
|
|
2788
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2789
|
+
padding: 0 100px;
|
|
2790
|
+
}
|
|
2791
|
+
@media screen and (max-width: 480px) {
|
|
2792
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2793
|
+
padding: 0 75px;
|
|
2794
|
+
}
|
|
2795
|
+
}
|
|
2796
|
+
@media screen and (max-width: 320px) {
|
|
2797
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2798
|
+
padding: 0 50px;
|
|
2799
|
+
}
|
|
2800
|
+
}
|
|
2801
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2802
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2803
|
+
display: -ms-flexbox;
|
|
2804
|
+
display: flex;
|
|
2805
|
+
-ms-flex-direction: row;
|
|
2806
|
+
flex-direction: row;
|
|
2807
|
+
transition-property: transform;
|
|
2808
|
+
transition-duration: 0.6s;
|
|
2809
|
+
transition-timing-function: ease-in-out;
|
|
2810
|
+
}
|
|
2811
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2812
|
+
height: 100%;
|
|
2813
|
+
overflow: hidden;
|
|
2814
|
+
padding: 0;
|
|
2815
|
+
position: relative;
|
|
2816
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2817
|
+
}
|
|
2818
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2819
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2820
|
+
transition: transform 0.6s ease-in-out;
|
|
2821
|
+
}
|
|
2822
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2781
2823
|
backface-visibility: hidden;
|
|
2782
2824
|
display: none;
|
|
2783
2825
|
float: left;
|
|
@@ -2787,16 +2829,16 @@
|
|
|
2787
2829
|
transition: transform 0.6s ease-in-out;
|
|
2788
2830
|
width: 100%;
|
|
2789
2831
|
}
|
|
2790
|
-
.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 {
|
|
2832
|
+
.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 {
|
|
2791
2833
|
display: block;
|
|
2792
2834
|
}
|
|
2793
|
-
.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 {
|
|
2835
|
+
.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 {
|
|
2794
2836
|
transform: translateX(100%);
|
|
2795
2837
|
}
|
|
2796
|
-
.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 {
|
|
2838
|
+
.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 {
|
|
2797
2839
|
transform: translateX(-100%);
|
|
2798
2840
|
}
|
|
2799
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2841
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2800
2842
|
backface-visibility: hidden;
|
|
2801
2843
|
display: block;
|
|
2802
2844
|
float: left;
|
|
@@ -2808,19 +2850,19 @@
|
|
|
2808
2850
|
width: 100%;
|
|
2809
2851
|
z-index: 0;
|
|
2810
2852
|
}
|
|
2811
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2853
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2812
2854
|
opacity: 1;
|
|
2813
2855
|
z-index: 1;
|
|
2814
2856
|
}
|
|
2815
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2857
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2816
2858
|
display: none;
|
|
2817
2859
|
height: 100%;
|
|
2818
2860
|
width: 100%;
|
|
2819
2861
|
}
|
|
2820
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2862
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2821
2863
|
display: block;
|
|
2822
2864
|
}
|
|
2823
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2865
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2824
2866
|
display: block;
|
|
2825
2867
|
height: 100%;
|
|
2826
2868
|
left: 0;
|
|
@@ -2830,7 +2872,7 @@
|
|
|
2830
2872
|
top: 0;
|
|
2831
2873
|
width: 100%;
|
|
2832
2874
|
}
|
|
2833
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2875
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2834
2876
|
opacity: 1;
|
|
2835
2877
|
pointer-events: visible;
|
|
2836
2878
|
}
|
|
@@ -5234,7 +5276,7 @@
|
|
|
5234
5276
|
right: -20px;
|
|
5235
5277
|
}
|
|
5236
5278
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5237
|
-
top: initial !important;
|
|
5279
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5238
5280
|
}
|
|
5239
5281
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5240
5282
|
float: left;
|
|
@@ -7091,7 +7133,9 @@
|
|
|
7091
7133
|
color: #fff;
|
|
7092
7134
|
}
|
|
7093
7135
|
|
|
7136
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7094
7137
|
/*! TreeView's high contrast theme wise override definitions and variables */
|
|
7138
|
+
/* stylelint-disable */
|
|
7095
7139
|
/*! TreeView icons */
|
|
7096
7140
|
.e-treeview .e-list-item div.e-icons::before {
|
|
7097
7141
|
content: "\e22e";
|
|
@@ -7115,6 +7159,7 @@
|
|
|
7115
7159
|
content: "\e22a";
|
|
7116
7160
|
}
|
|
7117
7161
|
|
|
7162
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7118
7163
|
@keyframes rotation {
|
|
7119
7164
|
from {
|
|
7120
7165
|
transform: rotate(0deg);
|
|
@@ -7643,6 +7688,8 @@
|
|
|
7643
7688
|
pointer-events: auto;
|
|
7644
7689
|
}
|
|
7645
7690
|
|
|
7691
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7692
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7646
7693
|
.e-bigger .e-treeview .e-list-text,
|
|
7647
7694
|
.e-treeview.e-bigger .e-list-text {
|
|
7648
7695
|
font-size: 15px;
|
|
@@ -7655,6 +7702,7 @@
|
|
|
7655
7702
|
}
|
|
7656
7703
|
.e-treeview {
|
|
7657
7704
|
-webkit-tap-highlight-color: transparent;
|
|
7705
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7658
7706
|
}
|
|
7659
7707
|
.e-treeview .e-text-content,
|
|
7660
7708
|
.e-treeview .e-fullrow {
|
|
@@ -7839,6 +7887,7 @@
|
|
|
7839
7887
|
border-left-color: transparent;
|
|
7840
7888
|
}
|
|
7841
7889
|
|
|
7890
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7842
7891
|
ejs-sidebar {
|
|
7843
7892
|
display: none;
|
|
7844
7893
|
}
|
|
@@ -7848,6 +7897,7 @@ ejs-sidebar {
|
|
|
7848
7897
|
}
|
|
7849
7898
|
|
|
7850
7899
|
.e-sidebar {
|
|
7900
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7851
7901
|
-webkit-tap-highlight-color: transparent;
|
|
7852
7902
|
background: #000;
|
|
7853
7903
|
height: 100%;
|
|
@@ -7961,10 +8011,12 @@ ejs-sidebar {
|
|
|
7961
8011
|
touch-action: none;
|
|
7962
8012
|
}
|
|
7963
8013
|
|
|
8014
|
+
/* stylelint-disable */
|
|
7964
8015
|
.e-sidebar-overflow {
|
|
7965
8016
|
overflow-x: hidden !important;
|
|
7966
8017
|
}
|
|
7967
8018
|
|
|
8019
|
+
/* stylelint-enable */
|
|
7968
8020
|
.e-sidebar-overlay {
|
|
7969
8021
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7970
8022
|
height: 100%;
|
|
@@ -8677,6 +8729,8 @@ ejs-sidebar {
|
|
|
8677
8729
|
border: 1px solid #fff;
|
|
8678
8730
|
overflow-y: auto;
|
|
8679
8731
|
width: 100%;
|
|
8732
|
+
/* stylelint-disable */
|
|
8733
|
+
/* stylelint-enable */
|
|
8680
8734
|
}
|
|
8681
8735
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8682
8736
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -9038,6 +9092,26 @@ ejs-sidebar {
|
|
|
9038
9092
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
9039
9093
|
background: #ffd939;
|
|
9040
9094
|
}
|
|
9095
|
+
.e-menu-wrapper.e-inherit,
|
|
9096
|
+
.e-menu-container.e-inherit {
|
|
9097
|
+
border: 0;
|
|
9098
|
+
}
|
|
9099
|
+
.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,
|
|
9100
|
+
.e-menu-container.e-inherit .e-menu,
|
|
9101
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
9102
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
9103
|
+
color: inherit;
|
|
9104
|
+
}
|
|
9105
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
9106
|
+
.e-menu-container.e-inherit .e-menu {
|
|
9107
|
+
background: inherit;
|
|
9108
|
+
}
|
|
9109
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9110
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9111
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9112
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9113
|
+
color: inherit;
|
|
9114
|
+
}
|
|
9041
9115
|
|
|
9042
9116
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
9043
9117
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9453,4 +9527,249 @@ ejs-sidebar {
|
|
|
9453
9527
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9454
9528
|
background-color: #685708;
|
|
9455
9529
|
color: #fff;
|
|
9530
|
+
}
|
|
9531
|
+
|
|
9532
|
+
/*! AppBar component highcontrast theme definitions and variables */
|
|
9533
|
+
/*! appbar component styles */
|
|
9534
|
+
.e-bigger .e-appbar,
|
|
9535
|
+
.e-appbar.e-bigger {
|
|
9536
|
+
height: 56px;
|
|
9537
|
+
font-size: 16px;
|
|
9538
|
+
}
|
|
9539
|
+
.e-bigger .e-appbar.e-dense,
|
|
9540
|
+
.e-appbar.e-bigger.e-dense {
|
|
9541
|
+
height: 48px;
|
|
9542
|
+
}
|
|
9543
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9544
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9545
|
+
height: 112px;
|
|
9546
|
+
}
|
|
9547
|
+
|
|
9548
|
+
.e-appbar {
|
|
9549
|
+
display: -ms-flexbox;
|
|
9550
|
+
display: flex;
|
|
9551
|
+
width: 100%;
|
|
9552
|
+
height: 48px;
|
|
9553
|
+
-ms-flex-negative: 0;
|
|
9554
|
+
flex-shrink: 0;
|
|
9555
|
+
-ms-flex-direction: row;
|
|
9556
|
+
flex-direction: row;
|
|
9557
|
+
position: relative;
|
|
9558
|
+
-ms-flex-align: center;
|
|
9559
|
+
align-items: center;
|
|
9560
|
+
padding: 8px;
|
|
9561
|
+
overflow: hidden;
|
|
9562
|
+
font-size: 14px;
|
|
9563
|
+
}
|
|
9564
|
+
.e-appbar > div:first-child {
|
|
9565
|
+
display: -ms-flexbox;
|
|
9566
|
+
display: flex;
|
|
9567
|
+
-ms-flex-align: center;
|
|
9568
|
+
align-items: center;
|
|
9569
|
+
width: 100%;
|
|
9570
|
+
height: 100%;
|
|
9571
|
+
}
|
|
9572
|
+
.e-appbar.e-sticky {
|
|
9573
|
+
position: sticky;
|
|
9574
|
+
top: 0;
|
|
9575
|
+
z-index: 1000;
|
|
9576
|
+
}
|
|
9577
|
+
.e-appbar.e-prominent {
|
|
9578
|
+
height: 94px;
|
|
9579
|
+
-ms-flex-align: start;
|
|
9580
|
+
align-items: flex-start;
|
|
9581
|
+
}
|
|
9582
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9583
|
+
-ms-flex-align: start;
|
|
9584
|
+
align-items: flex-start;
|
|
9585
|
+
}
|
|
9586
|
+
.e-appbar.e-dense {
|
|
9587
|
+
height: 40px;
|
|
9588
|
+
}
|
|
9589
|
+
.e-appbar.e-horizontal-bottom {
|
|
9590
|
+
position: absolute;
|
|
9591
|
+
bottom: 0;
|
|
9592
|
+
right: 0;
|
|
9593
|
+
left: 0;
|
|
9594
|
+
}
|
|
9595
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9596
|
+
position: fixed;
|
|
9597
|
+
top: auto;
|
|
9598
|
+
}
|
|
9599
|
+
.e-appbar .e-appbar-separator {
|
|
9600
|
+
height: 32px;
|
|
9601
|
+
}
|
|
9602
|
+
.e-appbar .e-appbar-spacer {
|
|
9603
|
+
-ms-flex-positive: 1;
|
|
9604
|
+
flex-grow: 1;
|
|
9605
|
+
}
|
|
9606
|
+
|
|
9607
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9608
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9609
|
+
overflow: hidden;
|
|
9610
|
+
}
|
|
9611
|
+
|
|
9612
|
+
/*! appbar component theme */
|
|
9613
|
+
.e-appbar {
|
|
9614
|
+
box-shadow: none;
|
|
9615
|
+
}
|
|
9616
|
+
.e-appbar.e-light {
|
|
9617
|
+
background: #000;
|
|
9618
|
+
color: #fff;
|
|
9619
|
+
border-color: #fff;
|
|
9620
|
+
border: 1px solid;
|
|
9621
|
+
}
|
|
9622
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9623
|
+
border-left: 1px solid #fff;
|
|
9624
|
+
}
|
|
9625
|
+
.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,
|
|
9626
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9627
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9628
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9629
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9630
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9631
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9632
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9633
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9634
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9635
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9636
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9637
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9638
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9639
|
+
}
|
|
9640
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9641
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9642
|
+
background: #000;
|
|
9643
|
+
color: #fff;
|
|
9644
|
+
border-color: #fff;
|
|
9645
|
+
box-shadow: none;
|
|
9646
|
+
}
|
|
9647
|
+
.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,
|
|
9648
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9649
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9650
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9651
|
+
}
|
|
9652
|
+
.e-appbar.e-dark {
|
|
9653
|
+
background: #fff;
|
|
9654
|
+
color: #000;
|
|
9655
|
+
border-color: #fff;
|
|
9656
|
+
}
|
|
9657
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9658
|
+
border-left: 1px solid #000;
|
|
9659
|
+
}
|
|
9660
|
+
.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,
|
|
9661
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9662
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9663
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9664
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9665
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9666
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9667
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9668
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9669
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9670
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9671
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9672
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9673
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9674
|
+
}
|
|
9675
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9676
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9677
|
+
background: #fff;
|
|
9678
|
+
color: #000;
|
|
9679
|
+
border-color: #fff;
|
|
9680
|
+
box-shadow: none;
|
|
9681
|
+
}
|
|
9682
|
+
.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,
|
|
9683
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9684
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9685
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9686
|
+
}
|
|
9687
|
+
.e-appbar.e-primary {
|
|
9688
|
+
background: #ffd939;
|
|
9689
|
+
color: #000;
|
|
9690
|
+
border-color: #ffd939;
|
|
9691
|
+
}
|
|
9692
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9693
|
+
border-left: 1px solid #000;
|
|
9694
|
+
}
|
|
9695
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9696
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9697
|
+
background: #ffd939;
|
|
9698
|
+
color: #000;
|
|
9699
|
+
border-color: #ffd939;
|
|
9700
|
+
box-shadow: none;
|
|
9701
|
+
}
|
|
9702
|
+
.e-appbar.e-inherit {
|
|
9703
|
+
background: inherit;
|
|
9704
|
+
color: inherit;
|
|
9705
|
+
border-color: inherit;
|
|
9706
|
+
border: 1px solid;
|
|
9707
|
+
}
|
|
9708
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9709
|
+
border-left: 1px solid;
|
|
9710
|
+
}
|
|
9711
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9712
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9713
|
+
background: inherit;
|
|
9714
|
+
color: inherit;
|
|
9715
|
+
border-color: inherit;
|
|
9716
|
+
box-shadow: none;
|
|
9717
|
+
}
|
|
9718
|
+
.e-appbar.e-horizontal-bottom {
|
|
9719
|
+
box-shadow: none;
|
|
9720
|
+
}
|
|
9721
|
+
|
|
9722
|
+
.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 {
|
|
9723
|
+
background: #000;
|
|
9724
|
+
color: #fff;
|
|
9725
|
+
}
|
|
9726
|
+
|
|
9727
|
+
.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 {
|
|
9728
|
+
background: #fff;
|
|
9729
|
+
color: #000;
|
|
9730
|
+
}
|
|
9731
|
+
|
|
9732
|
+
.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 {
|
|
9733
|
+
background: #ffd939;
|
|
9734
|
+
color: #000;
|
|
9735
|
+
}
|
|
9736
|
+
|
|
9737
|
+
.e-inherit.e-input-group,
|
|
9738
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9739
|
+
.e-inherit.e-float-input,
|
|
9740
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9741
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9742
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9743
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9744
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9745
|
+
color: inherit;
|
|
9746
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9747
|
+
}
|
|
9748
|
+
|
|
9749
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9750
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9751
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9752
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9753
|
+
box-shadow: none;
|
|
9754
|
+
}
|
|
9755
|
+
|
|
9756
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9757
|
+
color: inherit;
|
|
9758
|
+
opacity: 0.8;
|
|
9759
|
+
}
|
|
9760
|
+
|
|
9761
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9762
|
+
color: inherit;
|
|
9763
|
+
opacity: 0.8;
|
|
9764
|
+
}
|
|
9765
|
+
|
|
9766
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9767
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9768
|
+
border: none;
|
|
9769
|
+
color: inherit;
|
|
9770
|
+
}
|
|
9771
|
+
|
|
9772
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9773
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9774
|
+
color: inherit;
|
|
9456
9775
|
}
|
package/styles/highcontrast.scss
CHANGED