@syncfusion/ej2-navigations 20.2.50 → 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 +21 -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 +330 -30
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +349 -30
- 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 +21 -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/material.css
CHANGED
|
@@ -225,6 +225,8 @@
|
|
|
225
225
|
padding: 0;
|
|
226
226
|
white-space: normal;
|
|
227
227
|
width: 100%;
|
|
228
|
+
/* stylelint-disable */
|
|
229
|
+
/* stylelint-enable */
|
|
228
230
|
}
|
|
229
231
|
.e-pager [class^=e-] {
|
|
230
232
|
box-sizing: border-box;
|
|
@@ -351,10 +353,10 @@
|
|
|
351
353
|
margin: 5px 6px 5px 18px;
|
|
352
354
|
overflow: hidden;
|
|
353
355
|
}
|
|
354
|
-
.e-pager .e-lastpage:
|
|
356
|
+
.e-pager .e-lastpage:hover {
|
|
355
357
|
border-radius: 0 4px 4px 0;
|
|
356
358
|
}
|
|
357
|
-
.e-pager .e-firstpage:
|
|
359
|
+
.e-pager .e-firstpage:hover {
|
|
358
360
|
border-radius: 4px 0 0 4px;
|
|
359
361
|
}
|
|
360
362
|
.e-pager .e-pagermessage,
|
|
@@ -821,8 +823,6 @@
|
|
|
821
823
|
display: inline-block;
|
|
822
824
|
height: inherit;
|
|
823
825
|
position: relative;
|
|
824
|
-
-ms-touch-action: none;
|
|
825
|
-
touch-action: none;
|
|
826
826
|
}
|
|
827
827
|
.e-hscroll .e-hscroll-content > * {
|
|
828
828
|
pointer-events: auto;
|
|
@@ -1058,8 +1058,6 @@
|
|
|
1058
1058
|
display: inline-block;
|
|
1059
1059
|
height: auto;
|
|
1060
1060
|
position: relative;
|
|
1061
|
-
-ms-touch-action: none;
|
|
1062
|
-
touch-action: none;
|
|
1063
1061
|
width: 100%;
|
|
1064
1062
|
}
|
|
1065
1063
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1224,6 +1222,7 @@
|
|
|
1224
1222
|
}
|
|
1225
1223
|
|
|
1226
1224
|
/*! toolbar layout */
|
|
1225
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1227
1226
|
.e-bigger .e-toolbar,
|
|
1228
1227
|
.e-toolbar.e-bigger {
|
|
1229
1228
|
height: 56px;
|
|
@@ -1569,8 +1568,6 @@
|
|
|
1569
1568
|
height: 42px;
|
|
1570
1569
|
min-height: 42px;
|
|
1571
1570
|
position: relative;
|
|
1572
|
-
-ms-touch-action: none;
|
|
1573
|
-
touch-action: none;
|
|
1574
1571
|
-webkit-user-select: none;
|
|
1575
1572
|
-ms-user-select: none;
|
|
1576
1573
|
user-select: none;
|
|
@@ -2013,6 +2010,10 @@
|
|
|
2013
2010
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
2014
2011
|
margin-right: 3px;
|
|
2015
2012
|
}
|
|
2013
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
2014
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
2015
|
+
touch-action: pan-y pinch-zoom;
|
|
2016
|
+
}
|
|
2016
2017
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
2017
2018
|
margin-right: 3px;
|
|
2018
2019
|
}
|
|
@@ -2131,6 +2132,10 @@
|
|
|
2131
2132
|
bottom: auto;
|
|
2132
2133
|
top: 0;
|
|
2133
2134
|
}
|
|
2135
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2136
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2137
|
+
touch-action: pan-x pinch-zoom;
|
|
2138
|
+
}
|
|
2134
2139
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2135
2140
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2136
2141
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2180,6 +2185,7 @@
|
|
|
2180
2185
|
}
|
|
2181
2186
|
|
|
2182
2187
|
/*! toolbar theme */
|
|
2188
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2183
2189
|
.e-toolbar {
|
|
2184
2190
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2185
2191
|
background: #fafafa;
|
|
@@ -2592,6 +2598,7 @@
|
|
|
2592
2598
|
}
|
|
2593
2599
|
|
|
2594
2600
|
/*! accordion theme */
|
|
2601
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2595
2602
|
.e-accordion {
|
|
2596
2603
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2597
2604
|
background: #fff;
|
|
@@ -2711,7 +2718,8 @@
|
|
|
2711
2718
|
padding: 0;
|
|
2712
2719
|
position: relative;
|
|
2713
2720
|
}
|
|
2714
|
-
.e-carousel .e-carousel-items
|
|
2721
|
+
.e-carousel .e-carousel-items,
|
|
2722
|
+
.e-carousel .e-carousel-slide-container {
|
|
2715
2723
|
height: 100%;
|
|
2716
2724
|
margin: 0;
|
|
2717
2725
|
overflow: hidden;
|
|
@@ -2719,7 +2727,41 @@
|
|
|
2719
2727
|
position: relative;
|
|
2720
2728
|
width: 100%;
|
|
2721
2729
|
}
|
|
2722
|
-
.e-carousel.e-
|
|
2730
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2731
|
+
padding: 0 100px;
|
|
2732
|
+
}
|
|
2733
|
+
@media screen and (max-width: 480px) {
|
|
2734
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2735
|
+
padding: 0 75px;
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2738
|
+
@media screen and (max-width: 320px) {
|
|
2739
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2740
|
+
padding: 0 50px;
|
|
2741
|
+
}
|
|
2742
|
+
}
|
|
2743
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2744
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2745
|
+
display: -ms-flexbox;
|
|
2746
|
+
display: flex;
|
|
2747
|
+
-ms-flex-direction: row;
|
|
2748
|
+
flex-direction: row;
|
|
2749
|
+
transition-property: transform;
|
|
2750
|
+
transition-duration: 0.6s;
|
|
2751
|
+
transition-timing-function: ease-in-out;
|
|
2752
|
+
}
|
|
2753
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2754
|
+
height: 100%;
|
|
2755
|
+
overflow: hidden;
|
|
2756
|
+
padding: 0;
|
|
2757
|
+
position: relative;
|
|
2758
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2759
|
+
}
|
|
2760
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2761
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2762
|
+
transition: transform 0.6s ease-in-out;
|
|
2763
|
+
}
|
|
2764
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2723
2765
|
backface-visibility: hidden;
|
|
2724
2766
|
display: none;
|
|
2725
2767
|
float: left;
|
|
@@ -2729,16 +2771,16 @@
|
|
|
2729
2771
|
transition: transform 0.6s ease-in-out;
|
|
2730
2772
|
width: 100%;
|
|
2731
2773
|
}
|
|
2732
|
-
.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 {
|
|
2774
|
+
.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 {
|
|
2733
2775
|
display: block;
|
|
2734
2776
|
}
|
|
2735
|
-
.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 {
|
|
2777
|
+
.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 {
|
|
2736
2778
|
transform: translateX(100%);
|
|
2737
2779
|
}
|
|
2738
|
-
.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 {
|
|
2780
|
+
.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 {
|
|
2739
2781
|
transform: translateX(-100%);
|
|
2740
2782
|
}
|
|
2741
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2783
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2742
2784
|
backface-visibility: hidden;
|
|
2743
2785
|
display: block;
|
|
2744
2786
|
float: left;
|
|
@@ -2750,19 +2792,19 @@
|
|
|
2750
2792
|
width: 100%;
|
|
2751
2793
|
z-index: 0;
|
|
2752
2794
|
}
|
|
2753
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2795
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2754
2796
|
opacity: 1;
|
|
2755
2797
|
z-index: 1;
|
|
2756
2798
|
}
|
|
2757
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2799
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2758
2800
|
display: none;
|
|
2759
2801
|
height: 100%;
|
|
2760
2802
|
width: 100%;
|
|
2761
2803
|
}
|
|
2762
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2804
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2763
2805
|
display: block;
|
|
2764
2806
|
}
|
|
2765
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2807
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2766
2808
|
display: block;
|
|
2767
2809
|
height: 100%;
|
|
2768
2810
|
left: 0;
|
|
@@ -2772,7 +2814,7 @@
|
|
|
2772
2814
|
top: 0;
|
|
2773
2815
|
width: 100%;
|
|
2774
2816
|
}
|
|
2775
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2817
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2776
2818
|
opacity: 1;
|
|
2777
2819
|
pointer-events: visible;
|
|
2778
2820
|
}
|
|
@@ -5083,7 +5125,7 @@
|
|
|
5083
5125
|
right: -18px;
|
|
5084
5126
|
}
|
|
5085
5127
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5086
|
-
top: initial !important;
|
|
5128
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5087
5129
|
}
|
|
5088
5130
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5089
5131
|
float: left;
|
|
@@ -6699,6 +6741,7 @@
|
|
|
6699
6741
|
color: rgba(0, 0, 0, 0.54);
|
|
6700
6742
|
}
|
|
6701
6743
|
|
|
6744
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6702
6745
|
@keyframes e-input-ripple {
|
|
6703
6746
|
100% {
|
|
6704
6747
|
opacity: 0;
|
|
@@ -6714,6 +6757,7 @@
|
|
|
6714
6757
|
}
|
|
6715
6758
|
}
|
|
6716
6759
|
/*! TreeView's material theme wise override definitions and variables */
|
|
6760
|
+
/* stylelint-disable */
|
|
6717
6761
|
/*! TreeView icons */
|
|
6718
6762
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6719
6763
|
content: "\e22f";
|
|
@@ -6737,6 +6781,7 @@
|
|
|
6737
6781
|
content: "\e22a";
|
|
6738
6782
|
}
|
|
6739
6783
|
|
|
6784
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6740
6785
|
@keyframes rotation {
|
|
6741
6786
|
from {
|
|
6742
6787
|
transform: rotate(0deg);
|
|
@@ -7260,6 +7305,8 @@
|
|
|
7260
7305
|
pointer-events: auto;
|
|
7261
7306
|
}
|
|
7262
7307
|
|
|
7308
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7309
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7263
7310
|
.e-bigger .e-treeview .e-list-text,
|
|
7264
7311
|
.e-treeview.e-bigger .e-list-text {
|
|
7265
7312
|
font-size: 14px;
|
|
@@ -7272,6 +7319,7 @@
|
|
|
7272
7319
|
}
|
|
7273
7320
|
.e-treeview {
|
|
7274
7321
|
-webkit-tap-highlight-color: transparent;
|
|
7322
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7275
7323
|
}
|
|
7276
7324
|
.e-treeview .e-text-content,
|
|
7277
7325
|
.e-treeview .e-fullrow {
|
|
@@ -7440,6 +7488,7 @@
|
|
|
7440
7488
|
|
|
7441
7489
|
/*! Material theme definition's */
|
|
7442
7490
|
/*! component's theme wise override definitions and variables */
|
|
7491
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7443
7492
|
ejs-sidebar {
|
|
7444
7493
|
display: none;
|
|
7445
7494
|
}
|
|
@@ -7449,6 +7498,7 @@ ejs-sidebar {
|
|
|
7449
7498
|
}
|
|
7450
7499
|
|
|
7451
7500
|
.e-sidebar {
|
|
7501
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7452
7502
|
-webkit-tap-highlight-color: transparent;
|
|
7453
7503
|
background: #fff;
|
|
7454
7504
|
height: 100%;
|
|
@@ -7562,10 +7612,12 @@ ejs-sidebar {
|
|
|
7562
7612
|
touch-action: none;
|
|
7563
7613
|
}
|
|
7564
7614
|
|
|
7615
|
+
/* stylelint-disable */
|
|
7565
7616
|
.e-sidebar-overflow {
|
|
7566
7617
|
overflow-x: hidden !important;
|
|
7567
7618
|
}
|
|
7568
7619
|
|
|
7620
|
+
/* stylelint-enable */
|
|
7569
7621
|
.e-sidebar-overlay {
|
|
7570
7622
|
background-color: rgba(0, 0, 0, 0.6);
|
|
7571
7623
|
height: 100%;
|
|
@@ -8297,6 +8349,8 @@ ejs-sidebar {
|
|
|
8297
8349
|
border: none;
|
|
8298
8350
|
overflow-y: auto;
|
|
8299
8351
|
width: 100%;
|
|
8352
|
+
/* stylelint-disable */
|
|
8353
|
+
/* stylelint-enable */
|
|
8300
8354
|
}
|
|
8301
8355
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8302
8356
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8658,6 +8712,26 @@ ejs-sidebar {
|
|
|
8658
8712
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8659
8713
|
background: #eee;
|
|
8660
8714
|
}
|
|
8715
|
+
.e-menu-wrapper.e-inherit,
|
|
8716
|
+
.e-menu-container.e-inherit {
|
|
8717
|
+
border: 0;
|
|
8718
|
+
}
|
|
8719
|
+
.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,
|
|
8720
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8721
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8722
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8723
|
+
color: inherit;
|
|
8724
|
+
}
|
|
8725
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8726
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8727
|
+
background: inherit;
|
|
8728
|
+
}
|
|
8729
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8730
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8731
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8732
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8733
|
+
color: inherit;
|
|
8734
|
+
}
|
|
8661
8735
|
|
|
8662
8736
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8663
8737
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9049,4 +9123,249 @@ ejs-sidebar {
|
|
|
9049
9123
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9050
9124
|
background-color: #eee;
|
|
9051
9125
|
color: rgba(0, 0, 0, 0.87);
|
|
9126
|
+
}
|
|
9127
|
+
|
|
9128
|
+
/*! AppBar component material theme definitions and variables */
|
|
9129
|
+
/*! appbar component styles */
|
|
9130
|
+
.e-bigger .e-appbar,
|
|
9131
|
+
.e-appbar.e-bigger {
|
|
9132
|
+
height: 56px;
|
|
9133
|
+
font-size: 14px;
|
|
9134
|
+
}
|
|
9135
|
+
.e-bigger .e-appbar.e-dense,
|
|
9136
|
+
.e-appbar.e-bigger.e-dense {
|
|
9137
|
+
height: 48px;
|
|
9138
|
+
}
|
|
9139
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9140
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9141
|
+
height: 112px;
|
|
9142
|
+
}
|
|
9143
|
+
|
|
9144
|
+
.e-appbar {
|
|
9145
|
+
display: -ms-flexbox;
|
|
9146
|
+
display: flex;
|
|
9147
|
+
width: 100%;
|
|
9148
|
+
height: 48px;
|
|
9149
|
+
-ms-flex-negative: 0;
|
|
9150
|
+
flex-shrink: 0;
|
|
9151
|
+
-ms-flex-direction: row;
|
|
9152
|
+
flex-direction: row;
|
|
9153
|
+
position: relative;
|
|
9154
|
+
-ms-flex-align: center;
|
|
9155
|
+
align-items: center;
|
|
9156
|
+
padding: 8px;
|
|
9157
|
+
overflow: hidden;
|
|
9158
|
+
font-size: 14px;
|
|
9159
|
+
}
|
|
9160
|
+
.e-appbar > div:first-child {
|
|
9161
|
+
display: -ms-flexbox;
|
|
9162
|
+
display: flex;
|
|
9163
|
+
-ms-flex-align: center;
|
|
9164
|
+
align-items: center;
|
|
9165
|
+
width: 100%;
|
|
9166
|
+
height: 100%;
|
|
9167
|
+
}
|
|
9168
|
+
.e-appbar.e-sticky {
|
|
9169
|
+
position: sticky;
|
|
9170
|
+
top: 0;
|
|
9171
|
+
z-index: 1000;
|
|
9172
|
+
}
|
|
9173
|
+
.e-appbar.e-prominent {
|
|
9174
|
+
height: 94px;
|
|
9175
|
+
-ms-flex-align: start;
|
|
9176
|
+
align-items: flex-start;
|
|
9177
|
+
}
|
|
9178
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9179
|
+
-ms-flex-align: start;
|
|
9180
|
+
align-items: flex-start;
|
|
9181
|
+
}
|
|
9182
|
+
.e-appbar.e-dense {
|
|
9183
|
+
height: 40px;
|
|
9184
|
+
}
|
|
9185
|
+
.e-appbar.e-horizontal-bottom {
|
|
9186
|
+
position: absolute;
|
|
9187
|
+
bottom: 0;
|
|
9188
|
+
right: 0;
|
|
9189
|
+
left: 0;
|
|
9190
|
+
}
|
|
9191
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9192
|
+
position: fixed;
|
|
9193
|
+
top: auto;
|
|
9194
|
+
}
|
|
9195
|
+
.e-appbar .e-appbar-separator {
|
|
9196
|
+
height: 32px;
|
|
9197
|
+
}
|
|
9198
|
+
.e-appbar .e-appbar-spacer {
|
|
9199
|
+
-ms-flex-positive: 1;
|
|
9200
|
+
flex-grow: 1;
|
|
9201
|
+
}
|
|
9202
|
+
|
|
9203
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9204
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9205
|
+
overflow: hidden;
|
|
9206
|
+
}
|
|
9207
|
+
|
|
9208
|
+
/*! appbar component theme */
|
|
9209
|
+
.e-appbar {
|
|
9210
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.16);
|
|
9211
|
+
}
|
|
9212
|
+
.e-appbar.e-light {
|
|
9213
|
+
background: #fff;
|
|
9214
|
+
color: #000;
|
|
9215
|
+
border-color: #fff;
|
|
9216
|
+
border: none;
|
|
9217
|
+
}
|
|
9218
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9219
|
+
border-left: 1px solid #000;
|
|
9220
|
+
}
|
|
9221
|
+
.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,
|
|
9222
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9223
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9224
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9225
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9226
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9227
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9228
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9229
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9230
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9231
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9232
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9233
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9234
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9235
|
+
}
|
|
9236
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9237
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9238
|
+
background: #fff;
|
|
9239
|
+
color: #000;
|
|
9240
|
+
border-color: #fff;
|
|
9241
|
+
box-shadow: none;
|
|
9242
|
+
}
|
|
9243
|
+
.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,
|
|
9244
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9245
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9246
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9247
|
+
}
|
|
9248
|
+
.e-appbar.e-dark {
|
|
9249
|
+
background: #212121;
|
|
9250
|
+
color: #fff;
|
|
9251
|
+
border-color: #212121;
|
|
9252
|
+
}
|
|
9253
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9254
|
+
border-left: 1px solid #fff;
|
|
9255
|
+
}
|
|
9256
|
+
.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,
|
|
9257
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9258
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9259
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9260
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9261
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9262
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9263
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9264
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9265
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9266
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9267
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9268
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9269
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9270
|
+
}
|
|
9271
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9272
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9273
|
+
background: #212121;
|
|
9274
|
+
color: #fff;
|
|
9275
|
+
border-color: #212121;
|
|
9276
|
+
box-shadow: none;
|
|
9277
|
+
}
|
|
9278
|
+
.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,
|
|
9279
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9280
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9281
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9282
|
+
}
|
|
9283
|
+
.e-appbar.e-primary {
|
|
9284
|
+
background: #3f51b5;
|
|
9285
|
+
color: #fff;
|
|
9286
|
+
border-color: #3f51b5;
|
|
9287
|
+
}
|
|
9288
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9289
|
+
border-left: 1px solid #fff;
|
|
9290
|
+
}
|
|
9291
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9292
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9293
|
+
background: #3f51b5;
|
|
9294
|
+
color: #fff;
|
|
9295
|
+
border-color: #3f51b5;
|
|
9296
|
+
box-shadow: none;
|
|
9297
|
+
}
|
|
9298
|
+
.e-appbar.e-inherit {
|
|
9299
|
+
background: inherit;
|
|
9300
|
+
color: inherit;
|
|
9301
|
+
border-color: inherit;
|
|
9302
|
+
border: 1px solid;
|
|
9303
|
+
}
|
|
9304
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9305
|
+
border-left: 1px solid;
|
|
9306
|
+
}
|
|
9307
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9308
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9309
|
+
background: inherit;
|
|
9310
|
+
color: inherit;
|
|
9311
|
+
border-color: inherit;
|
|
9312
|
+
box-shadow: none;
|
|
9313
|
+
}
|
|
9314
|
+
.e-appbar.e-horizontal-bottom {
|
|
9315
|
+
box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1), 0 -2px 6px rgba(0, 0, 0, 0.2);
|
|
9316
|
+
}
|
|
9317
|
+
|
|
9318
|
+
.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 {
|
|
9319
|
+
background: #fff;
|
|
9320
|
+
color: #000;
|
|
9321
|
+
}
|
|
9322
|
+
|
|
9323
|
+
.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 {
|
|
9324
|
+
background: #212121;
|
|
9325
|
+
color: #fff;
|
|
9326
|
+
}
|
|
9327
|
+
|
|
9328
|
+
.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 {
|
|
9329
|
+
background: #3f51b5;
|
|
9330
|
+
color: #fff;
|
|
9331
|
+
}
|
|
9332
|
+
|
|
9333
|
+
.e-inherit.e-input-group,
|
|
9334
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9335
|
+
.e-inherit.e-float-input,
|
|
9336
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9337
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9338
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9339
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9340
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9341
|
+
color: inherit;
|
|
9342
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9343
|
+
}
|
|
9344
|
+
|
|
9345
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9346
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9347
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9348
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9349
|
+
box-shadow: none;
|
|
9350
|
+
}
|
|
9351
|
+
|
|
9352
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9353
|
+
color: inherit;
|
|
9354
|
+
opacity: 0.8;
|
|
9355
|
+
}
|
|
9356
|
+
|
|
9357
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9358
|
+
color: inherit;
|
|
9359
|
+
opacity: 0.8;
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9362
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9363
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9364
|
+
border: none;
|
|
9365
|
+
color: inherit;
|
|
9366
|
+
}
|
|
9367
|
+
|
|
9368
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9369
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9370
|
+
color: inherit;
|
|
9052
9371
|
}
|
package/styles/material.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
//default
|
|
2
2
|
$menu-bigger-li-right-padding: 15px !default;
|
|
3
3
|
$menu-bigger-icon-margin-right: 10px !default;
|
|
4
4
|
$menu-caret-padding-left: 10px !default;
|
|
@@ -60,4 +60,5 @@ $menu-icon-hover-color: inherit !default;
|
|
|
60
60
|
$menu-icon-focussed-color: $cmenu-caret-color !default;
|
|
61
61
|
$menu-caret-color: $cmenu-caret-color !default;
|
|
62
62
|
$menu-header-icon-padding: 0 16px !default;
|
|
63
|
+
|
|
63
64
|
//enddefault
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
//default
|
|
2
2
|
$menu-bigger-icon-margin-right: 10px !default;
|
|
3
3
|
$menu-caret-padding-left: 10px !default;
|
|
4
4
|
$menu-li-border-style: solid !default;
|
|
@@ -60,4 +60,5 @@ $menu-icon-hover-color: inherit !default;
|
|
|
60
60
|
$menu-icon-focussed-color: $cmenu-caret-color !default;
|
|
61
61
|
$menu-caret-color: $cmenu-caret-color !default;
|
|
62
62
|
$menu-header-icon-padding: 0 16px !default;
|
|
63
|
+
|
|
63
64
|
//enddefault
|
package/styles/menu/_layout.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@import '../context-menu/layout-mixin.scss';
|
|
2
2
|
@include export-module('menu-layout') {
|
|
3
|
+
|
|
3
4
|
/*! menu layout */
|
|
4
5
|
.e-menu-wrapper,
|
|
5
6
|
.e-menu-container {
|
|
@@ -524,7 +525,7 @@
|
|
|
524
525
|
}
|
|
525
526
|
}
|
|
526
527
|
|
|
527
|
-
|
|
528
|
+
/* stylelint-disable */
|
|
528
529
|
|
|
529
530
|
& .e-menu-item[aria-expanded = "true"] .e-caret {
|
|
530
531
|
-webkit-transition: -webkit-transform .3s ease-in-out;
|
|
@@ -543,7 +544,7 @@
|
|
|
543
544
|
transform: rotate(0deg);
|
|
544
545
|
text-indent: 0;
|
|
545
546
|
}
|
|
546
|
-
|
|
547
|
+
/* stylelint-enable */
|
|
547
548
|
}
|
|
548
549
|
|
|
549
550
|
&.e-menu:not(.e-vertical) {
|
|
@@ -620,7 +621,7 @@
|
|
|
620
621
|
}
|
|
621
622
|
}
|
|
622
623
|
|
|
623
|
-
.e-bigger .e-menu-wrapper.e-hamburger
|
|
624
|
+
.e-bigger .e-menu-wrapper.e-hamburger ul,
|
|
624
625
|
.e-bigger.e-menu-wrapper.e-hamburger ul,
|
|
625
626
|
.e-bigger .e-menu-container.e-hamburger ul,
|
|
626
627
|
.e-bigger.e-menu-container.e-hamburger ul {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
//default
|
|
2
2
|
$menu-bigger-caret-li-padding: 36px !default;
|
|
3
3
|
$menu-bigger-caret-right: 8px !default;
|
|
4
4
|
$menu-bigger-li-right-padding: 16px !default;
|
|
@@ -60,4 +60,5 @@ $menu-icon-hover-color: inherit !default;
|
|
|
60
60
|
$menu-icon-focussed-color: $cmenu-caret-color !default;
|
|
61
61
|
$menu-caret-color: $cmenu-caret-color !default;
|
|
62
62
|
$menu-header-icon-padding: 0 16px !default;
|
|
63
|
+
|
|
63
64
|
//enddefault
|
package/styles/menu/_theme.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@import '../context-menu/theme-mixin.scss';
|
|
2
2
|
@include export-module('menu-theme') {
|
|
3
|
+
|
|
3
4
|
/*! menu theme */
|
|
4
5
|
.e-menu-wrapper,
|
|
5
6
|
.e-menu-container {
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
& .e-menu-icon {
|
|
111
112
|
color: $submenu-color;
|
|
112
113
|
}
|
|
113
|
-
|
|
114
|
+
}
|
|
114
115
|
@else if $skin-name == 'FluentUI' {
|
|
115
116
|
& .e-caret {
|
|
116
117
|
color: $menu-icon-color;
|
|
@@ -235,6 +236,26 @@
|
|
|
235
236
|
background: $cmenu-li-selection-bgcolor;
|
|
236
237
|
}
|
|
237
238
|
}
|
|
239
|
+
|
|
240
|
+
&.e-inherit {
|
|
241
|
+
border: 0;
|
|
242
|
+
|
|
243
|
+
& .e-menu,
|
|
244
|
+
& .e-menu .e-menu-item .e-menu-icon,
|
|
245
|
+
& .e-menu .e-menu-item .e-caret {
|
|
246
|
+
color: inherit;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
& .e-menu {
|
|
250
|
+
background: inherit;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
& .e-menu .e-menu-item.e-selected,
|
|
254
|
+
& .e-menu .e-menu-item.e-focused {
|
|
255
|
+
background: rgba(transparent, .056);
|
|
256
|
+
color: inherit;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
238
259
|
}
|
|
239
260
|
|
|
240
261
|
.e-menu-wrapper.e-hamburger,
|