@syncfusion/ej2-navigations 20.2.49 → 20.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/dist/ej2-navigations.min.js +10 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +355 -45
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +375 -46
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -12
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +112 -0
- package/src/appbar/appbar.js +220 -0
- package/src/appbar/index.d.ts +3 -0
- package/src/appbar/index.js +2 -0
- package/src/carousel/carousel-model.d.ts +11 -2
- package/src/carousel/carousel.d.ts +9 -0
- package/src/carousel/carousel.js +105 -14
- package/src/common/menu-base.js +2 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/tab/tab.d.ts +11 -7
- package/src/tab/tab.js +23 -16
- package/src/treeview/treeview.d.ts +1 -0
- package/src/treeview/treeview.js +24 -14
- package/styles/accordion/_all.scss +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +5 -2
- package/styles/accordion/_bootstrap-definition.scss +3 -3
- package/styles/accordion/_bootstrap4-definition.scss +4 -1
- package/styles/accordion/_bootstrap5-definition.scss +1 -1
- package/styles/accordion/_fabric-dark-definition.scss +3 -4
- package/styles/accordion/_fabric-definition.scss +3 -3
- package/styles/accordion/_fluent-definition.scss +0 -1
- package/styles/accordion/_fusionnew-definition.scss +1 -1
- package/styles/accordion/_highcontrast-definition.scss +4 -4
- package/styles/accordion/_highcontrast-light-definition.scss +1 -1
- package/styles/accordion/_layout.scss +8 -9
- package/styles/accordion/_material-dark-definition.scss +3 -1
- package/styles/accordion/_material-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +1 -1
- package/styles/accordion/_tailwind-definition.scss +0 -1
- package/styles/accordion/_theme.scss +6 -5
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/icons/_bootstrap-dark.scss +2 -2
- package/styles/accordion/icons/_bootstrap.scss +2 -2
- package/styles/accordion/icons/_bootstrap4.scss +2 -2
- package/styles/accordion/icons/_bootstrap5.scss +2 -3
- package/styles/accordion/icons/_fabric-dark.scss +2 -2
- package/styles/accordion/icons/_fabric.scss +2 -2
- package/styles/accordion/icons/_fluent.scss +2 -3
- package/styles/accordion/icons/_fusionnew.scss +2 -3
- package/styles/accordion/icons/_highcontrast-light.scss +2 -2
- package/styles/accordion/icons/_highcontrast.scss +2 -2
- package/styles/accordion/icons/_material-dark.scss +2 -2
- package/styles/accordion/icons/_material.scss +2 -2
- package/styles/accordion/icons/_material3.scss +2 -3
- package/styles/accordion/icons/_tailwind.scss +2 -3
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -0
- package/styles/appbar/_all.scss +2 -0
- package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
- package/styles/appbar/_bootstrap-definition.scss +8 -0
- package/styles/appbar/_bootstrap4-definition.scss +8 -0
- package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/appbar/_bootstrap5-definition.scss +8 -0
- package/styles/appbar/_fabric-dark-definition.scss +8 -0
- package/styles/appbar/_fabric-definition.scss +8 -0
- package/styles/appbar/_fluent-dark-definition.scss +1 -0
- package/styles/appbar/_fluent-definition.scss +8 -0
- package/styles/appbar/_fusionnew-definition.scss +8 -0
- package/styles/appbar/_highcontrast-definition.scss +8 -0
- package/styles/appbar/_highcontrast-light-definition.scss +8 -0
- package/styles/appbar/_layout.scss +81 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_tailwind-dark-definition.scss +1 -0
- package/styles/appbar/_tailwind-definition.scss +8 -0
- package/styles/appbar/_theme.scss +208 -0
- package/styles/appbar/bootstrap-dark.css +244 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/_all.scss +1 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +1 -2
- package/styles/breadcrumb/_layout.scss +4 -3
- package/styles/breadcrumb/_theme.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +1 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +1 -1
- package/styles/breadcrumb/icons/_fabric.scss +1 -1
- package/styles/breadcrumb/icons/_fluent.scss +1 -1
- package/styles/breadcrumb/icons/_fusionnew.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast-light.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +1 -1
- package/styles/breadcrumb/icons/_material-dark.scss +1 -1
- package/styles/breadcrumb/icons/_material.scss +1 -1
- package/styles/breadcrumb/icons/_material3.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind.scss +1 -1
- package/styles/carousel/_all.scss +1 -1
- package/styles/carousel/_layout.scss +44 -5
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/context-menu/_bootstrap4-definition.scss +3 -3
- package/styles/context-menu/_bootstrap5-definition.scss +2 -2
- package/styles/context-menu/_fabric-dark-definition.scss +2 -1
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -1
- package/styles/context-menu/_layout-mixin.scss +0 -1
- package/styles/context-menu/_layout.scss +1 -0
- package/styles/context-menu/_material-dark-definition.scss +2 -1
- package/styles/context-menu/_theme.scss +1 -0
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap.scss +1 -0
- package/styles/context-menu/icons/_bootstrap4.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +1 -0
- package/styles/context-menu/icons/_fabric-dark.scss +1 -0
- package/styles/context-menu/icons/_fabric.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +1 -0
- package/styles/context-menu/icons/_fusionnew.scss +1 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +1 -0
- package/styles/context-menu/icons/_highcontrast.scss +1 -0
- package/styles/context-menu/icons/_material-dark.scss +1 -0
- package/styles/context-menu/icons/_material.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +1 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +1 -0
- package/styles/context-menu/icons/_tailwind.scss +1 -0
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +4 -3
- package/styles/h-scroll/_bootstrap-definition.scss +3 -4
- package/styles/h-scroll/_bootstrap5-definition.scss +5 -7
- package/styles/h-scroll/_fabric-dark-definition.scss +4 -3
- package/styles/h-scroll/_fabric-definition.scss +4 -4
- package/styles/h-scroll/_fluent-definition.scss +5 -7
- package/styles/h-scroll/_fusionnew-definition.scss +5 -7
- package/styles/h-scroll/_highcontrast-definition.scss +4 -4
- package/styles/h-scroll/_highcontrast-light-definition.scss +4 -3
- package/styles/h-scroll/_layout.scss +11 -13
- package/styles/h-scroll/_material-dark-definition.scss +6 -5
- package/styles/h-scroll/_material-definition.scss +8 -10
- package/styles/h-scroll/_material3-definition.scss +5 -7
- package/styles/h-scroll/_tailwind-definition.scss +6 -8
- package/styles/h-scroll/_theme.scss +3 -5
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/icons/_bootstrap-dark.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap5.scss +3 -3
- package/styles/h-scroll/icons/_fabric-dark.scss +3 -3
- package/styles/h-scroll/icons/_fabric.scss +3 -3
- package/styles/h-scroll/icons/_fluent.scss +3 -3
- package/styles/h-scroll/icons/_fusionnew.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast-light.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast.scss +3 -3
- package/styles/h-scroll/icons/_material-dark.scss +3 -3
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +3 -3
- package/styles/h-scroll/icons/_tailwind.scss +3 -3
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/menu/_fabric-dark-definition.scss +2 -1
- package/styles/menu/_fluent-definition.scss +0 -1
- package/styles/menu/_layout.scss +4 -3
- package/styles/menu/_material-dark-definition.scss +2 -1
- package/styles/menu/_tailwind-definition.scss +0 -1
- package/styles/menu/_theme.scss +22 -1
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap.scss +1 -0
- package/styles/menu/icons/_bootstrap4.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +1 -0
- package/styles/menu/icons/_fabric-dark.scss +1 -0
- package/styles/menu/icons/_fabric.scss +1 -0
- package/styles/menu/icons/_fluent.scss +1 -0
- package/styles/menu/icons/_fusionnew.scss +1 -0
- package/styles/menu/icons/_highcontrast-light.scss +1 -0
- package/styles/menu/icons/_highcontrast.scss +1 -0
- package/styles/menu/icons/_material-dark.scss +1 -0
- package/styles/menu/icons/_material.scss +1 -0
- package/styles/menu/icons/_material3.scss +1 -0
- package/styles/menu/icons/_tailwind-dark.scss +1 -0
- package/styles/menu/icons/_tailwind.scss +1 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/_all.scss +1 -1
- package/styles/pager/_bootstrap-dark-definition.scss +0 -1
- package/styles/pager/_bootstrap-definition.scss +3 -4
- package/styles/pager/_bootstrap4-definition.scss +6 -6
- package/styles/pager/_bootstrap5-definition.scss +5 -5
- package/styles/pager/_fabric-dark-definition.scss +2 -2
- package/styles/pager/_fabric-definition.scss +0 -1
- package/styles/pager/_fluent-definition.scss +1 -1
- package/styles/pager/_highcontrast-definition.scss +0 -1
- package/styles/pager/_highcontrast-light-definition.scss +3 -2
- package/styles/pager/_layout.scss +35 -38
- package/styles/pager/_material-dark-definition.scss +2 -2
- package/styles/pager/_material-definition.scss +0 -1
- package/styles/pager/_tailwind-definition.scss +7 -7
- package/styles/pager/_theme.scss +3 -4
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/icons/_bootstrap-dark.scss +2 -2
- package/styles/pager/icons/_bootstrap.scss +2 -1
- package/styles/pager/icons/_bootstrap4.scss +2 -1
- package/styles/pager/icons/_bootstrap5.scss +2 -2
- package/styles/pager/icons/_fabric-dark.scss +4 -4
- package/styles/pager/icons/_fabric.scss +4 -4
- package/styles/pager/icons/_fluent.scss +2 -2
- package/styles/pager/icons/_fusionnew.scss +2 -2
- package/styles/pager/icons/_highcontrast-light.scss +3 -3
- package/styles/pager/icons/_highcontrast.scss +9 -4
- package/styles/pager/icons/_material-dark.scss +2 -2
- package/styles/pager/icons/_material.scss +10 -5
- package/styles/pager/icons/_material3.scss +2 -2
- package/styles/pager/icons/_tailwind.scss +2 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- package/styles/sidebar/_bootstrap5-definition.scss +1 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-definition.scss +1 -0
- package/styles/sidebar/_fusionnew-definition.scss +1 -0
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +1 -0
- package/styles/sidebar/_theme.scss +19 -28
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +4 -0
- package/styles/sidebar/fluent.css +4 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +2 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/_fabric-dark-definition.scss +2 -2
- package/styles/tab/_fabric-definition.scss +0 -1
- package/styles/tab/_fusionnew-definition.scss +1 -1
- package/styles/tab/_highcontrast-definition.scss +0 -1
- package/styles/tab/_highcontrast-light-definition.scss +0 -2
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +24 -26
- package/styles/tab/_material-dark-definition.scss +2 -3
- package/styles/tab/_material-definition.scss +0 -1
- package/styles/tab/_material3-definition.scss +1 -1
- package/styles/tab/_tailwind-definition.scss +0 -1
- package/styles/tab/_theme.scss +6 -8
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/icons/_bootstrap-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap.scss +1 -0
- package/styles/tab/icons/_bootstrap4.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +1 -1
- package/styles/tab/icons/_fabric-dark.scss +1 -0
- package/styles/tab/icons/_fabric.scss +1 -0
- package/styles/tab/icons/_fluent.scss +1 -1
- package/styles/tab/icons/_fusionnew.scss +1 -1
- package/styles/tab/icons/_highcontrast-light.scss +1 -0
- package/styles/tab/icons/_highcontrast.scss +1 -0
- package/styles/tab/icons/_material-dark.scss +1 -0
- package/styles/tab/icons/_material.scss +1 -0
- package/styles/tab/icons/_material3.scss +1 -1
- package/styles/tab/icons/_tailwind.scss +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +6 -5
- package/styles/toolbar/_bootstrap-definition.scss +13 -13
- package/styles/toolbar/_bootstrap4-definition.scss +6 -6
- package/styles/toolbar/_bootstrap5-definition.scss +1 -1
- package/styles/toolbar/_fabric-dark-definition.scss +2 -1
- package/styles/toolbar/_fluent-definition.scss +2 -2
- package/styles/toolbar/_fusionnew-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +2 -1
- package/styles/toolbar/_layout.scss +50 -74
- package/styles/toolbar/_material-dark-definition.scss +9 -11
- package/styles/toolbar/_material-definition.scss +12 -13
- package/styles/toolbar/_material3-definition.scss +1 -1
- package/styles/toolbar/_theme.scss +5 -8
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/icons/_bootstrap-dark.scss +1 -1
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +1 -1
- package/styles/toolbar/icons/_bootstrap5.scss +1 -2
- package/styles/toolbar/icons/_fabric-dark.scss +1 -1
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent.scss +1 -2
- package/styles/toolbar/icons/_fusionnew.scss +1 -2
- package/styles/toolbar/icons/_highcontrast-light.scss +1 -1
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +1 -1
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +1 -2
- package/styles/toolbar/icons/_tailwind.scss +1 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +1 -1
- package/styles/treeview/_bootstrap-definition.scss +1 -1
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/_fabric-dark-definition.scss +1 -1
- package/styles/treeview/_fabric-definition.scss +1 -1
- package/styles/treeview/_fluent-definition.scss +1 -1
- package/styles/treeview/_fusionnew-definition.scss +1 -1
- package/styles/treeview/_highcontrast-definition.scss +1 -1
- package/styles/treeview/_highcontrast-light-definition.scss +1 -1
- package/styles/treeview/_layout.scss +23 -18
- package/styles/treeview/_material-dark-definition.scss +1 -1
- package/styles/treeview/_material-definition.scss +1 -1
- package/styles/treeview/_material3-definition.scss +1 -1
- package/styles/treeview/_tailwind-definition.scss +2 -2
- package/styles/treeview/_theme.scss +15 -12
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/icons/_bootstrap-dark.scss +1 -1
- package/styles/treeview/icons/_bootstrap.scss +1 -1
- package/styles/treeview/icons/_bootstrap4.scss +1 -2
- package/styles/treeview/icons/_bootstrap5.scss +1 -1
- package/styles/treeview/icons/_fabric-dark.scss +1 -1
- package/styles/treeview/icons/_fabric.scss +1 -1
- package/styles/treeview/icons/_fluent.scss +1 -1
- package/styles/treeview/icons/_fusionnew.scss +1 -1
- package/styles/treeview/icons/_highcontrast-light.scss +1 -1
- package/styles/treeview/icons/_highcontrast.scss +1 -1
- package/styles/treeview/icons/_material-dark.scss +1 -1
- package/styles/treeview/icons/_material.scss +1 -1
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/icons/_tailwind-dark.scss +1 -1
- package/styles/treeview/icons/_tailwind.scss +1 -1
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +5 -4
- package/styles/v-scroll/_bootstrap-definition.scss +3 -3
- package/styles/v-scroll/_bootstrap4-definition.scss +1 -1
- package/styles/v-scroll/_bootstrap5-definition.scss +3 -3
- package/styles/v-scroll/_fabric-dark-definition.scss +6 -5
- package/styles/v-scroll/_fabric-definition.scss +4 -4
- package/styles/v-scroll/_fluent-definition.scss +3 -3
- package/styles/v-scroll/_fusionnew-definition.scss +3 -3
- package/styles/v-scroll/_highcontrast-definition.scss +4 -4
- package/styles/v-scroll/_highcontrast-light-definition.scss +6 -5
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +6 -5
- package/styles/v-scroll/_material-definition.scss +5 -5
- package/styles/v-scroll/_material3-definition.scss +3 -3
- package/styles/v-scroll/_tailwind-definition.scss +3 -3
- package/styles/v-scroll/_theme.scss +2 -1
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/icons/_bootstrap-dark.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5.scss +1 -1
- package/styles/v-scroll/icons/_fabric-dark.scss +1 -0
- package/styles/v-scroll/icons/_fabric.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +1 -1
- package/styles/v-scroll/icons/_fusionnew.scss +1 -1
- package/styles/v-scroll/icons/_highcontrast-light.scss +1 -0
- package/styles/v-scroll/icons/_highcontrast.scss +1 -0
- package/styles/v-scroll/icons/_material-dark.scss +1 -0
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +1 -1
- package/styles/v-scroll/icons/_tailwind.scss +1 -1
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
package/styles/tailwind-dark.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
-
|
|
2
|
+
/* !componenticons */
|
|
3
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
3
4
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
4
5
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
5
6
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
@@ -300,6 +301,8 @@
|
|
|
300
301
|
padding: 8px 8px 8px 8px;
|
|
301
302
|
white-space: normal;
|
|
302
303
|
width: 100%;
|
|
304
|
+
/* stylelint-disable */
|
|
305
|
+
/* stylelint-enable */
|
|
303
306
|
}
|
|
304
307
|
.e-pager [class^=e-] {
|
|
305
308
|
box-sizing: border-box;
|
|
@@ -332,7 +335,7 @@
|
|
|
332
335
|
width: auto;
|
|
333
336
|
}
|
|
334
337
|
.e-pager .e-icons {
|
|
335
|
-
font-size:
|
|
338
|
+
font-size: 12px;
|
|
336
339
|
}
|
|
337
340
|
.e-pager .e-numericitem {
|
|
338
341
|
border-right-style: solid;
|
|
@@ -346,10 +349,10 @@
|
|
|
346
349
|
}
|
|
347
350
|
.e-pager .e-numericitem.e-currentitem {
|
|
348
351
|
border: 1px solid #22d3ee;
|
|
349
|
-
padding: 3.5px 11px
|
|
352
|
+
padding: 3.5px 11px 6px 10px;
|
|
350
353
|
}
|
|
351
354
|
.e-pager .e-numericitem.e-currentitem:hover {
|
|
352
|
-
padding: 3.5px 11px
|
|
355
|
+
padding: 3.5px 11px 6px 10px;
|
|
353
356
|
}
|
|
354
357
|
.e-pager.e-rtl .e-numericitem.e-currentitem {
|
|
355
358
|
border-left-color: #22d3ee;
|
|
@@ -376,11 +379,11 @@
|
|
|
376
379
|
.e-pager .e-currentitem {
|
|
377
380
|
border-radius: 0;
|
|
378
381
|
cursor: pointer;
|
|
379
|
-
padding: 4.5px 11px
|
|
382
|
+
padding: 4.5px 11px 7px 11px;
|
|
380
383
|
text-decoration: none;
|
|
381
384
|
}
|
|
382
385
|
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
383
|
-
padding: 4.5px 11px
|
|
386
|
+
padding: 4.5px 11px 7px 11px;
|
|
384
387
|
}
|
|
385
388
|
.e-pager .e-currentitem {
|
|
386
389
|
font-style: normal;
|
|
@@ -411,7 +414,7 @@
|
|
|
411
414
|
margin-right: 0;
|
|
412
415
|
margin-top: -4px;
|
|
413
416
|
min-width: 26px;
|
|
414
|
-
padding:
|
|
417
|
+
padding: 9.5px 7px 9.5px 7px;
|
|
415
418
|
position: relative;
|
|
416
419
|
top: 3px;
|
|
417
420
|
}
|
|
@@ -425,7 +428,7 @@
|
|
|
425
428
|
.e-pager .e-pagercontainer .e-lastpagedisabled.e-focused {
|
|
426
429
|
border: 0;
|
|
427
430
|
border-right-style: none;
|
|
428
|
-
padding:
|
|
431
|
+
padding: 8.9px 7px 8px;
|
|
429
432
|
}
|
|
430
433
|
.e-pager .e-pagercontainer .e-nextpage.e-focused {
|
|
431
434
|
padding-right: 8px;
|
|
@@ -468,10 +471,10 @@
|
|
|
468
471
|
margin: 0 0 -4px;
|
|
469
472
|
overflow: hidden;
|
|
470
473
|
}
|
|
471
|
-
.e-pager .e-lastpage:
|
|
474
|
+
.e-pager .e-lastpage:hover {
|
|
472
475
|
border-radius: 0 4px 4px 0;
|
|
473
476
|
}
|
|
474
|
-
.e-pager .e-firstpage:
|
|
477
|
+
.e-pager .e-firstpage:hover {
|
|
475
478
|
border-radius: 4px 0 0 4px;
|
|
476
479
|
}
|
|
477
480
|
.e-pager .e-pagermessage,
|
|
@@ -506,12 +509,12 @@
|
|
|
506
509
|
font-size: 12px;
|
|
507
510
|
font-weight: bold;
|
|
508
511
|
letter-spacing: 0;
|
|
509
|
-
padding: 4.5px
|
|
512
|
+
padding: 4.5px 9.2px 7px 9.2px;
|
|
510
513
|
}
|
|
511
514
|
.e-pager .e-np.e-focused,
|
|
512
515
|
.e-pager .e-pp.e-focused {
|
|
513
|
-
line-height:
|
|
514
|
-
padding:
|
|
516
|
+
line-height: 18px;
|
|
517
|
+
padding: 4.5px 8.7px 7px 8.7px;
|
|
515
518
|
}
|
|
516
519
|
@media (max-width: 769px) {
|
|
517
520
|
.e-pager {
|
|
@@ -664,17 +667,17 @@
|
|
|
664
667
|
}
|
|
665
668
|
.e-pager.e-rtl .e-spacing, .e-pager.e-rtl .e-numericitem:hover, .e-pager.e-rtl .e-currentitem {
|
|
666
669
|
margin: 0;
|
|
667
|
-
padding: 4.5px 11px
|
|
670
|
+
padding: 4.5px 11px 7px 11px;
|
|
668
671
|
}
|
|
669
672
|
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
670
|
-
padding: 4.5px 11px
|
|
673
|
+
padding: 4.5px 11px 7px 11px;
|
|
671
674
|
}
|
|
672
675
|
.e-pager.e-rtl .e-pp, .e-pager.e-rtl .e-np, .e-pager.e-rtl .e-pp:hover, .e-pager.e-rtl .e-np:hover {
|
|
673
676
|
margin-top: 0;
|
|
674
677
|
padding: 4.5px 8.7px 5px 8.7px;
|
|
675
678
|
}
|
|
676
679
|
.e-pager.e-rtl .e-np.e-focused, .e-pager.e-rtl .e-pp.e-focused {
|
|
677
|
-
padding:
|
|
680
|
+
padding: 4.5px 8.7px 7px 8.7px;
|
|
678
681
|
}
|
|
679
682
|
@media (max-width: 769px) {
|
|
680
683
|
.e-pager.e-rtl .e-mfirst,
|
|
@@ -696,7 +699,7 @@
|
|
|
696
699
|
.e-pager.sf-pager .e-pagercontainer .e-prev,
|
|
697
700
|
.e-pager.sf-pager .e-pagercontainer .e-next,
|
|
698
701
|
.e-pager.sf-pager .e-pagercontainer .e-last {
|
|
699
|
-
font-size:
|
|
702
|
+
font-size: 12px;
|
|
700
703
|
}
|
|
701
704
|
.e-pager.sf-pager .e-numericcontainer a {
|
|
702
705
|
font-size: 12px;
|
|
@@ -958,8 +961,6 @@
|
|
|
958
961
|
display: inline-block;
|
|
959
962
|
height: inherit;
|
|
960
963
|
position: relative;
|
|
961
|
-
-ms-touch-action: none;
|
|
962
|
-
touch-action: none;
|
|
963
964
|
}
|
|
964
965
|
.e-hscroll .e-hscroll-content > * {
|
|
965
966
|
pointer-events: auto;
|
|
@@ -1185,8 +1186,6 @@
|
|
|
1185
1186
|
display: inline-block;
|
|
1186
1187
|
height: auto;
|
|
1187
1188
|
position: relative;
|
|
1188
|
-
-ms-touch-action: none;
|
|
1189
|
-
touch-action: none;
|
|
1190
1189
|
width: 100%;
|
|
1191
1190
|
}
|
|
1192
1191
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1309,7 +1308,7 @@
|
|
|
1309
1308
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
1310
1309
|
}
|
|
1311
1310
|
}
|
|
1312
|
-
/*! component's theme wise override definitions and variables */
|
|
1311
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
1313
1312
|
/*! toolbar icons */
|
|
1314
1313
|
.e-toolbar .e-popup-down-icon::before {
|
|
1315
1314
|
content: "\e729";
|
|
@@ -1321,6 +1320,7 @@
|
|
|
1321
1320
|
}
|
|
1322
1321
|
|
|
1323
1322
|
/*! toolbar layout */
|
|
1323
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1324
1324
|
.e-bigger .e-toolbar,
|
|
1325
1325
|
.e-toolbar.e-bigger {
|
|
1326
1326
|
height: 48px;
|
|
@@ -1663,8 +1663,6 @@
|
|
|
1663
1663
|
height: 38px;
|
|
1664
1664
|
min-height: 38px;
|
|
1665
1665
|
position: relative;
|
|
1666
|
-
-ms-touch-action: none;
|
|
1667
|
-
touch-action: none;
|
|
1668
1666
|
-webkit-user-select: none;
|
|
1669
1667
|
-ms-user-select: none;
|
|
1670
1668
|
user-select: none;
|
|
@@ -2105,6 +2103,10 @@
|
|
|
2105
2103
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
2106
2104
|
margin-right: 8px;
|
|
2107
2105
|
}
|
|
2106
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
2107
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
2108
|
+
touch-action: pan-y pinch-zoom;
|
|
2109
|
+
}
|
|
2108
2110
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
2109
2111
|
margin-right: 8px;
|
|
2110
2112
|
}
|
|
@@ -2224,6 +2226,10 @@
|
|
|
2224
2226
|
bottom: auto;
|
|
2225
2227
|
top: 0;
|
|
2226
2228
|
}
|
|
2229
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2230
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2231
|
+
touch-action: pan-x pinch-zoom;
|
|
2232
|
+
}
|
|
2227
2233
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2228
2234
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2229
2235
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2273,6 +2279,7 @@
|
|
|
2273
2279
|
}
|
|
2274
2280
|
|
|
2275
2281
|
/*! toolbar theme */
|
|
2282
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2276
2283
|
.e-toolbar {
|
|
2277
2284
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2278
2285
|
background: #374151;
|
|
@@ -2685,6 +2692,7 @@
|
|
|
2685
2692
|
}
|
|
2686
2693
|
|
|
2687
2694
|
/*! accordion theme */
|
|
2695
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2688
2696
|
.e-accordion {
|
|
2689
2697
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2690
2698
|
background: #232e3e;
|
|
@@ -2805,7 +2813,8 @@
|
|
|
2805
2813
|
padding: 0;
|
|
2806
2814
|
position: relative;
|
|
2807
2815
|
}
|
|
2808
|
-
.e-carousel .e-carousel-items
|
|
2816
|
+
.e-carousel .e-carousel-items,
|
|
2817
|
+
.e-carousel .e-carousel-slide-container {
|
|
2809
2818
|
height: 100%;
|
|
2810
2819
|
margin: 0;
|
|
2811
2820
|
overflow: hidden;
|
|
@@ -2813,7 +2822,41 @@
|
|
|
2813
2822
|
position: relative;
|
|
2814
2823
|
width: 100%;
|
|
2815
2824
|
}
|
|
2816
|
-
.e-carousel.e-
|
|
2825
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2826
|
+
padding: 0 100px;
|
|
2827
|
+
}
|
|
2828
|
+
@media screen and (max-width: 480px) {
|
|
2829
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2830
|
+
padding: 0 75px;
|
|
2831
|
+
}
|
|
2832
|
+
}
|
|
2833
|
+
@media screen and (max-width: 320px) {
|
|
2834
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2835
|
+
padding: 0 50px;
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2839
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2840
|
+
display: -ms-flexbox;
|
|
2841
|
+
display: flex;
|
|
2842
|
+
-ms-flex-direction: row;
|
|
2843
|
+
flex-direction: row;
|
|
2844
|
+
transition-property: transform;
|
|
2845
|
+
transition-duration: 0.6s;
|
|
2846
|
+
transition-timing-function: ease-in-out;
|
|
2847
|
+
}
|
|
2848
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2849
|
+
height: 100%;
|
|
2850
|
+
overflow: hidden;
|
|
2851
|
+
padding: 0;
|
|
2852
|
+
position: relative;
|
|
2853
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2854
|
+
}
|
|
2855
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2856
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2857
|
+
transition: transform 0.6s ease-in-out;
|
|
2858
|
+
}
|
|
2859
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2817
2860
|
backface-visibility: hidden;
|
|
2818
2861
|
display: none;
|
|
2819
2862
|
float: left;
|
|
@@ -2823,16 +2866,16 @@
|
|
|
2823
2866
|
transition: transform 0.6s ease-in-out;
|
|
2824
2867
|
width: 100%;
|
|
2825
2868
|
}
|
|
2826
|
-
.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 {
|
|
2869
|
+
.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 {
|
|
2827
2870
|
display: block;
|
|
2828
2871
|
}
|
|
2829
|
-
.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 {
|
|
2872
|
+
.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 {
|
|
2830
2873
|
transform: translateX(100%);
|
|
2831
2874
|
}
|
|
2832
|
-
.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 {
|
|
2875
|
+
.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 {
|
|
2833
2876
|
transform: translateX(-100%);
|
|
2834
2877
|
}
|
|
2835
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2878
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2836
2879
|
backface-visibility: hidden;
|
|
2837
2880
|
display: block;
|
|
2838
2881
|
float: left;
|
|
@@ -2844,19 +2887,19 @@
|
|
|
2844
2887
|
width: 100%;
|
|
2845
2888
|
z-index: 0;
|
|
2846
2889
|
}
|
|
2847
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2890
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2848
2891
|
opacity: 1;
|
|
2849
2892
|
z-index: 1;
|
|
2850
2893
|
}
|
|
2851
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2894
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2852
2895
|
display: none;
|
|
2853
2896
|
height: 100%;
|
|
2854
2897
|
width: 100%;
|
|
2855
2898
|
}
|
|
2856
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2899
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2857
2900
|
display: block;
|
|
2858
2901
|
}
|
|
2859
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2902
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2860
2903
|
display: block;
|
|
2861
2904
|
height: 100%;
|
|
2862
2905
|
left: 0;
|
|
@@ -2866,7 +2909,7 @@
|
|
|
2866
2909
|
top: 0;
|
|
2867
2910
|
width: 100%;
|
|
2868
2911
|
}
|
|
2869
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2912
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2870
2913
|
opacity: 1;
|
|
2871
2914
|
pointer-events: visible;
|
|
2872
2915
|
}
|
|
@@ -3014,7 +3057,7 @@
|
|
|
3014
3057
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
3015
3058
|
}
|
|
3016
3059
|
}
|
|
3017
|
-
/*! component's theme wise override definitions and variables */
|
|
3060
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
3018
3061
|
/*! contextmenu layout */
|
|
3019
3062
|
.e-contextmenu-wrapper ul .e-menu-item .e-previous::before,
|
|
3020
3063
|
.e-contextmenu-container ul .e-menu-item .e-previous::before {
|
|
@@ -5167,7 +5210,7 @@
|
|
|
5167
5210
|
right: -18px;
|
|
5168
5211
|
}
|
|
5169
5212
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5170
|
-
top: initial !important;
|
|
5213
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5171
5214
|
}
|
|
5172
5215
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5173
5216
|
float: left;
|
|
@@ -6793,7 +6836,9 @@
|
|
|
6793
6836
|
color: #d1d5db;
|
|
6794
6837
|
}
|
|
6795
6838
|
|
|
6839
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6796
6840
|
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
6841
|
+
/* stylelint-disable */
|
|
6797
6842
|
/*! TreeView icons */
|
|
6798
6843
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6799
6844
|
content: "\e75c";
|
|
@@ -6817,6 +6862,7 @@
|
|
|
6817
6862
|
content: "\e839";
|
|
6818
6863
|
}
|
|
6819
6864
|
|
|
6865
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6820
6866
|
@keyframes rotation {
|
|
6821
6867
|
from {
|
|
6822
6868
|
transform: rotate(0deg);
|
|
@@ -7138,6 +7184,7 @@
|
|
|
7138
7184
|
.e-treeview .e-list-item .e-ul {
|
|
7139
7185
|
margin: 2px 0 -2px;
|
|
7140
7186
|
padding: 0 0 0 20px;
|
|
7187
|
+
margin: 2px 0 0;
|
|
7141
7188
|
}
|
|
7142
7189
|
.e-treeview .e-list-item.e-disable > .e-text-content,
|
|
7143
7190
|
.e-treeview .e-list-item.e-disable > .e-fullrow {
|
|
@@ -7448,6 +7495,8 @@
|
|
|
7448
7495
|
pointer-events: auto;
|
|
7449
7496
|
}
|
|
7450
7497
|
|
|
7498
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7499
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7451
7500
|
.e-bigger .e-treeview .e-list-text,
|
|
7452
7501
|
.e-treeview.e-bigger .e-list-text {
|
|
7453
7502
|
font-size: 16px;
|
|
@@ -7460,6 +7509,7 @@
|
|
|
7460
7509
|
}
|
|
7461
7510
|
.e-treeview {
|
|
7462
7511
|
-webkit-tap-highlight-color: transparent;
|
|
7512
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7463
7513
|
}
|
|
7464
7514
|
.e-treeview .e-text-content,
|
|
7465
7515
|
.e-treeview .e-fullrow {
|
|
@@ -7626,6 +7676,7 @@
|
|
|
7626
7676
|
border: 1px solid #22d3ee;
|
|
7627
7677
|
}
|
|
7628
7678
|
|
|
7679
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7629
7680
|
ejs-sidebar {
|
|
7630
7681
|
display: none;
|
|
7631
7682
|
}
|
|
@@ -7635,6 +7686,7 @@ ejs-sidebar {
|
|
|
7635
7686
|
}
|
|
7636
7687
|
|
|
7637
7688
|
.e-sidebar {
|
|
7689
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7638
7690
|
-webkit-tap-highlight-color: transparent;
|
|
7639
7691
|
background: #374151;
|
|
7640
7692
|
height: 100%;
|
|
@@ -7747,10 +7799,12 @@ ejs-sidebar {
|
|
|
7747
7799
|
touch-action: none;
|
|
7748
7800
|
}
|
|
7749
7801
|
|
|
7802
|
+
/* stylelint-disable */
|
|
7750
7803
|
.e-sidebar-overflow {
|
|
7751
7804
|
overflow-x: hidden !important;
|
|
7752
7805
|
}
|
|
7753
7806
|
|
|
7807
|
+
/* stylelint-enable */
|
|
7754
7808
|
.e-sidebar-overlay {
|
|
7755
7809
|
background-color: rgba(107, 114, 128, 0.75);
|
|
7756
7810
|
height: 100%;
|
|
@@ -7780,7 +7834,7 @@ ejs-sidebar {
|
|
|
7780
7834
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
7781
7835
|
}
|
|
7782
7836
|
}
|
|
7783
|
-
/*! component's theme wise override definitions and variables */
|
|
7837
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
7784
7838
|
/*! menu layout */
|
|
7785
7839
|
.e-menu-wrapper ul.e-vertical .e-menu-item .e-caret::before,
|
|
7786
7840
|
.e-menu-container ul.e-vertical .e-menu-item .e-caret::before {
|
|
@@ -8474,6 +8528,8 @@ ejs-sidebar {
|
|
|
8474
8528
|
border: none;
|
|
8475
8529
|
overflow-y: auto;
|
|
8476
8530
|
width: 100%;
|
|
8531
|
+
/* stylelint-disable */
|
|
8532
|
+
/* stylelint-enable */
|
|
8477
8533
|
}
|
|
8478
8534
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8479
8535
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8835,6 +8891,26 @@ ejs-sidebar {
|
|
|
8835
8891
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8836
8892
|
background: #4b5563;
|
|
8837
8893
|
}
|
|
8894
|
+
.e-menu-wrapper.e-inherit,
|
|
8895
|
+
.e-menu-container.e-inherit {
|
|
8896
|
+
border: 0;
|
|
8897
|
+
}
|
|
8898
|
+
.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,
|
|
8899
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8900
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8901
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8902
|
+
color: inherit;
|
|
8903
|
+
}
|
|
8904
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8905
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8906
|
+
background: inherit;
|
|
8907
|
+
}
|
|
8908
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8909
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8910
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8911
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8912
|
+
color: inherit;
|
|
8913
|
+
}
|
|
8838
8914
|
|
|
8839
8915
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8840
8916
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9249,4 +9325,249 @@ ejs-sidebar {
|
|
|
9249
9325
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9250
9326
|
background-color: #4b5563;
|
|
9251
9327
|
color: #fff;
|
|
9328
|
+
}
|
|
9329
|
+
|
|
9330
|
+
/*! AppBar component tailwind theme definitions and variables */
|
|
9331
|
+
/*! appbar component styles */
|
|
9332
|
+
.e-bigger .e-appbar,
|
|
9333
|
+
.e-appbar.e-bigger {
|
|
9334
|
+
height: 56px;
|
|
9335
|
+
font-size: 16px;
|
|
9336
|
+
}
|
|
9337
|
+
.e-bigger .e-appbar.e-dense,
|
|
9338
|
+
.e-appbar.e-bigger.e-dense {
|
|
9339
|
+
height: 48px;
|
|
9340
|
+
}
|
|
9341
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9342
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9343
|
+
height: 112px;
|
|
9344
|
+
}
|
|
9345
|
+
|
|
9346
|
+
.e-appbar {
|
|
9347
|
+
display: -ms-flexbox;
|
|
9348
|
+
display: flex;
|
|
9349
|
+
width: 100%;
|
|
9350
|
+
height: 48px;
|
|
9351
|
+
-ms-flex-negative: 0;
|
|
9352
|
+
flex-shrink: 0;
|
|
9353
|
+
-ms-flex-direction: row;
|
|
9354
|
+
flex-direction: row;
|
|
9355
|
+
position: relative;
|
|
9356
|
+
-ms-flex-align: center;
|
|
9357
|
+
align-items: center;
|
|
9358
|
+
padding: 8px;
|
|
9359
|
+
overflow: hidden;
|
|
9360
|
+
font-size: 14px;
|
|
9361
|
+
}
|
|
9362
|
+
.e-appbar > div:first-child {
|
|
9363
|
+
display: -ms-flexbox;
|
|
9364
|
+
display: flex;
|
|
9365
|
+
-ms-flex-align: center;
|
|
9366
|
+
align-items: center;
|
|
9367
|
+
width: 100%;
|
|
9368
|
+
height: 100%;
|
|
9369
|
+
}
|
|
9370
|
+
.e-appbar.e-sticky {
|
|
9371
|
+
position: sticky;
|
|
9372
|
+
top: 0;
|
|
9373
|
+
z-index: 1000;
|
|
9374
|
+
}
|
|
9375
|
+
.e-appbar.e-prominent {
|
|
9376
|
+
height: 94px;
|
|
9377
|
+
-ms-flex-align: start;
|
|
9378
|
+
align-items: flex-start;
|
|
9379
|
+
}
|
|
9380
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9381
|
+
-ms-flex-align: start;
|
|
9382
|
+
align-items: flex-start;
|
|
9383
|
+
}
|
|
9384
|
+
.e-appbar.e-dense {
|
|
9385
|
+
height: 40px;
|
|
9386
|
+
}
|
|
9387
|
+
.e-appbar.e-horizontal-bottom {
|
|
9388
|
+
position: absolute;
|
|
9389
|
+
bottom: 0;
|
|
9390
|
+
right: 0;
|
|
9391
|
+
left: 0;
|
|
9392
|
+
}
|
|
9393
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9394
|
+
position: fixed;
|
|
9395
|
+
top: auto;
|
|
9396
|
+
}
|
|
9397
|
+
.e-appbar .e-appbar-separator {
|
|
9398
|
+
height: 32px;
|
|
9399
|
+
}
|
|
9400
|
+
.e-appbar .e-appbar-spacer {
|
|
9401
|
+
-ms-flex-positive: 1;
|
|
9402
|
+
flex-grow: 1;
|
|
9403
|
+
}
|
|
9404
|
+
|
|
9405
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9406
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9407
|
+
overflow: hidden;
|
|
9408
|
+
}
|
|
9409
|
+
|
|
9410
|
+
/*! appbar component theme */
|
|
9411
|
+
.e-appbar {
|
|
9412
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
9413
|
+
}
|
|
9414
|
+
.e-appbar.e-light {
|
|
9415
|
+
background: #374151;
|
|
9416
|
+
color: #fff;
|
|
9417
|
+
border-color: #374151;
|
|
9418
|
+
border: none;
|
|
9419
|
+
}
|
|
9420
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9421
|
+
border-left: 1px solid #fff;
|
|
9422
|
+
}
|
|
9423
|
+
.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,
|
|
9424
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9425
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9426
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9427
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9428
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9429
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9430
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9431
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9432
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9433
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9434
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9435
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9436
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9437
|
+
}
|
|
9438
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9439
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9440
|
+
background: #374151;
|
|
9441
|
+
color: #fff;
|
|
9442
|
+
border-color: #374151;
|
|
9443
|
+
box-shadow: none;
|
|
9444
|
+
}
|
|
9445
|
+
.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,
|
|
9446
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9447
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9448
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9449
|
+
}
|
|
9450
|
+
.e-appbar.e-dark {
|
|
9451
|
+
background: #e5e7eb;
|
|
9452
|
+
color: #111827;
|
|
9453
|
+
border-color: #e5e7eb;
|
|
9454
|
+
}
|
|
9455
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9456
|
+
border-left: 1px solid #111827;
|
|
9457
|
+
}
|
|
9458
|
+
.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,
|
|
9459
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9460
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9461
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9462
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9463
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9464
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9465
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9466
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9467
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9468
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9469
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9470
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9471
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9472
|
+
}
|
|
9473
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9474
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9475
|
+
background: #e5e7eb;
|
|
9476
|
+
color: #111827;
|
|
9477
|
+
border-color: #e5e7eb;
|
|
9478
|
+
box-shadow: none;
|
|
9479
|
+
}
|
|
9480
|
+
.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,
|
|
9481
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9482
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9483
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9484
|
+
}
|
|
9485
|
+
.e-appbar.e-primary {
|
|
9486
|
+
background: #22d3ee;
|
|
9487
|
+
color: #000;
|
|
9488
|
+
border-color: #22d3ee;
|
|
9489
|
+
}
|
|
9490
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9491
|
+
border-left: 1px solid #000;
|
|
9492
|
+
}
|
|
9493
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9494
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9495
|
+
background: #22d3ee;
|
|
9496
|
+
color: #000;
|
|
9497
|
+
border-color: #22d3ee;
|
|
9498
|
+
box-shadow: none;
|
|
9499
|
+
}
|
|
9500
|
+
.e-appbar.e-inherit {
|
|
9501
|
+
background: inherit;
|
|
9502
|
+
color: inherit;
|
|
9503
|
+
border-color: inherit;
|
|
9504
|
+
border: 1px solid;
|
|
9505
|
+
}
|
|
9506
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9507
|
+
border-left: 1px solid;
|
|
9508
|
+
}
|
|
9509
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9510
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9511
|
+
background: inherit;
|
|
9512
|
+
color: inherit;
|
|
9513
|
+
border-color: inherit;
|
|
9514
|
+
box-shadow: none;
|
|
9515
|
+
}
|
|
9516
|
+
.e-appbar.e-horizontal-bottom {
|
|
9517
|
+
box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.1), 0 -1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
9518
|
+
}
|
|
9519
|
+
|
|
9520
|
+
.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 {
|
|
9521
|
+
background: #374151;
|
|
9522
|
+
color: #fff;
|
|
9523
|
+
}
|
|
9524
|
+
|
|
9525
|
+
.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 {
|
|
9526
|
+
background: #e5e7eb;
|
|
9527
|
+
color: #111827;
|
|
9528
|
+
}
|
|
9529
|
+
|
|
9530
|
+
.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 {
|
|
9531
|
+
background: #22d3ee;
|
|
9532
|
+
color: #000;
|
|
9533
|
+
}
|
|
9534
|
+
|
|
9535
|
+
.e-inherit.e-input-group,
|
|
9536
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9537
|
+
.e-inherit.e-float-input,
|
|
9538
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9539
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9540
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9541
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9542
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9543
|
+
color: inherit;
|
|
9544
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9545
|
+
}
|
|
9546
|
+
|
|
9547
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9548
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9549
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9550
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9551
|
+
box-shadow: none;
|
|
9552
|
+
}
|
|
9553
|
+
|
|
9554
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9555
|
+
color: inherit;
|
|
9556
|
+
opacity: 0.8;
|
|
9557
|
+
}
|
|
9558
|
+
|
|
9559
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9560
|
+
color: inherit;
|
|
9561
|
+
opacity: 0.8;
|
|
9562
|
+
}
|
|
9563
|
+
|
|
9564
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9565
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9566
|
+
border: none;
|
|
9567
|
+
color: inherit;
|
|
9568
|
+
}
|
|
9569
|
+
|
|
9570
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9571
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9572
|
+
color: inherit;
|
|
9252
9573
|
}
|