@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/bootstrap4.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* !componenticons */
|
|
2
2
|
.e-pager .e-icon-last::before,
|
|
3
3
|
.e-grid-menu .e-icon-last::before {
|
|
4
4
|
content: "\e7bb";
|
|
@@ -224,6 +224,8 @@
|
|
|
224
224
|
padding: 8px;
|
|
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;
|
|
@@ -282,11 +284,11 @@
|
|
|
282
284
|
.e-pager .e-currentitem {
|
|
283
285
|
border-radius: 0;
|
|
284
286
|
cursor: pointer;
|
|
285
|
-
padding:
|
|
287
|
+
padding: 12px 11px 11px 11px;
|
|
286
288
|
text-decoration: none;
|
|
287
289
|
}
|
|
288
290
|
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
289
|
-
padding:
|
|
291
|
+
padding: 12px 11px 11px 11px;
|
|
290
292
|
}
|
|
291
293
|
.e-pager .e-currentitem {
|
|
292
294
|
font-style: normal;
|
|
@@ -317,7 +319,7 @@
|
|
|
317
319
|
margin-right: 0;
|
|
318
320
|
margin-top: 0;
|
|
319
321
|
min-width: 26px;
|
|
320
|
-
padding:
|
|
322
|
+
padding: 14px 10px 13px 8px;
|
|
321
323
|
}
|
|
322
324
|
.e-pager .e-pagercontainer .e-lastpage,
|
|
323
325
|
.e-pager .e-pagercontainer .e-lastpagedisabled {
|
|
@@ -350,10 +352,10 @@
|
|
|
350
352
|
margin: 0 0 -3px 2px;
|
|
351
353
|
overflow: hidden;
|
|
352
354
|
}
|
|
353
|
-
.e-pager .e-lastpage:
|
|
355
|
+
.e-pager .e-lastpage:hover {
|
|
354
356
|
border-radius: 0 4px 4px 0;
|
|
355
357
|
}
|
|
356
|
-
.e-pager .e-firstpage:
|
|
358
|
+
.e-pager .e-firstpage:hover {
|
|
357
359
|
border-radius: 4px 0 0 4px;
|
|
358
360
|
}
|
|
359
361
|
.e-pager .e-pagermessage,
|
|
@@ -385,15 +387,15 @@
|
|
|
385
387
|
.e-pager .e-np,
|
|
386
388
|
.e-pager .e-pp:hover,
|
|
387
389
|
.e-pager .e-np:hover {
|
|
388
|
-
font-size:
|
|
390
|
+
font-size: 14px;
|
|
389
391
|
font-weight: bold;
|
|
390
392
|
letter-spacing: 0;
|
|
391
|
-
padding:
|
|
393
|
+
padding: 12px 9px 11px 9px;
|
|
392
394
|
}
|
|
393
395
|
.e-pager .e-np.e-focused,
|
|
394
396
|
.e-pager .e-pp.e-focused {
|
|
395
397
|
line-height: 1;
|
|
396
|
-
padding:
|
|
398
|
+
padding: 12px 9px 11px 9px;
|
|
397
399
|
}
|
|
398
400
|
@media (max-width: 769px) {
|
|
399
401
|
.e-pager {
|
|
@@ -811,8 +813,6 @@
|
|
|
811
813
|
display: inline-block;
|
|
812
814
|
height: inherit;
|
|
813
815
|
position: relative;
|
|
814
|
-
-ms-touch-action: none;
|
|
815
|
-
touch-action: none;
|
|
816
816
|
}
|
|
817
817
|
.e-hscroll .e-hscroll-content > * {
|
|
818
818
|
pointer-events: auto;
|
|
@@ -1032,8 +1032,6 @@
|
|
|
1032
1032
|
display: inline-block;
|
|
1033
1033
|
height: auto;
|
|
1034
1034
|
position: relative;
|
|
1035
|
-
-ms-touch-action: none;
|
|
1036
|
-
touch-action: none;
|
|
1037
1035
|
width: 100%;
|
|
1038
1036
|
}
|
|
1039
1037
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1158,6 +1156,7 @@
|
|
|
1158
1156
|
}
|
|
1159
1157
|
|
|
1160
1158
|
/*! toolbar layout */
|
|
1159
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1161
1160
|
.e-bigger .e-toolbar,
|
|
1162
1161
|
.e-toolbar.e-bigger {
|
|
1163
1162
|
height: 54px;
|
|
@@ -1530,8 +1529,6 @@
|
|
|
1530
1529
|
height: 38px;
|
|
1531
1530
|
min-height: 38px;
|
|
1532
1531
|
position: relative;
|
|
1533
|
-
-ms-touch-action: none;
|
|
1534
|
-
touch-action: none;
|
|
1535
1532
|
-webkit-user-select: none;
|
|
1536
1533
|
-ms-user-select: none;
|
|
1537
1534
|
user-select: none;
|
|
@@ -1975,6 +1972,10 @@
|
|
|
1975
1972
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1976
1973
|
margin-right: 12px;
|
|
1977
1974
|
}
|
|
1975
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1976
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1977
|
+
touch-action: pan-y pinch-zoom;
|
|
1978
|
+
}
|
|
1978
1979
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1979
1980
|
margin-right: 12px;
|
|
1980
1981
|
}
|
|
@@ -2097,6 +2098,10 @@
|
|
|
2097
2098
|
bottom: auto;
|
|
2098
2099
|
top: 0;
|
|
2099
2100
|
}
|
|
2101
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2102
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2103
|
+
touch-action: pan-x pinch-zoom;
|
|
2104
|
+
}
|
|
2100
2105
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2101
2106
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2102
2107
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2146,6 +2151,7 @@
|
|
|
2146
2151
|
}
|
|
2147
2152
|
|
|
2148
2153
|
/*! toolbar theme */
|
|
2154
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2149
2155
|
.e-toolbar {
|
|
2150
2156
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2151
2157
|
background: #f8f9fa;
|
|
@@ -2612,6 +2618,7 @@
|
|
|
2612
2618
|
}
|
|
2613
2619
|
|
|
2614
2620
|
/*! accordion theme */
|
|
2621
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2615
2622
|
.e-accordion {
|
|
2616
2623
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2617
2624
|
background: #fff;
|
|
@@ -2759,7 +2766,8 @@
|
|
|
2759
2766
|
padding: 0;
|
|
2760
2767
|
position: relative;
|
|
2761
2768
|
}
|
|
2762
|
-
.e-carousel .e-carousel-items
|
|
2769
|
+
.e-carousel .e-carousel-items,
|
|
2770
|
+
.e-carousel .e-carousel-slide-container {
|
|
2763
2771
|
height: 100%;
|
|
2764
2772
|
margin: 0;
|
|
2765
2773
|
overflow: hidden;
|
|
@@ -2767,7 +2775,41 @@
|
|
|
2767
2775
|
position: relative;
|
|
2768
2776
|
width: 100%;
|
|
2769
2777
|
}
|
|
2770
|
-
.e-carousel.e-
|
|
2778
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2779
|
+
padding: 0 100px;
|
|
2780
|
+
}
|
|
2781
|
+
@media screen and (max-width: 480px) {
|
|
2782
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2783
|
+
padding: 0 75px;
|
|
2784
|
+
}
|
|
2785
|
+
}
|
|
2786
|
+
@media screen and (max-width: 320px) {
|
|
2787
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2788
|
+
padding: 0 50px;
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2792
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2793
|
+
display: -ms-flexbox;
|
|
2794
|
+
display: flex;
|
|
2795
|
+
-ms-flex-direction: row;
|
|
2796
|
+
flex-direction: row;
|
|
2797
|
+
transition-property: transform;
|
|
2798
|
+
transition-duration: 0.6s;
|
|
2799
|
+
transition-timing-function: ease-in-out;
|
|
2800
|
+
}
|
|
2801
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2802
|
+
height: 100%;
|
|
2803
|
+
overflow: hidden;
|
|
2804
|
+
padding: 0;
|
|
2805
|
+
position: relative;
|
|
2806
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2807
|
+
}
|
|
2808
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2809
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2810
|
+
transition: transform 0.6s ease-in-out;
|
|
2811
|
+
}
|
|
2812
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2771
2813
|
backface-visibility: hidden;
|
|
2772
2814
|
display: none;
|
|
2773
2815
|
float: left;
|
|
@@ -2777,16 +2819,16 @@
|
|
|
2777
2819
|
transition: transform 0.6s ease-in-out;
|
|
2778
2820
|
width: 100%;
|
|
2779
2821
|
}
|
|
2780
|
-
.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 {
|
|
2822
|
+
.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 {
|
|
2781
2823
|
display: block;
|
|
2782
2824
|
}
|
|
2783
|
-
.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 {
|
|
2825
|
+
.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 {
|
|
2784
2826
|
transform: translateX(100%);
|
|
2785
2827
|
}
|
|
2786
|
-
.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 {
|
|
2828
|
+
.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 {
|
|
2787
2829
|
transform: translateX(-100%);
|
|
2788
2830
|
}
|
|
2789
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2831
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2790
2832
|
backface-visibility: hidden;
|
|
2791
2833
|
display: block;
|
|
2792
2834
|
float: left;
|
|
@@ -2798,19 +2840,19 @@
|
|
|
2798
2840
|
width: 100%;
|
|
2799
2841
|
z-index: 0;
|
|
2800
2842
|
}
|
|
2801
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2843
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2802
2844
|
opacity: 1;
|
|
2803
2845
|
z-index: 1;
|
|
2804
2846
|
}
|
|
2805
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2847
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2806
2848
|
display: none;
|
|
2807
2849
|
height: 100%;
|
|
2808
2850
|
width: 100%;
|
|
2809
2851
|
}
|
|
2810
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2852
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2811
2853
|
display: block;
|
|
2812
2854
|
}
|
|
2813
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2855
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2814
2856
|
display: block;
|
|
2815
2857
|
height: 100%;
|
|
2816
2858
|
left: 0;
|
|
@@ -2820,7 +2862,7 @@
|
|
|
2820
2862
|
top: 0;
|
|
2821
2863
|
width: 100%;
|
|
2822
2864
|
}
|
|
2823
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2865
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2824
2866
|
opacity: 1;
|
|
2825
2867
|
pointer-events: visible;
|
|
2826
2868
|
}
|
|
@@ -3288,11 +3330,11 @@
|
|
|
3288
3330
|
}
|
|
3289
3331
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-caret,
|
|
3290
3332
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-caret {
|
|
3291
|
-
color: #
|
|
3333
|
+
color: #212529;
|
|
3292
3334
|
}
|
|
3293
3335
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-menu-icon,
|
|
3294
3336
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-menu-icon {
|
|
3295
|
-
color: #
|
|
3337
|
+
color: #495057;
|
|
3296
3338
|
}
|
|
3297
3339
|
.e-contextmenu-wrapper ul .e-disabled,
|
|
3298
3340
|
.e-contextmenu-container ul .e-disabled {
|
|
@@ -5204,7 +5246,7 @@
|
|
|
5204
5246
|
right: -15px;
|
|
5205
5247
|
}
|
|
5206
5248
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5207
|
-
top: initial !important;
|
|
5249
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5208
5250
|
}
|
|
5209
5251
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5210
5252
|
float: left;
|
|
@@ -6928,6 +6970,8 @@
|
|
|
6928
6970
|
color: #fff;
|
|
6929
6971
|
}
|
|
6930
6972
|
|
|
6973
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6974
|
+
/* stylelint-disable */
|
|
6931
6975
|
/*! TreeView icons */
|
|
6932
6976
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6933
6977
|
content: "\e70b";
|
|
@@ -6951,6 +6995,7 @@
|
|
|
6951
6995
|
content: "\e797";
|
|
6952
6996
|
}
|
|
6953
6997
|
|
|
6998
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6954
6999
|
@keyframes rotation {
|
|
6955
7000
|
from {
|
|
6956
7001
|
transform: rotate(0deg);
|
|
@@ -7548,6 +7593,8 @@
|
|
|
7548
7593
|
pointer-events: auto;
|
|
7549
7594
|
}
|
|
7550
7595
|
|
|
7596
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7597
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7551
7598
|
.e-bigger .e-treeview .e-list-text,
|
|
7552
7599
|
.e-treeview.e-bigger .e-list-text {
|
|
7553
7600
|
font-size: 16px;
|
|
@@ -7572,6 +7619,7 @@
|
|
|
7572
7619
|
|
|
7573
7620
|
.e-treeview {
|
|
7574
7621
|
-webkit-tap-highlight-color: transparent;
|
|
7622
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7575
7623
|
}
|
|
7576
7624
|
.e-treeview .e-text-content,
|
|
7577
7625
|
.e-treeview .e-fullrow {
|
|
@@ -7752,6 +7800,7 @@
|
|
|
7752
7800
|
border-left-color: transparent;
|
|
7753
7801
|
}
|
|
7754
7802
|
|
|
7803
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7755
7804
|
ejs-sidebar {
|
|
7756
7805
|
display: none;
|
|
7757
7806
|
}
|
|
@@ -7761,6 +7810,7 @@ ejs-sidebar {
|
|
|
7761
7810
|
}
|
|
7762
7811
|
|
|
7763
7812
|
.e-sidebar {
|
|
7813
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7764
7814
|
-webkit-tap-highlight-color: transparent;
|
|
7765
7815
|
background: #fff;
|
|
7766
7816
|
height: 100%;
|
|
@@ -7874,10 +7924,12 @@ ejs-sidebar {
|
|
|
7874
7924
|
touch-action: none;
|
|
7875
7925
|
}
|
|
7876
7926
|
|
|
7927
|
+
/* stylelint-disable */
|
|
7877
7928
|
.e-sidebar-overflow {
|
|
7878
7929
|
overflow-x: hidden !important;
|
|
7879
7930
|
}
|
|
7880
7931
|
|
|
7932
|
+
/* stylelint-enable */
|
|
7881
7933
|
.e-sidebar-overlay {
|
|
7882
7934
|
background-color: rgba(0, 0, 0, 0.5);
|
|
7883
7935
|
height: 100%;
|
|
@@ -8590,6 +8642,8 @@ ejs-sidebar {
|
|
|
8590
8642
|
border: none;
|
|
8591
8643
|
overflow-y: auto;
|
|
8592
8644
|
width: 100%;
|
|
8645
|
+
/* stylelint-disable */
|
|
8646
|
+
/* stylelint-enable */
|
|
8593
8647
|
}
|
|
8594
8648
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8595
8649
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8983,6 +9037,26 @@ ejs-sidebar {
|
|
|
8983
9037
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8984
9038
|
background: #007bff;
|
|
8985
9039
|
}
|
|
9040
|
+
.e-menu-wrapper.e-inherit,
|
|
9041
|
+
.e-menu-container.e-inherit {
|
|
9042
|
+
border: 0;
|
|
9043
|
+
}
|
|
9044
|
+
.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,
|
|
9045
|
+
.e-menu-container.e-inherit .e-menu,
|
|
9046
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
9047
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
9048
|
+
color: inherit;
|
|
9049
|
+
}
|
|
9050
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
9051
|
+
.e-menu-container.e-inherit .e-menu {
|
|
9052
|
+
background: inherit;
|
|
9053
|
+
}
|
|
9054
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
9055
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9056
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9057
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9058
|
+
color: inherit;
|
|
9059
|
+
}
|
|
8986
9060
|
|
|
8987
9061
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8988
9062
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9396,4 +9470,249 @@ ejs-sidebar {
|
|
|
9396
9470
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9397
9471
|
background-color: #f2f4f6;
|
|
9398
9472
|
color: #212529;
|
|
9473
|
+
}
|
|
9474
|
+
|
|
9475
|
+
/*! AppBar component bootstrap4 theme definitions and variables */
|
|
9476
|
+
/*! appbar component styles */
|
|
9477
|
+
.e-bigger .e-appbar,
|
|
9478
|
+
.e-appbar.e-bigger {
|
|
9479
|
+
height: 56px;
|
|
9480
|
+
font-size: 16px;
|
|
9481
|
+
}
|
|
9482
|
+
.e-bigger .e-appbar.e-dense,
|
|
9483
|
+
.e-appbar.e-bigger.e-dense {
|
|
9484
|
+
height: 48px;
|
|
9485
|
+
}
|
|
9486
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9487
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9488
|
+
height: 112px;
|
|
9489
|
+
}
|
|
9490
|
+
|
|
9491
|
+
.e-appbar {
|
|
9492
|
+
display: -ms-flexbox;
|
|
9493
|
+
display: flex;
|
|
9494
|
+
width: 100%;
|
|
9495
|
+
height: 48px;
|
|
9496
|
+
-ms-flex-negative: 0;
|
|
9497
|
+
flex-shrink: 0;
|
|
9498
|
+
-ms-flex-direction: row;
|
|
9499
|
+
flex-direction: row;
|
|
9500
|
+
position: relative;
|
|
9501
|
+
-ms-flex-align: center;
|
|
9502
|
+
align-items: center;
|
|
9503
|
+
padding: 8px;
|
|
9504
|
+
overflow: hidden;
|
|
9505
|
+
font-size: 14px;
|
|
9506
|
+
}
|
|
9507
|
+
.e-appbar > div:first-child {
|
|
9508
|
+
display: -ms-flexbox;
|
|
9509
|
+
display: flex;
|
|
9510
|
+
-ms-flex-align: center;
|
|
9511
|
+
align-items: center;
|
|
9512
|
+
width: 100%;
|
|
9513
|
+
height: 100%;
|
|
9514
|
+
}
|
|
9515
|
+
.e-appbar.e-sticky {
|
|
9516
|
+
position: sticky;
|
|
9517
|
+
top: 0;
|
|
9518
|
+
z-index: 1000;
|
|
9519
|
+
}
|
|
9520
|
+
.e-appbar.e-prominent {
|
|
9521
|
+
height: 94px;
|
|
9522
|
+
-ms-flex-align: start;
|
|
9523
|
+
align-items: flex-start;
|
|
9524
|
+
}
|
|
9525
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9526
|
+
-ms-flex-align: start;
|
|
9527
|
+
align-items: flex-start;
|
|
9528
|
+
}
|
|
9529
|
+
.e-appbar.e-dense {
|
|
9530
|
+
height: 40px;
|
|
9531
|
+
}
|
|
9532
|
+
.e-appbar.e-horizontal-bottom {
|
|
9533
|
+
position: absolute;
|
|
9534
|
+
bottom: 0;
|
|
9535
|
+
right: 0;
|
|
9536
|
+
left: 0;
|
|
9537
|
+
}
|
|
9538
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9539
|
+
position: fixed;
|
|
9540
|
+
top: auto;
|
|
9541
|
+
}
|
|
9542
|
+
.e-appbar .e-appbar-separator {
|
|
9543
|
+
height: 32px;
|
|
9544
|
+
}
|
|
9545
|
+
.e-appbar .e-appbar-spacer {
|
|
9546
|
+
-ms-flex-positive: 1;
|
|
9547
|
+
flex-grow: 1;
|
|
9548
|
+
}
|
|
9549
|
+
|
|
9550
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9551
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9552
|
+
overflow: hidden;
|
|
9553
|
+
}
|
|
9554
|
+
|
|
9555
|
+
/*! appbar component theme */
|
|
9556
|
+
.e-appbar {
|
|
9557
|
+
box-shadow: none;
|
|
9558
|
+
}
|
|
9559
|
+
.e-appbar.e-light {
|
|
9560
|
+
background: #f8f9fa;
|
|
9561
|
+
color: #212529;
|
|
9562
|
+
border-color: #f8f9fa;
|
|
9563
|
+
border: none;
|
|
9564
|
+
}
|
|
9565
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9566
|
+
border-left: 1px solid #212529;
|
|
9567
|
+
}
|
|
9568
|
+
.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,
|
|
9569
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9570
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9571
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9572
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9573
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9574
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9575
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9576
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9577
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9578
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9579
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9580
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9581
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9582
|
+
}
|
|
9583
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9584
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9585
|
+
background: #f8f9fa;
|
|
9586
|
+
color: #212529;
|
|
9587
|
+
border-color: #f8f9fa;
|
|
9588
|
+
box-shadow: none;
|
|
9589
|
+
}
|
|
9590
|
+
.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,
|
|
9591
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9592
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9593
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9594
|
+
}
|
|
9595
|
+
.e-appbar.e-dark {
|
|
9596
|
+
background: #343a40;
|
|
9597
|
+
color: #fff;
|
|
9598
|
+
border-color: #343a40;
|
|
9599
|
+
}
|
|
9600
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9601
|
+
border-left: 1px solid #fff;
|
|
9602
|
+
}
|
|
9603
|
+
.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,
|
|
9604
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9605
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9606
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9607
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9608
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9609
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9610
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9611
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9612
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9613
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9614
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9615
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9616
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9617
|
+
}
|
|
9618
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9619
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9620
|
+
background: #343a40;
|
|
9621
|
+
color: #fff;
|
|
9622
|
+
border-color: #343a40;
|
|
9623
|
+
box-shadow: none;
|
|
9624
|
+
}
|
|
9625
|
+
.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,
|
|
9626
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9627
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9628
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9629
|
+
}
|
|
9630
|
+
.e-appbar.e-primary {
|
|
9631
|
+
background: #007bff;
|
|
9632
|
+
color: #fff;
|
|
9633
|
+
border-color: #007bff;
|
|
9634
|
+
}
|
|
9635
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9636
|
+
border-left: 1px solid #fff;
|
|
9637
|
+
}
|
|
9638
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9639
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9640
|
+
background: #007bff;
|
|
9641
|
+
color: #fff;
|
|
9642
|
+
border-color: #007bff;
|
|
9643
|
+
box-shadow: none;
|
|
9644
|
+
}
|
|
9645
|
+
.e-appbar.e-inherit {
|
|
9646
|
+
background: inherit;
|
|
9647
|
+
color: inherit;
|
|
9648
|
+
border-color: inherit;
|
|
9649
|
+
border: 1px solid;
|
|
9650
|
+
}
|
|
9651
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9652
|
+
border-left: 1px solid;
|
|
9653
|
+
}
|
|
9654
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9655
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9656
|
+
background: inherit;
|
|
9657
|
+
color: inherit;
|
|
9658
|
+
border-color: inherit;
|
|
9659
|
+
box-shadow: none;
|
|
9660
|
+
}
|
|
9661
|
+
.e-appbar.e-horizontal-bottom {
|
|
9662
|
+
box-shadow: none;
|
|
9663
|
+
}
|
|
9664
|
+
|
|
9665
|
+
.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 {
|
|
9666
|
+
background: #f8f9fa;
|
|
9667
|
+
color: #212529;
|
|
9668
|
+
}
|
|
9669
|
+
|
|
9670
|
+
.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 {
|
|
9671
|
+
background: #343a40;
|
|
9672
|
+
color: #fff;
|
|
9673
|
+
}
|
|
9674
|
+
|
|
9675
|
+
.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 {
|
|
9676
|
+
background: #007bff;
|
|
9677
|
+
color: #fff;
|
|
9678
|
+
}
|
|
9679
|
+
|
|
9680
|
+
.e-inherit.e-input-group,
|
|
9681
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9682
|
+
.e-inherit.e-float-input,
|
|
9683
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9684
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9685
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9686
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9687
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9688
|
+
color: inherit;
|
|
9689
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9690
|
+
}
|
|
9691
|
+
|
|
9692
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9693
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9694
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9695
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9696
|
+
box-shadow: none;
|
|
9697
|
+
}
|
|
9698
|
+
|
|
9699
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9700
|
+
color: inherit;
|
|
9701
|
+
opacity: 0.8;
|
|
9702
|
+
}
|
|
9703
|
+
|
|
9704
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9705
|
+
color: inherit;
|
|
9706
|
+
opacity: 0.8;
|
|
9707
|
+
}
|
|
9708
|
+
|
|
9709
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9710
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9711
|
+
border: none;
|
|
9712
|
+
color: inherit;
|
|
9713
|
+
}
|
|
9714
|
+
|
|
9715
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9716
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9717
|
+
color: inherit;
|
|
9399
9718
|
}
|
package/styles/bootstrap4.scss
CHANGED