@syncfusion/ej2-navigations 20.2.50 → 20.3.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +14 -0
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/dist/ej2-navigations.min.js +10 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +330 -30
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +349 -30
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -12
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +112 -0
- package/src/appbar/appbar.js +220 -0
- package/src/appbar/index.d.ts +3 -0
- package/src/appbar/index.js +2 -0
- package/src/carousel/carousel-model.d.ts +11 -2
- package/src/carousel/carousel.d.ts +9 -0
- package/src/carousel/carousel.js +105 -14
- package/src/common/menu-base.js +2 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/tab/tab.d.ts +11 -7
- package/src/tab/tab.js +21 -14
- package/styles/accordion/_all.scss +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +5 -2
- package/styles/accordion/_bootstrap-definition.scss +3 -3
- package/styles/accordion/_bootstrap4-definition.scss +4 -1
- package/styles/accordion/_bootstrap5-definition.scss +1 -1
- package/styles/accordion/_fabric-dark-definition.scss +3 -4
- package/styles/accordion/_fabric-definition.scss +3 -3
- package/styles/accordion/_fluent-definition.scss +0 -1
- package/styles/accordion/_fusionnew-definition.scss +1 -1
- package/styles/accordion/_highcontrast-definition.scss +4 -4
- package/styles/accordion/_highcontrast-light-definition.scss +1 -1
- package/styles/accordion/_layout.scss +8 -9
- package/styles/accordion/_material-dark-definition.scss +3 -1
- package/styles/accordion/_material-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +1 -1
- package/styles/accordion/_tailwind-definition.scss +0 -1
- package/styles/accordion/_theme.scss +6 -5
- package/styles/accordion/bootstrap-dark.css +1 -0
- package/styles/accordion/bootstrap.css +1 -0
- package/styles/accordion/bootstrap4.css +1 -0
- package/styles/accordion/bootstrap5-dark.css +2 -0
- package/styles/accordion/bootstrap5.css +2 -0
- package/styles/accordion/fabric-dark.css +1 -0
- package/styles/accordion/fabric.css +1 -0
- package/styles/accordion/fluent-dark.css +1 -0
- package/styles/accordion/fluent.css +1 -0
- package/styles/accordion/highcontrast-light.css +1 -0
- package/styles/accordion/highcontrast.css +1 -0
- package/styles/accordion/icons/_bootstrap-dark.scss +2 -2
- package/styles/accordion/icons/_bootstrap.scss +2 -2
- package/styles/accordion/icons/_bootstrap4.scss +2 -2
- package/styles/accordion/icons/_bootstrap5.scss +2 -3
- package/styles/accordion/icons/_fabric-dark.scss +2 -2
- package/styles/accordion/icons/_fabric.scss +2 -2
- package/styles/accordion/icons/_fluent.scss +2 -3
- package/styles/accordion/icons/_fusionnew.scss +2 -3
- package/styles/accordion/icons/_highcontrast-light.scss +2 -2
- package/styles/accordion/icons/_highcontrast.scss +2 -2
- package/styles/accordion/icons/_material-dark.scss +2 -2
- package/styles/accordion/icons/_material.scss +2 -2
- package/styles/accordion/icons/_material3.scss +2 -3
- package/styles/accordion/icons/_tailwind.scss +2 -3
- package/styles/accordion/material-dark.css +1 -0
- package/styles/accordion/material.css +1 -0
- package/styles/accordion/tailwind-dark.css +1 -0
- package/styles/accordion/tailwind.css +1 -0
- package/styles/appbar/_all.scss +2 -0
- package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
- package/styles/appbar/_bootstrap-definition.scss +8 -0
- package/styles/appbar/_bootstrap4-definition.scss +8 -0
- package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/appbar/_bootstrap5-definition.scss +8 -0
- package/styles/appbar/_fabric-dark-definition.scss +8 -0
- package/styles/appbar/_fabric-definition.scss +8 -0
- package/styles/appbar/_fluent-dark-definition.scss +1 -0
- package/styles/appbar/_fluent-definition.scss +8 -0
- package/styles/appbar/_fusionnew-definition.scss +8 -0
- package/styles/appbar/_highcontrast-definition.scss +8 -0
- package/styles/appbar/_highcontrast-light-definition.scss +8 -0
- package/styles/appbar/_layout.scss +81 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-definition.scss +8 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_tailwind-dark-definition.scss +1 -0
- package/styles/appbar/_tailwind-definition.scss +8 -0
- package/styles/appbar/_theme.scss +208 -0
- package/styles/appbar/bootstrap-dark.css +244 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +244 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +244 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +244 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +244 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +244 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +244 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +244 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +244 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +244 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +244 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +245 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +245 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +245 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +245 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +340 -21
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +345 -26
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +348 -29
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +360 -36
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +360 -36
- package/styles/bootstrap5.scss +1 -0
- package/styles/breadcrumb/_all.scss +1 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +1 -2
- package/styles/breadcrumb/_layout.scss +4 -3
- package/styles/breadcrumb/_theme.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +1 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +1 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +1 -1
- package/styles/breadcrumb/icons/_fabric.scss +1 -1
- package/styles/breadcrumb/icons/_fluent.scss +1 -1
- package/styles/breadcrumb/icons/_fusionnew.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast-light.scss +1 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +1 -1
- package/styles/breadcrumb/icons/_material-dark.scss +1 -1
- package/styles/breadcrumb/icons/_material.scss +1 -1
- package/styles/breadcrumb/icons/_material3.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +1 -1
- package/styles/breadcrumb/icons/_tailwind.scss +1 -1
- package/styles/carousel/_all.scss +1 -1
- package/styles/carousel/_layout.scss +44 -5
- package/styles/carousel/bootstrap-dark.css +46 -11
- package/styles/carousel/bootstrap.css +46 -11
- package/styles/carousel/bootstrap4.css +46 -11
- package/styles/carousel/bootstrap5-dark.css +46 -11
- package/styles/carousel/bootstrap5.css +46 -11
- package/styles/carousel/fabric-dark.css +46 -11
- package/styles/carousel/fabric.css +46 -11
- package/styles/carousel/fluent-dark.css +46 -11
- package/styles/carousel/fluent.css +46 -11
- package/styles/carousel/highcontrast-light.css +46 -11
- package/styles/carousel/highcontrast.css +46 -11
- package/styles/carousel/material-dark.css +46 -11
- package/styles/carousel/material.css +46 -11
- package/styles/carousel/tailwind-dark.css +46 -11
- package/styles/carousel/tailwind.css +46 -11
- package/styles/context-menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/context-menu/_bootstrap4-definition.scss +3 -3
- package/styles/context-menu/_bootstrap5-definition.scss +2 -2
- package/styles/context-menu/_fabric-dark-definition.scss +2 -1
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -1
- package/styles/context-menu/_layout-mixin.scss +0 -1
- package/styles/context-menu/_layout.scss +1 -0
- package/styles/context-menu/_material-dark-definition.scss +2 -1
- package/styles/context-menu/_theme.scss +1 -0
- package/styles/context-menu/bootstrap4.css +2 -2
- package/styles/context-menu/bootstrap5-dark.css +3 -3
- package/styles/context-menu/bootstrap5.css +3 -3
- package/styles/context-menu/fluent-dark.css +1 -1
- package/styles/context-menu/fluent.css +1 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap.scss +1 -0
- package/styles/context-menu/icons/_bootstrap4.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +1 -0
- package/styles/context-menu/icons/_fabric-dark.scss +1 -0
- package/styles/context-menu/icons/_fabric.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +1 -0
- package/styles/context-menu/icons/_fusionnew.scss +1 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +1 -0
- package/styles/context-menu/icons/_highcontrast.scss +1 -0
- package/styles/context-menu/icons/_material-dark.scss +1 -0
- package/styles/context-menu/icons/_material.scss +1 -0
- package/styles/context-menu/icons/_material3.scss +1 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +1 -0
- package/styles/context-menu/icons/_tailwind.scss +1 -0
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +340 -21
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +340 -21
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +352 -33
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +352 -33
- package/styles/fluent.scss +1 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +4 -3
- package/styles/h-scroll/_bootstrap-definition.scss +3 -4
- package/styles/h-scroll/_bootstrap5-definition.scss +5 -7
- package/styles/h-scroll/_fabric-dark-definition.scss +4 -3
- package/styles/h-scroll/_fabric-definition.scss +4 -4
- package/styles/h-scroll/_fluent-definition.scss +5 -7
- package/styles/h-scroll/_fusionnew-definition.scss +5 -7
- package/styles/h-scroll/_highcontrast-definition.scss +4 -4
- package/styles/h-scroll/_highcontrast-light-definition.scss +4 -3
- package/styles/h-scroll/_layout.scss +11 -13
- package/styles/h-scroll/_material-dark-definition.scss +6 -5
- package/styles/h-scroll/_material-definition.scss +8 -10
- package/styles/h-scroll/_material3-definition.scss +5 -7
- package/styles/h-scroll/_tailwind-definition.scss +6 -8
- package/styles/h-scroll/_theme.scss +3 -5
- package/styles/h-scroll/bootstrap-dark.css +0 -2
- package/styles/h-scroll/bootstrap.css +0 -2
- package/styles/h-scroll/bootstrap4.css +0 -2
- package/styles/h-scroll/bootstrap5-dark.css +0 -2
- package/styles/h-scroll/bootstrap5.css +0 -2
- package/styles/h-scroll/fabric-dark.css +0 -2
- package/styles/h-scroll/fabric.css +0 -2
- package/styles/h-scroll/fluent-dark.css +0 -2
- package/styles/h-scroll/fluent.css +0 -2
- package/styles/h-scroll/highcontrast-light.css +0 -2
- package/styles/h-scroll/highcontrast.css +0 -2
- package/styles/h-scroll/icons/_bootstrap-dark.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap5.scss +3 -3
- package/styles/h-scroll/icons/_fabric-dark.scss +3 -3
- package/styles/h-scroll/icons/_fabric.scss +3 -3
- package/styles/h-scroll/icons/_fluent.scss +3 -3
- package/styles/h-scroll/icons/_fusionnew.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast-light.scss +3 -3
- package/styles/h-scroll/icons/_highcontrast.scss +3 -3
- package/styles/h-scroll/icons/_material-dark.scss +3 -3
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +3 -3
- package/styles/h-scroll/icons/_tailwind.scss +3 -3
- package/styles/h-scroll/material-dark.css +0 -2
- package/styles/h-scroll/material.css +0 -2
- package/styles/h-scroll/tailwind-dark.css +0 -2
- package/styles/h-scroll/tailwind.css +0 -2
- package/styles/highcontrast-light.css +339 -20
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +339 -20
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +339 -20
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +339 -20
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap-dark-definition.scss +2 -1
- package/styles/menu/_fabric-dark-definition.scss +2 -1
- package/styles/menu/_fluent-definition.scss +0 -1
- package/styles/menu/_layout.scss +4 -3
- package/styles/menu/_material-dark-definition.scss +2 -1
- package/styles/menu/_tailwind-definition.scss +0 -1
- package/styles/menu/_theme.scss +22 -1
- package/styles/menu/bootstrap-dark.css +22 -0
- package/styles/menu/bootstrap.css +22 -0
- package/styles/menu/bootstrap4.css +22 -0
- package/styles/menu/bootstrap5-dark.css +23 -1
- package/styles/menu/bootstrap5.css +23 -1
- package/styles/menu/fabric-dark.css +22 -0
- package/styles/menu/fabric.css +22 -0
- package/styles/menu/fluent-dark.css +23 -1
- package/styles/menu/fluent.css +23 -1
- package/styles/menu/highcontrast-light.css +22 -0
- package/styles/menu/highcontrast.css +22 -0
- package/styles/menu/icons/_bootstrap-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap.scss +1 -0
- package/styles/menu/icons/_bootstrap4.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +1 -0
- package/styles/menu/icons/_fabric-dark.scss +1 -0
- package/styles/menu/icons/_fabric.scss +1 -0
- package/styles/menu/icons/_fluent.scss +1 -0
- package/styles/menu/icons/_fusionnew.scss +1 -0
- package/styles/menu/icons/_highcontrast-light.scss +1 -0
- package/styles/menu/icons/_highcontrast.scss +1 -0
- package/styles/menu/icons/_material-dark.scss +1 -0
- package/styles/menu/icons/_material.scss +1 -0
- package/styles/menu/icons/_material3.scss +1 -0
- package/styles/menu/icons/_tailwind-dark.scss +1 -0
- package/styles/menu/icons/_tailwind.scss +1 -0
- package/styles/menu/material-dark.css +22 -0
- package/styles/menu/material.css +22 -0
- package/styles/menu/tailwind-dark.css +23 -1
- package/styles/menu/tailwind.css +23 -1
- package/styles/pager/_all.scss +1 -1
- package/styles/pager/_bootstrap-dark-definition.scss +0 -1
- package/styles/pager/_bootstrap-definition.scss +3 -4
- package/styles/pager/_bootstrap4-definition.scss +6 -6
- package/styles/pager/_bootstrap5-definition.scss +5 -5
- package/styles/pager/_fabric-dark-definition.scss +2 -2
- package/styles/pager/_fabric-definition.scss +0 -1
- package/styles/pager/_fluent-definition.scss +1 -1
- package/styles/pager/_highcontrast-definition.scss +0 -1
- package/styles/pager/_highcontrast-light-definition.scss +3 -2
- package/styles/pager/_layout.scss +35 -38
- package/styles/pager/_material-dark-definition.scss +2 -2
- package/styles/pager/_material-definition.scss +0 -1
- package/styles/pager/_tailwind-definition.scss +7 -7
- package/styles/pager/_theme.scss +3 -4
- package/styles/pager/bootstrap-dark.css +5 -3
- package/styles/pager/bootstrap.css +10 -8
- package/styles/pager/bootstrap4.css +11 -9
- package/styles/pager/bootstrap5-dark.css +14 -12
- package/styles/pager/bootstrap5.css +14 -12
- package/styles/pager/fabric-dark.css +5 -3
- package/styles/pager/fabric.css +5 -3
- package/styles/pager/fluent-dark.css +6 -4
- package/styles/pager/fluent.css +6 -4
- package/styles/pager/highcontrast-light.css +4 -2
- package/styles/pager/highcontrast.css +4 -2
- package/styles/pager/icons/_bootstrap-dark.scss +2 -2
- package/styles/pager/icons/_bootstrap.scss +2 -1
- package/styles/pager/icons/_bootstrap4.scss +2 -1
- package/styles/pager/icons/_bootstrap5.scss +2 -2
- package/styles/pager/icons/_fabric-dark.scss +4 -4
- package/styles/pager/icons/_fabric.scss +4 -4
- package/styles/pager/icons/_fluent.scss +2 -2
- package/styles/pager/icons/_fusionnew.scss +2 -2
- package/styles/pager/icons/_highcontrast-light.scss +3 -3
- package/styles/pager/icons/_highcontrast.scss +9 -4
- package/styles/pager/icons/_material-dark.scss +2 -2
- package/styles/pager/icons/_material.scss +10 -5
- package/styles/pager/icons/_material3.scss +2 -2
- package/styles/pager/icons/_tailwind.scss +2 -2
- package/styles/pager/material-dark.css +4 -2
- package/styles/pager/material.css +4 -2
- package/styles/pager/tailwind-dark.css +19 -17
- package/styles/pager/tailwind.css +19 -17
- package/styles/sidebar/_bootstrap5-definition.scss +1 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-definition.scss +1 -0
- package/styles/sidebar/_fusionnew-definition.scss +1 -0
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +1 -0
- package/styles/sidebar/_theme.scss +19 -28
- package/styles/sidebar/bootstrap-dark.css +4 -0
- package/styles/sidebar/bootstrap.css +4 -0
- package/styles/sidebar/bootstrap4.css +4 -0
- package/styles/sidebar/bootstrap5-dark.css +4 -0
- package/styles/sidebar/bootstrap5.css +4 -0
- package/styles/sidebar/fabric-dark.css +4 -0
- package/styles/sidebar/fabric.css +4 -0
- package/styles/sidebar/fluent-dark.css +4 -0
- package/styles/sidebar/fluent.css +4 -0
- package/styles/sidebar/highcontrast-light.css +4 -0
- package/styles/sidebar/highcontrast.css +4 -0
- package/styles/sidebar/material-dark.css +4 -0
- package/styles/sidebar/material.css +4 -0
- package/styles/sidebar/tailwind-dark.css +4 -0
- package/styles/sidebar/tailwind.css +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +2 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/_fabric-dark-definition.scss +2 -2
- package/styles/tab/_fabric-definition.scss +0 -1
- package/styles/tab/_fusionnew-definition.scss +1 -1
- package/styles/tab/_highcontrast-definition.scss +0 -1
- package/styles/tab/_highcontrast-light-definition.scss +0 -2
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +24 -26
- package/styles/tab/_material-dark-definition.scss +2 -3
- package/styles/tab/_material-definition.scss +0 -1
- package/styles/tab/_material3-definition.scss +1 -1
- package/styles/tab/_tailwind-definition.scss +0 -1
- package/styles/tab/_theme.scss +6 -8
- package/styles/tab/bootstrap-dark.css +1 -1
- package/styles/tab/bootstrap.css +1 -1
- package/styles/tab/bootstrap4.css +1 -1
- package/styles/tab/bootstrap5-dark.css +5 -2
- package/styles/tab/bootstrap5.css +5 -2
- package/styles/tab/fabric-dark.css +1 -1
- package/styles/tab/fabric.css +1 -1
- package/styles/tab/fluent-dark.css +5 -5
- package/styles/tab/fluent.css +5 -5
- package/styles/tab/highcontrast-light.css +1 -1
- package/styles/tab/highcontrast.css +1 -1
- package/styles/tab/icons/_bootstrap-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap.scss +1 -0
- package/styles/tab/icons/_bootstrap4.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +1 -1
- package/styles/tab/icons/_fabric-dark.scss +1 -0
- package/styles/tab/icons/_fabric.scss +1 -0
- package/styles/tab/icons/_fluent.scss +1 -1
- package/styles/tab/icons/_fusionnew.scss +1 -1
- package/styles/tab/icons/_highcontrast-light.scss +1 -0
- package/styles/tab/icons/_highcontrast.scss +1 -0
- package/styles/tab/icons/_material-dark.scss +1 -0
- package/styles/tab/icons/_material.scss +1 -0
- package/styles/tab/icons/_material3.scss +1 -1
- package/styles/tab/icons/_tailwind.scss +1 -1
- package/styles/tab/material-dark.css +1 -1
- package/styles/tab/material.css +1 -1
- package/styles/tab/tailwind-dark.css +1 -1
- package/styles/tab/tailwind.css +1 -1
- package/styles/tailwind-dark.css +359 -38
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +359 -38
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +6 -5
- package/styles/toolbar/_bootstrap-definition.scss +13 -13
- package/styles/toolbar/_bootstrap4-definition.scss +6 -6
- package/styles/toolbar/_bootstrap5-definition.scss +1 -1
- package/styles/toolbar/_fabric-dark-definition.scss +2 -1
- package/styles/toolbar/_fluent-definition.scss +2 -2
- package/styles/toolbar/_fusionnew-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +2 -1
- package/styles/toolbar/_layout.scss +50 -74
- package/styles/toolbar/_material-dark-definition.scss +9 -11
- package/styles/toolbar/_material-definition.scss +12 -13
- package/styles/toolbar/_material3-definition.scss +1 -1
- package/styles/toolbar/_theme.scss +5 -8
- package/styles/toolbar/bootstrap-dark.css +10 -2
- package/styles/toolbar/bootstrap.css +10 -2
- package/styles/toolbar/bootstrap4.css +10 -2
- package/styles/toolbar/bootstrap5-dark.css +12 -3
- package/styles/toolbar/bootstrap5.css +12 -3
- package/styles/toolbar/fabric-dark.css +10 -2
- package/styles/toolbar/fabric.css +10 -2
- package/styles/toolbar/fluent-dark.css +15 -7
- package/styles/toolbar/fluent.css +15 -7
- package/styles/toolbar/highcontrast-light.css +10 -2
- package/styles/toolbar/highcontrast.css +10 -2
- package/styles/toolbar/icons/_bootstrap-dark.scss +1 -1
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +1 -1
- package/styles/toolbar/icons/_bootstrap5.scss +1 -2
- package/styles/toolbar/icons/_fabric-dark.scss +1 -1
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent.scss +1 -2
- package/styles/toolbar/icons/_fusionnew.scss +1 -2
- package/styles/toolbar/icons/_highcontrast-light.scss +1 -1
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +1 -1
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +1 -2
- package/styles/toolbar/icons/_tailwind.scss +1 -2
- package/styles/toolbar/material-dark.css +10 -2
- package/styles/toolbar/material.css +10 -2
- package/styles/toolbar/tailwind-dark.css +11 -3
- package/styles/toolbar/tailwind.css +11 -3
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +1 -1
- package/styles/treeview/_bootstrap-definition.scss +1 -1
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/_fabric-dark-definition.scss +1 -1
- package/styles/treeview/_fabric-definition.scss +1 -1
- package/styles/treeview/_fluent-definition.scss +1 -1
- package/styles/treeview/_fusionnew-definition.scss +1 -1
- package/styles/treeview/_highcontrast-definition.scss +1 -1
- package/styles/treeview/_highcontrast-light-definition.scss +1 -1
- package/styles/treeview/_layout.scss +23 -18
- package/styles/treeview/_material-dark-definition.scss +1 -1
- package/styles/treeview/_material-definition.scss +1 -1
- package/styles/treeview/_material3-definition.scss +1 -1
- package/styles/treeview/_tailwind-definition.scss +2 -2
- package/styles/treeview/_theme.scss +15 -12
- package/styles/treeview/bootstrap-dark.css +6 -0
- package/styles/treeview/bootstrap.css +6 -0
- package/styles/treeview/bootstrap4.css +6 -0
- package/styles/treeview/bootstrap5-dark.css +6 -0
- package/styles/treeview/bootstrap5.css +6 -0
- package/styles/treeview/fabric-dark.css +6 -0
- package/styles/treeview/fabric.css +6 -0
- package/styles/treeview/fluent-dark.css +6 -0
- package/styles/treeview/fluent.css +6 -0
- package/styles/treeview/highcontrast-light.css +6 -0
- package/styles/treeview/highcontrast.css +6 -0
- package/styles/treeview/icons/_bootstrap-dark.scss +1 -1
- package/styles/treeview/icons/_bootstrap.scss +1 -1
- package/styles/treeview/icons/_bootstrap4.scss +1 -2
- package/styles/treeview/icons/_bootstrap5.scss +1 -1
- package/styles/treeview/icons/_fabric-dark.scss +1 -1
- package/styles/treeview/icons/_fabric.scss +1 -1
- package/styles/treeview/icons/_fluent.scss +1 -1
- package/styles/treeview/icons/_fusionnew.scss +1 -1
- package/styles/treeview/icons/_highcontrast-light.scss +1 -1
- package/styles/treeview/icons/_highcontrast.scss +1 -1
- package/styles/treeview/icons/_material-dark.scss +1 -1
- package/styles/treeview/icons/_material.scss +1 -1
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/icons/_tailwind-dark.scss +1 -1
- package/styles/treeview/icons/_tailwind.scss +1 -1
- package/styles/treeview/material-dark.css +6 -0
- package/styles/treeview/material.css +6 -0
- package/styles/treeview/tailwind-dark.css +7 -0
- package/styles/treeview/tailwind.css +7 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +5 -4
- package/styles/v-scroll/_bootstrap-definition.scss +3 -3
- package/styles/v-scroll/_bootstrap4-definition.scss +1 -1
- package/styles/v-scroll/_bootstrap5-definition.scss +3 -3
- package/styles/v-scroll/_fabric-dark-definition.scss +6 -5
- package/styles/v-scroll/_fabric-definition.scss +4 -4
- package/styles/v-scroll/_fluent-definition.scss +3 -3
- package/styles/v-scroll/_fusionnew-definition.scss +3 -3
- package/styles/v-scroll/_highcontrast-definition.scss +4 -4
- package/styles/v-scroll/_highcontrast-light-definition.scss +6 -5
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +6 -5
- package/styles/v-scroll/_material-definition.scss +5 -5
- package/styles/v-scroll/_material3-definition.scss +3 -3
- package/styles/v-scroll/_tailwind-definition.scss +3 -3
- package/styles/v-scroll/_theme.scss +2 -1
- package/styles/v-scroll/bootstrap-dark.css +0 -2
- package/styles/v-scroll/bootstrap.css +0 -2
- package/styles/v-scroll/bootstrap4.css +0 -2
- package/styles/v-scroll/bootstrap5-dark.css +0 -2
- package/styles/v-scroll/bootstrap5.css +0 -2
- package/styles/v-scroll/fabric-dark.css +0 -2
- package/styles/v-scroll/fabric.css +0 -2
- package/styles/v-scroll/fluent-dark.css +0 -2
- package/styles/v-scroll/fluent.css +0 -2
- package/styles/v-scroll/highcontrast-light.css +0 -2
- package/styles/v-scroll/highcontrast.css +0 -2
- package/styles/v-scroll/icons/_bootstrap-dark.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5.scss +1 -1
- package/styles/v-scroll/icons/_fabric-dark.scss +1 -0
- package/styles/v-scroll/icons/_fabric.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +1 -1
- package/styles/v-scroll/icons/_fusionnew.scss +1 -1
- package/styles/v-scroll/icons/_highcontrast-light.scss +1 -0
- package/styles/v-scroll/icons/_highcontrast.scss +1 -0
- package/styles/v-scroll/icons/_material-dark.scss +1 -0
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +1 -1
- package/styles/v-scroll/icons/_tailwind.scss +1 -1
- package/styles/v-scroll/material-dark.css +0 -2
- package/styles/v-scroll/material.css +0 -2
- package/styles/v-scroll/tailwind-dark.css +0 -2
- package/styles/v-scroll/tailwind.css +0 -2
package/styles/fluent-dark.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: "\e818";
|
|
@@ -224,6 +224,8 @@
|
|
|
224
224
|
padding: 8px 12.5px 8px 11.5px;
|
|
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;
|
|
@@ -276,7 +278,7 @@
|
|
|
276
278
|
.e-pager .e-prevpagedisabled,
|
|
277
279
|
.e-pager .e-nextpagedisabled,
|
|
278
280
|
.e-pager .e-lastpagedisabled {
|
|
279
|
-
opacity:
|
|
281
|
+
opacity: 0.8;
|
|
280
282
|
}
|
|
281
283
|
.e-pager .e-spacing,
|
|
282
284
|
.e-pager .e-numericitem:hover,
|
|
@@ -352,10 +354,10 @@
|
|
|
352
354
|
margin: 3px 0 -4px 0.3px;
|
|
353
355
|
overflow: hidden;
|
|
354
356
|
}
|
|
355
|
-
.e-pager .e-lastpage:
|
|
357
|
+
.e-pager .e-lastpage:hover {
|
|
356
358
|
border-radius: 0;
|
|
357
359
|
}
|
|
358
|
-
.e-pager .e-firstpage:
|
|
360
|
+
.e-pager .e-firstpage:hover {
|
|
359
361
|
border-radius: 0;
|
|
360
362
|
}
|
|
361
363
|
.e-pager .e-pagermessage,
|
|
@@ -822,8 +824,6 @@
|
|
|
822
824
|
display: inline-block;
|
|
823
825
|
height: inherit;
|
|
824
826
|
position: relative;
|
|
825
|
-
-ms-touch-action: none;
|
|
826
|
-
touch-action: none;
|
|
827
827
|
}
|
|
828
828
|
.e-hscroll .e-hscroll-content > * {
|
|
829
829
|
pointer-events: auto;
|
|
@@ -1048,8 +1048,6 @@
|
|
|
1048
1048
|
display: inline-block;
|
|
1049
1049
|
height: auto;
|
|
1050
1050
|
position: relative;
|
|
1051
|
-
-ms-touch-action: none;
|
|
1052
|
-
touch-action: none;
|
|
1053
1051
|
width: 100%;
|
|
1054
1052
|
}
|
|
1055
1053
|
.e-vscroll .e-vscroll-content > * {
|
|
@@ -1172,7 +1170,7 @@
|
|
|
1172
1170
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
1173
1171
|
}
|
|
1174
1172
|
}
|
|
1175
|
-
/*! component's theme wise override definitions and variables */
|
|
1173
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
1176
1174
|
/*! toolbar icons */
|
|
1177
1175
|
.e-toolbar .e-popup-down-icon::before {
|
|
1178
1176
|
content: "\e71c";
|
|
@@ -1184,6 +1182,7 @@
|
|
|
1184
1182
|
}
|
|
1185
1183
|
|
|
1186
1184
|
/*! toolbar layout */
|
|
1185
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1187
1186
|
.e-bigger .e-toolbar,
|
|
1188
1187
|
.e-toolbar.e-bigger {
|
|
1189
1188
|
height: 48px;
|
|
@@ -1260,7 +1259,7 @@
|
|
|
1260
1259
|
}
|
|
1261
1260
|
.e-bigger .e-toolbar .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
1262
1261
|
.e-toolbar.e-bigger .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
1263
|
-
line-height:
|
|
1262
|
+
line-height: 15px;
|
|
1264
1263
|
min-height: 18px;
|
|
1265
1264
|
min-width: 13px;
|
|
1266
1265
|
}
|
|
@@ -1473,7 +1472,7 @@
|
|
|
1473
1472
|
}
|
|
1474
1473
|
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
1475
1474
|
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
1476
|
-
line-height:
|
|
1475
|
+
line-height: 15px;
|
|
1477
1476
|
min-height: 18px;
|
|
1478
1477
|
min-width: 13px;
|
|
1479
1478
|
}
|
|
@@ -1521,8 +1520,6 @@
|
|
|
1521
1520
|
height: 38px;
|
|
1522
1521
|
min-height: 38px;
|
|
1523
1522
|
position: relative;
|
|
1524
|
-
-ms-touch-action: none;
|
|
1525
|
-
touch-action: none;
|
|
1526
1523
|
-webkit-user-select: none;
|
|
1527
1524
|
-ms-user-select: none;
|
|
1528
1525
|
user-select: none;
|
|
@@ -1636,7 +1633,7 @@
|
|
|
1636
1633
|
vertical-align: middle;
|
|
1637
1634
|
}
|
|
1638
1635
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon:not(.e-toolbar-pop) {
|
|
1639
|
-
line-height:
|
|
1636
|
+
line-height: 13px;
|
|
1640
1637
|
min-height: 16px;
|
|
1641
1638
|
min-width: 12px;
|
|
1642
1639
|
padding: 0;
|
|
@@ -1864,7 +1861,7 @@
|
|
|
1864
1861
|
line-height: 22px;
|
|
1865
1862
|
}
|
|
1866
1863
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
1867
|
-
line-height:
|
|
1864
|
+
line-height: 13px;
|
|
1868
1865
|
min-height: 16px;
|
|
1869
1866
|
}
|
|
1870
1867
|
.e-toolbar .e-toolbar-items {
|
|
@@ -1959,6 +1956,10 @@
|
|
|
1959
1956
|
.e-toolbar .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1960
1957
|
margin-right: 8px;
|
|
1961
1958
|
}
|
|
1959
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
1960
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
1961
|
+
touch-action: pan-y pinch-zoom;
|
|
1962
|
+
}
|
|
1962
1963
|
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1963
1964
|
margin-right: 8px;
|
|
1964
1965
|
}
|
|
@@ -2079,6 +2080,10 @@
|
|
|
2079
2080
|
bottom: auto;
|
|
2080
2081
|
top: 0;
|
|
2081
2082
|
}
|
|
2083
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
2084
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
2085
|
+
touch-action: pan-x pinch-zoom;
|
|
2086
|
+
}
|
|
2082
2087
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
2083
2088
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
2084
2089
|
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
@@ -2128,6 +2133,7 @@
|
|
|
2128
2133
|
}
|
|
2129
2134
|
|
|
2130
2135
|
/*! toolbar theme */
|
|
2136
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2131
2137
|
.e-toolbar {
|
|
2132
2138
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2133
2139
|
background: #252423;
|
|
@@ -2526,6 +2532,7 @@
|
|
|
2526
2532
|
}
|
|
2527
2533
|
|
|
2528
2534
|
/*! accordion theme */
|
|
2535
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2529
2536
|
.e-accordion {
|
|
2530
2537
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2531
2538
|
background: #1b1a19;
|
|
@@ -2633,7 +2640,8 @@
|
|
|
2633
2640
|
padding: 0;
|
|
2634
2641
|
position: relative;
|
|
2635
2642
|
}
|
|
2636
|
-
.e-carousel .e-carousel-items
|
|
2643
|
+
.e-carousel .e-carousel-items,
|
|
2644
|
+
.e-carousel .e-carousel-slide-container {
|
|
2637
2645
|
height: 100%;
|
|
2638
2646
|
margin: 0;
|
|
2639
2647
|
overflow: hidden;
|
|
@@ -2641,7 +2649,41 @@
|
|
|
2641
2649
|
position: relative;
|
|
2642
2650
|
width: 100%;
|
|
2643
2651
|
}
|
|
2644
|
-
.e-carousel.e-
|
|
2652
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2653
|
+
padding: 0 100px;
|
|
2654
|
+
}
|
|
2655
|
+
@media screen and (max-width: 480px) {
|
|
2656
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2657
|
+
padding: 0 75px;
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2660
|
+
@media screen and (max-width: 320px) {
|
|
2661
|
+
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2662
|
+
padding: 0 50px;
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2665
|
+
.e-carousel.e-partial .e-carousel-items {
|
|
2666
|
+
width: calc(var(--carousel-items-count) * 100%);
|
|
2667
|
+
display: -ms-flexbox;
|
|
2668
|
+
display: flex;
|
|
2669
|
+
-ms-flex-direction: row;
|
|
2670
|
+
flex-direction: row;
|
|
2671
|
+
transition-property: transform;
|
|
2672
|
+
transition-duration: 0.6s;
|
|
2673
|
+
transition-timing-function: ease-in-out;
|
|
2674
|
+
}
|
|
2675
|
+
.e-carousel.e-partial .e-carousel-item {
|
|
2676
|
+
height: 100%;
|
|
2677
|
+
overflow: hidden;
|
|
2678
|
+
padding: 0;
|
|
2679
|
+
position: relative;
|
|
2680
|
+
width: calc(100% / var(--carousel-items-count));
|
|
2681
|
+
}
|
|
2682
|
+
.e-carousel.e-blazor-carousel.e-partial .e-carousel-items {
|
|
2683
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2684
|
+
transition: transform 0.6s ease-in-out;
|
|
2685
|
+
}
|
|
2686
|
+
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2645
2687
|
backface-visibility: hidden;
|
|
2646
2688
|
display: none;
|
|
2647
2689
|
float: left;
|
|
@@ -2651,16 +2693,16 @@
|
|
|
2651
2693
|
transition: transform 0.6s ease-in-out;
|
|
2652
2694
|
width: 100%;
|
|
2653
2695
|
}
|
|
2654
|
-
.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 {
|
|
2696
|
+
.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 {
|
|
2655
2697
|
display: block;
|
|
2656
2698
|
}
|
|
2657
|
-
.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 {
|
|
2699
|
+
.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 {
|
|
2658
2700
|
transform: translateX(100%);
|
|
2659
2701
|
}
|
|
2660
|
-
.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 {
|
|
2702
|
+
.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 {
|
|
2661
2703
|
transform: translateX(-100%);
|
|
2662
2704
|
}
|
|
2663
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item {
|
|
2705
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2664
2706
|
backface-visibility: hidden;
|
|
2665
2707
|
display: block;
|
|
2666
2708
|
float: left;
|
|
@@ -2672,19 +2714,19 @@
|
|
|
2672
2714
|
width: 100%;
|
|
2673
2715
|
z-index: 0;
|
|
2674
2716
|
}
|
|
2675
|
-
.e-carousel.e-carousel-fade-animation .e-carousel-item.e-active {
|
|
2717
|
+
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2676
2718
|
opacity: 1;
|
|
2677
2719
|
z-index: 1;
|
|
2678
2720
|
}
|
|
2679
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item {
|
|
2721
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2680
2722
|
display: none;
|
|
2681
2723
|
height: 100%;
|
|
2682
2724
|
width: 100%;
|
|
2683
2725
|
}
|
|
2684
|
-
.e-carousel.e-carousel-animation-none .e-carousel-item.e-active {
|
|
2726
|
+
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item.e-active {
|
|
2685
2727
|
display: block;
|
|
2686
2728
|
}
|
|
2687
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item {
|
|
2729
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2688
2730
|
display: block;
|
|
2689
2731
|
height: 100%;
|
|
2690
2732
|
left: 0;
|
|
@@ -2694,7 +2736,7 @@
|
|
|
2694
2736
|
top: 0;
|
|
2695
2737
|
width: 100%;
|
|
2696
2738
|
}
|
|
2697
|
-
.e-carousel.e-carousel-custom-animation .e-carousel-item.e-active {
|
|
2739
|
+
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2698
2740
|
opacity: 1;
|
|
2699
2741
|
pointer-events: visible;
|
|
2700
2742
|
}
|
|
@@ -2842,7 +2884,7 @@
|
|
|
2842
2884
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
2843
2885
|
}
|
|
2844
2886
|
}
|
|
2845
|
-
/*! component's theme wise override definitions and variables */
|
|
2887
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
2846
2888
|
/*! contextmenu layout */
|
|
2847
2889
|
.e-contextmenu-wrapper ul .e-menu-item .e-previous::before,
|
|
2848
2890
|
.e-contextmenu-container ul .e-menu-item .e-previous::before {
|
|
@@ -4397,7 +4439,7 @@
|
|
|
4397
4439
|
color: transparent;
|
|
4398
4440
|
content: attr(data-content);
|
|
4399
4441
|
display: block;
|
|
4400
|
-
font-weight:
|
|
4442
|
+
font-weight: bold;
|
|
4401
4443
|
height: 1px;
|
|
4402
4444
|
overflow: hidden;
|
|
4403
4445
|
visibility: hidden;
|
|
@@ -4941,7 +4983,7 @@
|
|
|
4941
4983
|
color: transparent;
|
|
4942
4984
|
content: attr(data-content);
|
|
4943
4985
|
display: block;
|
|
4944
|
-
font-weight:
|
|
4986
|
+
font-weight: bold;
|
|
4945
4987
|
height: 1px;
|
|
4946
4988
|
overflow: hidden;
|
|
4947
4989
|
visibility: hidden;
|
|
@@ -5053,7 +5095,7 @@
|
|
|
5053
5095
|
right: -15px;
|
|
5054
5096
|
}
|
|
5055
5097
|
.e-tab .e-tab-header.e-vertical .e-toolbar-pop {
|
|
5056
|
-
top: initial !important;
|
|
5098
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
5057
5099
|
}
|
|
5058
5100
|
.e-tab .e-tab-header.e-vertical.e-vertical-left {
|
|
5059
5101
|
float: left;
|
|
@@ -5087,7 +5129,7 @@
|
|
|
5087
5129
|
color: transparent;
|
|
5088
5130
|
content: attr(data-content);
|
|
5089
5131
|
display: block;
|
|
5090
|
-
font-weight:
|
|
5132
|
+
font-weight: bold;
|
|
5091
5133
|
height: 1px;
|
|
5092
5134
|
overflow: hidden;
|
|
5093
5135
|
visibility: hidden;
|
|
@@ -5130,7 +5172,7 @@
|
|
|
5130
5172
|
color: transparent;
|
|
5131
5173
|
content: attr(data-content);
|
|
5132
5174
|
display: block;
|
|
5133
|
-
font-weight:
|
|
5175
|
+
font-weight: bold;
|
|
5134
5176
|
height: 1px;
|
|
5135
5177
|
overflow: hidden;
|
|
5136
5178
|
visibility: hidden;
|
|
@@ -6800,7 +6842,9 @@
|
|
|
6800
6842
|
color: #d2d0ce;
|
|
6801
6843
|
}
|
|
6802
6844
|
|
|
6845
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6803
6846
|
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
6847
|
+
/* stylelint-disable */
|
|
6804
6848
|
/*! TreeView icons */
|
|
6805
6849
|
.e-treeview .e-list-item div.e-icons::before {
|
|
6806
6850
|
content: "\e75c";
|
|
@@ -6824,6 +6868,7 @@
|
|
|
6824
6868
|
content: "\e839";
|
|
6825
6869
|
}
|
|
6826
6870
|
|
|
6871
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
6827
6872
|
@keyframes rotation {
|
|
6828
6873
|
from {
|
|
6829
6874
|
transform: rotate(0deg);
|
|
@@ -7459,6 +7504,8 @@
|
|
|
7459
7504
|
pointer-events: auto;
|
|
7460
7505
|
}
|
|
7461
7506
|
|
|
7507
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7508
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7462
7509
|
.e-bigger .e-treeview .e-list-text,
|
|
7463
7510
|
.e-treeview.e-bigger .e-list-text {
|
|
7464
7511
|
font-size: 16px;
|
|
@@ -7471,6 +7518,7 @@
|
|
|
7471
7518
|
}
|
|
7472
7519
|
.e-treeview {
|
|
7473
7520
|
-webkit-tap-highlight-color: transparent;
|
|
7521
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
7474
7522
|
}
|
|
7475
7523
|
.e-treeview .e-text-content,
|
|
7476
7524
|
.e-treeview .e-fullrow {
|
|
@@ -7647,6 +7695,7 @@
|
|
|
7647
7695
|
border: 1px solid #0078d4;
|
|
7648
7696
|
}
|
|
7649
7697
|
|
|
7698
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
7650
7699
|
ejs-sidebar {
|
|
7651
7700
|
display: none;
|
|
7652
7701
|
}
|
|
@@ -7656,6 +7705,7 @@ ejs-sidebar {
|
|
|
7656
7705
|
}
|
|
7657
7706
|
|
|
7658
7707
|
.e-sidebar {
|
|
7708
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
7659
7709
|
-webkit-tap-highlight-color: transparent;
|
|
7660
7710
|
background: #201f1e;
|
|
7661
7711
|
height: 100%;
|
|
@@ -7768,10 +7818,12 @@ ejs-sidebar {
|
|
|
7768
7818
|
touch-action: none;
|
|
7769
7819
|
}
|
|
7770
7820
|
|
|
7821
|
+
/* stylelint-disable */
|
|
7771
7822
|
.e-sidebar-overflow {
|
|
7772
7823
|
overflow-x: hidden !important;
|
|
7773
7824
|
}
|
|
7774
7825
|
|
|
7826
|
+
/* stylelint-enable */
|
|
7775
7827
|
.e-sidebar-overlay {
|
|
7776
7828
|
background-color: rgba(0, 0, 0, 0.4);
|
|
7777
7829
|
height: 100%;
|
|
@@ -7801,7 +7853,7 @@ ejs-sidebar {
|
|
|
7801
7853
|
box-shadow: 0 0 0 200px rgba(255, 255, 255, 0.12);
|
|
7802
7854
|
}
|
|
7803
7855
|
}
|
|
7804
|
-
/*! component's theme wise override definitions and variables */
|
|
7856
|
+
/*! component's theme wise override definitions and variables */ /* stylelint-disable-line no-empty-source */
|
|
7805
7857
|
/*! menu layout */
|
|
7806
7858
|
.e-menu-wrapper ul.e-vertical .e-menu-item .e-caret::before,
|
|
7807
7859
|
.e-menu-container ul.e-vertical .e-menu-item .e-caret::before {
|
|
@@ -8493,6 +8545,8 @@ ejs-sidebar {
|
|
|
8493
8545
|
border: none;
|
|
8494
8546
|
overflow-y: auto;
|
|
8495
8547
|
width: 100%;
|
|
8548
|
+
/* stylelint-disable */
|
|
8549
|
+
/* stylelint-enable */
|
|
8496
8550
|
}
|
|
8497
8551
|
.e-menu-wrapper.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu,
|
|
8498
8552
|
.e-menu-container.e-hamburger ul.e-menu.e-menu-parent.e-hide-menu {
|
|
@@ -8862,6 +8916,26 @@ ejs-sidebar {
|
|
|
8862
8916
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
8863
8917
|
background: #3b3a39;
|
|
8864
8918
|
}
|
|
8919
|
+
.e-menu-wrapper.e-inherit,
|
|
8920
|
+
.e-menu-container.e-inherit {
|
|
8921
|
+
border: 0;
|
|
8922
|
+
}
|
|
8923
|
+
.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,
|
|
8924
|
+
.e-menu-container.e-inherit .e-menu,
|
|
8925
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-menu-icon,
|
|
8926
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item .e-caret {
|
|
8927
|
+
color: inherit;
|
|
8928
|
+
}
|
|
8929
|
+
.e-menu-wrapper.e-inherit .e-menu,
|
|
8930
|
+
.e-menu-container.e-inherit .e-menu {
|
|
8931
|
+
background: inherit;
|
|
8932
|
+
}
|
|
8933
|
+
.e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
8934
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
8935
|
+
.e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
8936
|
+
background: rgba(0, 0, 0, 0.056);
|
|
8937
|
+
color: inherit;
|
|
8938
|
+
}
|
|
8865
8939
|
|
|
8866
8940
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
8867
8941
|
.e-menu-container.e-hamburger .e-menu-header {
|
|
@@ -9246,4 +9320,249 @@ ejs-sidebar {
|
|
|
9246
9320
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9247
9321
|
background-color: #323130;
|
|
9248
9322
|
color: #f3f2f1;
|
|
9323
|
+
}
|
|
9324
|
+
|
|
9325
|
+
/*! AppBar component FluentUI theme definitions and variables */
|
|
9326
|
+
/*! appbar component styles */
|
|
9327
|
+
.e-bigger .e-appbar,
|
|
9328
|
+
.e-appbar.e-bigger {
|
|
9329
|
+
height: 56px;
|
|
9330
|
+
font-size: 16px;
|
|
9331
|
+
}
|
|
9332
|
+
.e-bigger .e-appbar.e-dense,
|
|
9333
|
+
.e-appbar.e-bigger.e-dense {
|
|
9334
|
+
height: 48px;
|
|
9335
|
+
}
|
|
9336
|
+
.e-bigger .e-appbar.e-prominent,
|
|
9337
|
+
.e-appbar.e-bigger.e-prominent {
|
|
9338
|
+
height: 112px;
|
|
9339
|
+
}
|
|
9340
|
+
|
|
9341
|
+
.e-appbar {
|
|
9342
|
+
display: -ms-flexbox;
|
|
9343
|
+
display: flex;
|
|
9344
|
+
width: 100%;
|
|
9345
|
+
height: 48px;
|
|
9346
|
+
-ms-flex-negative: 0;
|
|
9347
|
+
flex-shrink: 0;
|
|
9348
|
+
-ms-flex-direction: row;
|
|
9349
|
+
flex-direction: row;
|
|
9350
|
+
position: relative;
|
|
9351
|
+
-ms-flex-align: center;
|
|
9352
|
+
align-items: center;
|
|
9353
|
+
padding: 8px;
|
|
9354
|
+
overflow: hidden;
|
|
9355
|
+
font-size: 14px;
|
|
9356
|
+
}
|
|
9357
|
+
.e-appbar > div:first-child {
|
|
9358
|
+
display: -ms-flexbox;
|
|
9359
|
+
display: flex;
|
|
9360
|
+
-ms-flex-align: center;
|
|
9361
|
+
align-items: center;
|
|
9362
|
+
width: 100%;
|
|
9363
|
+
height: 100%;
|
|
9364
|
+
}
|
|
9365
|
+
.e-appbar.e-sticky {
|
|
9366
|
+
position: sticky;
|
|
9367
|
+
top: 0;
|
|
9368
|
+
z-index: 1000;
|
|
9369
|
+
}
|
|
9370
|
+
.e-appbar.e-prominent {
|
|
9371
|
+
height: 94px;
|
|
9372
|
+
-ms-flex-align: start;
|
|
9373
|
+
align-items: flex-start;
|
|
9374
|
+
}
|
|
9375
|
+
.e-appbar.e-prominent > div:first-child {
|
|
9376
|
+
-ms-flex-align: start;
|
|
9377
|
+
align-items: flex-start;
|
|
9378
|
+
}
|
|
9379
|
+
.e-appbar.e-dense {
|
|
9380
|
+
height: 40px;
|
|
9381
|
+
}
|
|
9382
|
+
.e-appbar.e-horizontal-bottom {
|
|
9383
|
+
position: absolute;
|
|
9384
|
+
bottom: 0;
|
|
9385
|
+
right: 0;
|
|
9386
|
+
left: 0;
|
|
9387
|
+
}
|
|
9388
|
+
.e-appbar.e-horizontal-bottom.e-sticky {
|
|
9389
|
+
position: fixed;
|
|
9390
|
+
top: auto;
|
|
9391
|
+
}
|
|
9392
|
+
.e-appbar .e-appbar-separator {
|
|
9393
|
+
height: 32px;
|
|
9394
|
+
}
|
|
9395
|
+
.e-appbar .e-appbar-spacer {
|
|
9396
|
+
-ms-flex-positive: 1;
|
|
9397
|
+
flex-grow: 1;
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9400
|
+
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9401
|
+
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
9402
|
+
overflow: hidden;
|
|
9403
|
+
}
|
|
9404
|
+
|
|
9405
|
+
/*! appbar component theme */
|
|
9406
|
+
.e-appbar {
|
|
9407
|
+
box-shadow: 0 1.6px 3.6px rgba(0, 0, 0, 0.13), 0 0.3px 0.9px rgba(0, 0, 0, 0.1);
|
|
9408
|
+
}
|
|
9409
|
+
.e-appbar.e-light {
|
|
9410
|
+
background: #292827;
|
|
9411
|
+
color: #faf9f8;
|
|
9412
|
+
border-color: #292827;
|
|
9413
|
+
border: none;
|
|
9414
|
+
}
|
|
9415
|
+
.e-appbar.e-light .e-appbar-separator {
|
|
9416
|
+
border-left: 1px solid #faf9f8;
|
|
9417
|
+
}
|
|
9418
|
+
.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,
|
|
9419
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:hover,
|
|
9420
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:focus,
|
|
9421
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit:active,
|
|
9422
|
+
.e-appbar.e-light .e-css.e-btn.e-inherit.e-active,
|
|
9423
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:hover,
|
|
9424
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:focus,
|
|
9425
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit:active,
|
|
9426
|
+
.e-appbar.e-light .e-dropdown-btn.e-inherit.e-active,
|
|
9427
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9428
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9429
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9430
|
+
.e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9431
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9432
|
+
}
|
|
9433
|
+
.e-appbar.e-light .e-menu-wrapper.e-inherit,
|
|
9434
|
+
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
9435
|
+
background: #292827;
|
|
9436
|
+
color: #faf9f8;
|
|
9437
|
+
border-color: #292827;
|
|
9438
|
+
box-shadow: none;
|
|
9439
|
+
}
|
|
9440
|
+
.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,
|
|
9441
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9442
|
+
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9443
|
+
background: rgba(255, 255, 255, 0.08);
|
|
9444
|
+
}
|
|
9445
|
+
.e-appbar.e-dark {
|
|
9446
|
+
background: #b3b0ad;
|
|
9447
|
+
color: #201f1e;
|
|
9448
|
+
border-color: #b3b0ad;
|
|
9449
|
+
}
|
|
9450
|
+
.e-appbar.e-dark .e-appbar-separator {
|
|
9451
|
+
border-left: 1px solid #201f1e;
|
|
9452
|
+
}
|
|
9453
|
+
.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,
|
|
9454
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:hover,
|
|
9455
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:focus,
|
|
9456
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit:active,
|
|
9457
|
+
.e-appbar.e-dark .e-css.e-btn.e-inherit.e-active,
|
|
9458
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:hover,
|
|
9459
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:focus,
|
|
9460
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit:active,
|
|
9461
|
+
.e-appbar.e-dark .e-dropdown-btn.e-inherit.e-active,
|
|
9462
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:hover,
|
|
9463
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:focus,
|
|
9464
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit:active,
|
|
9465
|
+
.e-appbar.e-dark .e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
9466
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9467
|
+
}
|
|
9468
|
+
.e-appbar.e-dark .e-menu-wrapper.e-inherit,
|
|
9469
|
+
.e-appbar.e-dark .e-menu-container.e-inherit {
|
|
9470
|
+
background: #b3b0ad;
|
|
9471
|
+
color: #201f1e;
|
|
9472
|
+
border-color: #b3b0ad;
|
|
9473
|
+
box-shadow: none;
|
|
9474
|
+
}
|
|
9475
|
+
.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,
|
|
9476
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
9477
|
+
.e-appbar.e-dark .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
|
|
9478
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9479
|
+
}
|
|
9480
|
+
.e-appbar.e-primary {
|
|
9481
|
+
background: #0078d4;
|
|
9482
|
+
color: #1b1a19;
|
|
9483
|
+
border-color: #0078d4;
|
|
9484
|
+
}
|
|
9485
|
+
.e-appbar.e-primary .e-appbar-separator {
|
|
9486
|
+
border-left: 1px solid #1b1a19;
|
|
9487
|
+
}
|
|
9488
|
+
.e-appbar.e-primary .e-menu-wrapper.e-inherit,
|
|
9489
|
+
.e-appbar.e-primary .e-menu-container.e-inherit {
|
|
9490
|
+
background: #0078d4;
|
|
9491
|
+
color: #1b1a19;
|
|
9492
|
+
border-color: #0078d4;
|
|
9493
|
+
box-shadow: none;
|
|
9494
|
+
}
|
|
9495
|
+
.e-appbar.e-inherit {
|
|
9496
|
+
background: inherit;
|
|
9497
|
+
color: inherit;
|
|
9498
|
+
border-color: inherit;
|
|
9499
|
+
border: 1px solid;
|
|
9500
|
+
}
|
|
9501
|
+
.e-appbar.e-inherit .e-appbar-separator {
|
|
9502
|
+
border-left: 1px solid;
|
|
9503
|
+
}
|
|
9504
|
+
.e-appbar.e-inherit .e-menu-wrapper.e-inherit,
|
|
9505
|
+
.e-appbar.e-inherit .e-menu-container.e-inherit {
|
|
9506
|
+
background: inherit;
|
|
9507
|
+
color: inherit;
|
|
9508
|
+
border-color: inherit;
|
|
9509
|
+
box-shadow: none;
|
|
9510
|
+
}
|
|
9511
|
+
.e-appbar.e-horizontal-bottom {
|
|
9512
|
+
box-shadow: 0 -1.6px 3.6px rgba(0, 0, 0, 0.13), 0 -0.3px 0.9px rgba(0, 0, 0, 0.1);
|
|
9513
|
+
}
|
|
9514
|
+
|
|
9515
|
+
.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 {
|
|
9516
|
+
background: #292827;
|
|
9517
|
+
color: #faf9f8;
|
|
9518
|
+
}
|
|
9519
|
+
|
|
9520
|
+
.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 {
|
|
9521
|
+
background: #b3b0ad;
|
|
9522
|
+
color: #201f1e;
|
|
9523
|
+
}
|
|
9524
|
+
|
|
9525
|
+
.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 {
|
|
9526
|
+
background: #0078d4;
|
|
9527
|
+
color: #1b1a19;
|
|
9528
|
+
}
|
|
9529
|
+
|
|
9530
|
+
.e-inherit.e-input-group,
|
|
9531
|
+
.e-inherit.e-input-group.e-control-wrapper,
|
|
9532
|
+
.e-inherit.e-float-input,
|
|
9533
|
+
.e-inherit.e-float-input.e-input-group,
|
|
9534
|
+
.e-inherit.e-float-input.e-control-wrapper,
|
|
9535
|
+
.e-inherit.e-float-input.e-input-group.e-control-wrapper,
|
|
9536
|
+
.e-inherit.e-input-group:not(.e-disabled) .e-input-group-icon:hover,
|
|
9537
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
|
|
9538
|
+
color: inherit;
|
|
9539
|
+
background: rgba(0, 0, 0, 0.056);
|
|
9540
|
+
}
|
|
9541
|
+
|
|
9542
|
+
.e-inherit.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9543
|
+
.e-inherit.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
|
|
9544
|
+
.e-inherit.e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
|
|
9545
|
+
.e-inherit.e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
9546
|
+
box-shadow: none;
|
|
9547
|
+
}
|
|
9548
|
+
|
|
9549
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput:-ms-input-placeholder {
|
|
9550
|
+
color: inherit;
|
|
9551
|
+
opacity: 0.8;
|
|
9552
|
+
}
|
|
9553
|
+
|
|
9554
|
+
.e-inherit.e-input-group.e-control-wrapper .e-searchinput::placeholder {
|
|
9555
|
+
color: inherit;
|
|
9556
|
+
opacity: 0.8;
|
|
9557
|
+
}
|
|
9558
|
+
|
|
9559
|
+
.e-inherit.e-input-group .e-input-group-icon,
|
|
9560
|
+
.e-inherit.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
9561
|
+
border: none;
|
|
9562
|
+
color: inherit;
|
|
9563
|
+
}
|
|
9564
|
+
|
|
9565
|
+
.e-inherit.e-input-group .e-clear-icon,
|
|
9566
|
+
.e-inherit.e-input-group.e-control-wrapper .e-clear-icon {
|
|
9567
|
+
color: inherit;
|
|
9249
9568
|
}
|
package/styles/fluent-dark.scss
CHANGED