@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/fabric-dark.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* !component icons */
|
|
2
2
|
.e-pager .e-icon-last::before,
|
|
3
3
|
.e-grid-menu .e-icon-last::before {
|
|
4
4
|
content: "\e938";
|
|
@@ -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;
|
|
@@ -1024,8 +1024,6 @@
|
|
|
1024
1024
|
display: inline-block;
|
|
1025
1025
|
height: auto;
|
|
1026
1026
|
position: relative;
|
|
1027
|
-
-ms-touch-action: none;
|
|
1028
|
-
touch-action: none;
|
|
1029
1027
|
width: 100%;
|
|
1030
1028
|
}
|
|
1031
1029
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1149,6 +1147,7 @@
|
|
|
1149
1147
|
}
|
|
1150
1148
|
|
|
1151
1149
|
/*! toolbar layout */
|
|
1150
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1152
1151
|
.e-bigger .e-toolbar,
|
|
1153
1152
|
.e-toolbar.e-bigger {
|
|
1154
1153
|
height: 50px;
|
|
@@ -1493,8 +1492,6 @@
|
|
|
1493
1492
|
height: 40px;
|
|
1494
1493
|
min-height: 40px;
|
|
1495
1494
|
position: relative;
|
|
1496
|
-
-ms-touch-action: none;
|
|
1497
|
-
touch-action: none;
|
|
1498
1495
|
-webkit-user-select: none;
|
|
1499
1496
|
-ms-user-select: none;
|
|
1500
1497
|
user-select: none;
|
|
@@ -1936,6 +1933,10 @@
|
|
|
1936
1933
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1937
1934
|
margin-right: 3px;
|
|
1938
1935
|
}
|
|
1936
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1937
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1938
|
+
touch-action: pan-y pinch-zoom;
|
|
1939
|
+
}
|
|
1939
1940
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1940
1941
|
margin-right: 3px;
|
|
1941
1942
|
}
|
|
@@ -2057,6 +2058,10 @@
|
|
|
2057
2058
|
bottom: auto;
|
|
2058
2059
|
top: 0;
|
|
2059
2060
|
}
|
|
2061
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2062
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2063
|
+
touch-action: pan-x pinch-zoom;
|
|
2064
|
+
}
|
|
2060
2065
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2061
2066
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2062
2067
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2106,6 +2111,7 @@
|
|
|
2106
2111
|
}
|
|
2107
2112
|
|
|
2108
2113
|
/*! toolbar theme */
|
|
2114
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2109
2115
|
.e-toolbar {
|
|
2110
2116
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2111
2117
|
background: #333232;
|
|
@@ -2503,6 +2509,7 @@
|
|
|
2503
2509
|
}
|
|
2504
2510
|
|
|
2505
2511
|
/*! accordion theme */
|
|
2512
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2506
2513
|
.e-accordion {
|
|
2507
2514
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2508
2515
|
background: #201f1f;
|
|
@@ -2624,7 +2631,8 @@
|
|
|
2624
2631
|
padding: 0;
|
|
2625
2632
|
position: relative;
|
|
2626
2633
|
}
|
|
2627
|
-
.e-carousel .e-carousel-items
|
|
2634
|
+
.e-carousel .e-carousel-items,
|
|
2635
|
+
.e-carousel .e-carousel-slide-container {
|
|
2628
2636
|
height: 100%;
|
|
2629
2637
|
margin: 0;
|
|
2630
2638
|
overflow: hidden;
|
|
@@ -2632,7 +2640,41 @@
|
|
|
2632
2640
|
position: relative;
|
|
2633
2641
|
width: 100%;
|
|
2634
2642
|
}
|
|
2635
|
-
.e-carousel.e-
|
|
2643
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2644
|
+
padding: 0 100px;
|
|
2645
|
+
}
|
|
2646
|
+
@media screen and (max-width: 480px) {
|
|
2647
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2648
|
+
padding: 0 75px;
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
@media screen and (max-width: 320px) {
|
|
2652
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2653
|
+
padding: 0 50px;
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2657
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2658
|
+
display: -ms-flexbox;
|
|
2659
|
+
display: flex;
|
|
2660
|
+
-ms-flex-direction: row;
|
|
2661
|
+
flex-direction: row;
|
|
2662
|
+
transition-property: transform;
|
|
2663
|
+
transition-duration: 0.6s;
|
|
2664
|
+
transition-timing-function: ease-in-out;
|
|
2665
|
+
}
|
|
2666
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2667
|
+
height: 100%;
|
|
2668
|
+
overflow: hidden;
|
|
2669
|
+
padding: 0;
|
|
2670
|
+
position: relative;
|
|
2671
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2672
|
+
}
|
|
2673
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2674
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2675
|
+
transition: transform 0.6s ease-in-out;
|
|
2676
|
+
}
|
|
2677
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2636
2678
|
backface-visibility: hidden;
|
|
2637
2679
|
display: none;
|
|
2638
2680
|
float: left;
|
|
@@ -2642,16 +2684,16 @@
|
|
|
2642
2684
|
transition: transform 0.6s ease-in-out;
|
|
2643
2685
|
width: 100%;
|
|
2644
2686
|
}
|
|
2645
|
-
.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 {
|
|
2687
|
+
.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 {
|
|
2646
2688
|
display: block;
|
|
2647
2689
|
}
|
|
2648
|
-
.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 {
|
|
2690
|
+
.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 {
|
|
2649
2691
|
transform: translateX(100%);
|
|
2650
2692
|
}
|
|
2651
|
-
.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 {
|
|
2693
|
+
.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 {
|
|
2652
2694
|
transform: translateX(-100%);
|
|
2653
2695
|
}
|
|
2654
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2696
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2655
2697
|
backface-visibility: hidden;
|
|
2656
2698
|
display: block;
|
|
2657
2699
|
float: left;
|
|
@@ -2663,19 +2705,19 @@
|
|
|
2663
2705
|
width: 100%;
|
|
2664
2706
|
z-index: 0;
|
|
2665
2707
|
}
|
|
2666
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2708
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2667
2709
|
opacity: 1;
|
|
2668
2710
|
z-index: 1;
|
|
2669
2711
|
}
|
|
2670
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2712
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2671
2713
|
display: none;
|
|
2672
2714
|
height: 100%;
|
|
2673
2715
|
width: 100%;
|
|
2674
2716
|
}
|
|
2675
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2717
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2676
2718
|
display: block;
|
|
2677
2719
|
}
|
|
2678
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2720
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2679
2721
|
display: block;
|
|
2680
2722
|
height: 100%;
|
|
2681
2723
|
left: 0;
|
|
@@ -2685,7 +2727,7 @@
|
|
|
2685
2727
|
top: 0;
|
|
2686
2728
|
width: 100%;
|
|
2687
2729
|
}
|
|
2688
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2730
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2689
2731
|
opacity: 1;
|
|
2690
2732
|
pointer-events: visible;
|
|
2691
2733
|
}
|
|
@@ -5074,7 +5116,7 @@
|
|
|
5074
5116
|
right: -20px;
|
|
5075
5117
|
}
|
|
5076
5118
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5077
|
-
top: initial !important;
|
|
5119
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5078
5120
|
}
|
|
5079
5121
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5080
5122
|
float: left;
|
|
@@ -6801,6 +6843,8 @@
|
|
|
6801
6843
|
color: #dadada;
|
|
6802
6844
|
}
|
|
6803
6845
|
|
|
6846
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6847
|
+
/* stylelint-disable */
|
|
6804
6848
|
/*! TreeView icons */
|
|
6805
6849
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6806
6850
|
content: "\e22e";
|
|
@@ -6824,6 +6868,7 @@
|
|
|
6824
6868
|
content: "\e22a";
|
|
6825
6869
|
}
|
|
6826
6870
|
|
|
6871
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6827
6872
|
@keyframes rotation {
|
|
6828
6873
|
from {
|
|
6829
6874
|
transform: rotate(0deg);
|
|
@@ -7352,6 +7397,8 @@
|
|
|
7352
7397
|
pointer-events: auto;
|
|
7353
7398
|
}
|
|
7354
7399
|
|
|
7400
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7401
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7355
7402
|
.e-bigger .e-treeview .e-list-text,
|
|
7356
7403
|
.e-treeview.e-bigger .e-list-text {
|
|
7357
7404
|
font-size: 15px;
|
|
@@ -7364,6 +7411,7 @@
|
|
|
7364
7411
|
}
|
|
7365
7412
|
.e-treeview {
|
|
7366
7413
|
-webkit-tap-highlight-color: transparent;
|
|
7414
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7367
7415
|
}
|
|
7368
7416
|
.e-treeview .e-text-content,
|
|
7369
7417
|
.e-treeview .e-fullrow {
|
|
@@ -7532,6 +7580,7 @@
|
|
|
7532
7580
|
border-left-color: transparent;
|
|
7533
7581
|
}
|
|
7534
7582
|
|
|
7583
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7535
7584
|
ejs-sidebar {
|
|
7536
7585
|
display: none;
|
|
7537
7586
|
}
|
|
@@ -7541,6 +7590,7 @@ ejs-sidebar {
|
|
|
7541
7590
|
}
|
|
7542
7591
|
|
|
7543
7592
|
.e-sidebar {
|
|
7593
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7544
7594
|
-webkit-tap-highlight-color: transparent;
|
|
7545
7595
|
background: #282727;
|
|
7546
7596
|
height: 100%;
|
|
@@ -7654,10 +7704,12 @@ ejs-sidebar {
|
|
|
7654
7704
|
touch-action: none;
|
|
7655
7705
|
}
|
|
7656
7706
|
|
|
7707
|
+
/* stylelint-disable */
|
|
7657
7708
|
.e-sidebar-overflow {
|
|
7658
7709
|
overflow-x: hidden !important;
|
|
7659
7710
|
}
|
|
7660
7711
|
|
|
7712
|
+
/* stylelint-enable */
|
|
7661
7713
|
.e-sidebar-overlay {
|
|
7662
7714
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7663
7715
|
height: 100%;
|
|
@@ -8369,6 +8421,8 @@ ejs-sidebar {
|
|
|
8369
8421
|
border: 1px solid #414040;
|
|
8370
8422
|
overflow-y: auto;
|
|
8371
8423
|
width: 100%;
|
|
8424
|
+
/* stylelint-disable */
|
|
8425
|
+
/* stylelint-enable */
|
|
8372
8426
|
}
|
|
8373
8427
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8374
8428
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8730,6 +8784,26 @@ ejs-sidebar {
|
|
|
8730
8784
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8731
8785
|
background: #514f4f;
|
|
8732
8786
|
}
|
|
8787
|
+
.e-menu-wrapper.e-inherit,
|
|
8788
|
+
.e-menu-container.e-inherit {
|
|
8789
|
+
border: 0;
|
|
8790
|
+
}
|
|
8791
|
+
.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,
|
|
8792
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8793
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8794
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8795
|
+
color: inherit;
|
|
8796
|
+
}
|
|
8797
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8798
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8799
|
+
background: inherit;
|
|
8800
|
+
}
|
|
8801
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8802
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8803
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8804
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8805
|
+
color: inherit;
|
|
8806
|
+
}
|
|
8733
8807
|
|
|
8734
8808
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8735
8809
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9138,4 +9212,249 @@ ejs-sidebar {
|
|
|
9138
9212
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9139
9213
|
background-color: #414040;
|
|
9140
9214
|
color: #fff;
|
|
9215
|
+
}
|
|
9216
|
+
|
|
9217
|
+
/*! AppBar component fabric-dark theme definitions and variables */
|
|
9218
|
+
/*! appbar component styles */
|
|
9219
|
+
.e-bigger .e-appbar,
|
|
9220
|
+
.e-appbar.e-bigger {
|
|
9221
|
+
height: 56px;
|
|
9222
|
+
font-size: 16px;
|
|
9223
|
+
}
|
|
9224
|
+
.e-bigger .e-appbar.e-dense,
|
|
9225
|
+
.e-appbar.e-bigger.e-dense {
|
|
9226
|
+
height: 48px;
|
|
9227
|
+
}
|
|
9228
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9229
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9230
|
+
height: 112px;
|
|
9231
|
+
}
|
|
9232
|
+
|
|
9233
|
+
.e-appbar {
|
|
9234
|
+
display: -ms-flexbox;
|
|
9235
|
+
display: flex;
|
|
9236
|
+
width: 100%;
|
|
9237
|
+
height: 48px;
|
|
9238
|
+
-ms-flex-negative: 0;
|
|
9239
|
+
flex-shrink: 0;
|
|
9240
|
+
-ms-flex-direction: row;
|
|
9241
|
+
flex-direction: row;
|
|
9242
|
+
position: relative;
|
|
9243
|
+
-ms-flex-align: center;
|
|
9244
|
+
align-items: center;
|
|
9245
|
+
padding: 8px;
|
|
9246
|
+
overflow: hidden;
|
|
9247
|
+
font-size: 14px;
|
|
9248
|
+
}
|
|
9249
|
+
.e-appbar > div:first-child {
|
|
9250
|
+
display: -ms-flexbox;
|
|
9251
|
+
display: flex;
|
|
9252
|
+
-ms-flex-align: center;
|
|
9253
|
+
align-items: center;
|
|
9254
|
+
width: 100%;
|
|
9255
|
+
height: 100%;
|
|
9256
|
+
}
|
|
9257
|
+
.e-appbar.e-sticky {
|
|
9258
|
+
position: sticky;
|
|
9259
|
+
top: 0;
|
|
9260
|
+
z-index: 1000;
|
|
9261
|
+
}
|
|
9262
|
+
.e-appbar.e-prominent {
|
|
9263
|
+
height: 94px;
|
|
9264
|
+
-ms-flex-align: start;
|
|
9265
|
+
align-items: flex-start;
|
|
9266
|
+
}
|
|
9267
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9268
|
+
-ms-flex-align: start;
|
|
9269
|
+
align-items: flex-start;
|
|
9270
|
+
}
|
|
9271
|
+
.e-appbar.e-dense {
|
|
9272
|
+
height: 40px;
|
|
9273
|
+
}
|
|
9274
|
+
.e-appbar.e-horizontal-bottom {
|
|
9275
|
+
position: absolute;
|
|
9276
|
+
bottom: 0;
|
|
9277
|
+
right: 0;
|
|
9278
|
+
left: 0;
|
|
9279
|
+
}
|
|
9280
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9281
|
+
position: fixed;
|
|
9282
|
+
top: auto;
|
|
9283
|
+
}
|
|
9284
|
+
.e-appbar .e-appbar-separator {
|
|
9285
|
+
height: 32px;
|
|
9286
|
+
}
|
|
9287
|
+
.e-appbar .e-appbar-spacer {
|
|
9288
|
+
-ms-flex-positive: 1;
|
|
9289
|
+
flex-grow: 1;
|
|
9290
|
+
}
|
|
9291
|
+
|
|
9292
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9293
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9294
|
+
overflow: hidden;
|
|
9295
|
+
}
|
|
9296
|
+
|
|
9297
|
+
/*! appbar component theme */
|
|
9298
|
+
.e-appbar {
|
|
9299
|
+
box-shadow: none;
|
|
9300
|
+
}
|
|
9301
|
+
.e-appbar.e-light {
|
|
9302
|
+
background: #282727;
|
|
9303
|
+
color: #fff;
|
|
9304
|
+
border-color: #282727;
|
|
9305
|
+
border: none;
|
|
9306
|
+
}
|
|
9307
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9308
|
+
border-left: 1px solid #fff;
|
|
9309
|
+
}
|
|
9310
|
+
.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,
|
|
9311
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9312
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9313
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9314
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9315
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9316
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9317
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9318
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9319
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9320
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9321
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9322
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9323
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9324
|
+
}
|
|
9325
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9326
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9327
|
+
background: #282727;
|
|
9328
|
+
color: #fff;
|
|
9329
|
+
border-color: #282727;
|
|
9330
|
+
box-shadow: none;
|
|
9331
|
+
}
|
|
9332
|
+
.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,
|
|
9333
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9334
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9335
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9336
|
+
}
|
|
9337
|
+
.e-appbar.e-dark {
|
|
9338
|
+
background: #514f4f;
|
|
9339
|
+
color: #fff;
|
|
9340
|
+
border-color: #514f4f;
|
|
9341
|
+
}
|
|
9342
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9343
|
+
border-left: 1px solid #fff;
|
|
9344
|
+
}
|
|
9345
|
+
.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,
|
|
9346
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9347
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9348
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9349
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9350
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9351
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9352
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9353
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9354
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9355
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9356
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9357
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9358
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9359
|
+
}
|
|
9360
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9361
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9362
|
+
background: #514f4f;
|
|
9363
|
+
color: #fff;
|
|
9364
|
+
border-color: #514f4f;
|
|
9365
|
+
box-shadow: none;
|
|
9366
|
+
}
|
|
9367
|
+
.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,
|
|
9368
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9369
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9370
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9371
|
+
}
|
|
9372
|
+
.e-appbar.e-primary {
|
|
9373
|
+
background: #0074cc;
|
|
9374
|
+
color: #fff;
|
|
9375
|
+
border-color: #0074cc;
|
|
9376
|
+
}
|
|
9377
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9378
|
+
border-left: 1px solid #fff;
|
|
9379
|
+
}
|
|
9380
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9381
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9382
|
+
background: #0074cc;
|
|
9383
|
+
color: #fff;
|
|
9384
|
+
border-color: #0074cc;
|
|
9385
|
+
box-shadow: none;
|
|
9386
|
+
}
|
|
9387
|
+
.e-appbar.e-inherit {
|
|
9388
|
+
background: inherit;
|
|
9389
|
+
color: inherit;
|
|
9390
|
+
border-color: inherit;
|
|
9391
|
+
border: 1px solid;
|
|
9392
|
+
}
|
|
9393
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9394
|
+
border-left: 1px solid;
|
|
9395
|
+
}
|
|
9396
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9397
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9398
|
+
background: inherit;
|
|
9399
|
+
color: inherit;
|
|
9400
|
+
border-color: inherit;
|
|
9401
|
+
box-shadow: none;
|
|
9402
|
+
}
|
|
9403
|
+
.e-appbar.e-horizontal-bottom {
|
|
9404
|
+
box-shadow: none;
|
|
9405
|
+
}
|
|
9406
|
+
|
|
9407
|
+
.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 {
|
|
9408
|
+
background: #282727;
|
|
9409
|
+
color: #fff;
|
|
9410
|
+
}
|
|
9411
|
+
|
|
9412
|
+
.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 {
|
|
9413
|
+
background: #514f4f;
|
|
9414
|
+
color: #fff;
|
|
9415
|
+
}
|
|
9416
|
+
|
|
9417
|
+
.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 {
|
|
9418
|
+
background: #0074cc;
|
|
9419
|
+
color: #fff;
|
|
9420
|
+
}
|
|
9421
|
+
|
|
9422
|
+
.e-inherit.e-input-group,
|
|
9423
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9424
|
+
.e-inherit.e-float-input,
|
|
9425
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9426
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9427
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9428
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9429
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9430
|
+
color: inherit;
|
|
9431
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9432
|
+
}
|
|
9433
|
+
|
|
9434
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9435
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9436
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9437
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9438
|
+
box-shadow: none;
|
|
9439
|
+
}
|
|
9440
|
+
|
|
9441
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9442
|
+
color: inherit;
|
|
9443
|
+
opacity: 0.8;
|
|
9444
|
+
}
|
|
9445
|
+
|
|
9446
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9447
|
+
color: inherit;
|
|
9448
|
+
opacity: 0.8;
|
|
9449
|
+
}
|
|
9450
|
+
|
|
9451
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9452
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9453
|
+
border: none;
|
|
9454
|
+
color: inherit;
|
|
9455
|
+
}
|
|
9456
|
+
|
|
9457
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9458
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9459
|
+
color: inherit;
|
|
9141
9460
|
}
|
package/styles/fabric-dark.scss
CHANGED