@syncfusion/ej2-navigations 16.4.45 → 16.4.52-46585
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/.eslintrc.json +259 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +1421 -0
- package/README.md +226 -112
- package/appbar.d.ts +4 -0
- package/appbar.js +4 -0
- package/breadcrumb.d.ts +4 -0
- package/breadcrumb.js +4 -0
- package/carousel.d.ts +4 -0
- package/carousel.js +4 -0
- package/dist/ej2-navigations.min.js +1 -0
- package/dist/ej2-navigations.umd.min.js +1 -10
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +8469 -2261
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +8157 -1833
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +1 -10
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/helpers/e2e/accordionHelper.d.ts +56 -0
- package/helpers/e2e/accordionHelper.js +71 -0
- package/helpers/e2e/contextmenuHelper.d.ts +37 -0
- package/helpers/e2e/contextmenuHelper.js +53 -0
- package/helpers/e2e/index.d.ts +7 -0
- package/helpers/e2e/index.js +14 -0
- package/helpers/e2e/menuHelper.d.ts +37 -0
- package/helpers/e2e/menuHelper.js +53 -0
- package/helpers/e2e/sidebarHelper.d.ts +94 -0
- package/helpers/e2e/sidebarHelper.js +110 -0
- package/helpers/e2e/tabHelper.d.ts +60 -0
- package/helpers/e2e/tabHelper.js +74 -0
- package/helpers/e2e/toolbarHelper.d.ts +60 -0
- package/helpers/e2e/toolbarHelper.js +74 -0
- package/helpers/e2e/treeview.d.ts +50 -0
- package/helpers/e2e/treeview.js +80 -0
- package/package.json +105 -105
- package/src/accordion/accordion-model.d.ts +122 -45
- package/src/accordion/accordion.d.ts +169 -48
- package/src/accordion/accordion.js +530 -230
- package/src/appbar/appbar-model.d.ts +76 -0
- package/src/appbar/appbar.d.ts +115 -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/breadcrumb/breadcrumb-model.d.ts +161 -0
- package/src/breadcrumb/breadcrumb.d.ts +285 -0
- package/src/breadcrumb/breadcrumb.js +789 -0
- package/src/breadcrumb/index.d.ts +5 -0
- package/src/breadcrumb/index.js +4 -0
- package/src/carousel/carousel-model.d.ts +223 -0
- package/src/carousel/carousel.d.ts +344 -0
- package/src/carousel/carousel.js +1100 -0
- package/src/carousel/index.d.ts +3 -0
- package/src/carousel/index.js +2 -0
- package/src/common/h-scroll-model.d.ts +1 -0
- package/src/common/h-scroll.d.ts +21 -10
- package/src/common/h-scroll.js +58 -36
- package/src/common/index.d.ts +2 -0
- package/src/common/index.js +2 -0
- package/src/common/menu-base-model.d.ts +77 -22
- package/src/common/menu-base.d.ts +192 -41
- package/src/common/menu-base.js +1104 -366
- package/src/common/menu-scroll.d.ts +29 -0
- package/src/common/menu-scroll.js +103 -0
- package/src/common/v-scroll-model.d.ts +1 -0
- package/src/common/v-scroll.d.ts +20 -9
- package/src/common/v-scroll.js +47 -20
- package/src/context-menu/context-menu-model.d.ts +7 -3
- package/src/context-menu/context-menu.d.ts +25 -10
- package/src/context-menu/context-menu.js +27 -15
- package/src/index.d.ts +3 -0
- package/src/index.js +3 -0
- package/src/menu/menu-model.d.ts +34 -1
- package/src/menu/menu.d.ts +60 -6
- package/src/menu/menu.js +144 -18
- package/src/sidebar/sidebar-model.d.ts +54 -25
- package/src/sidebar/sidebar.d.ts +117 -22
- package/src/sidebar/sidebar.js +250 -120
- package/src/tab/tab-model.d.ts +156 -37
- package/src/tab/tab.d.ts +286 -61
- package/src/tab/tab.js +1136 -331
- package/src/toolbar/toolbar-model.d.ts +110 -29
- package/src/toolbar/toolbar.d.ts +185 -55
- package/src/toolbar/toolbar.js +595 -234
- package/src/treeview/treeview-model.d.ts +269 -83
- package/src/treeview/treeview.d.ts +497 -74
- package/src/treeview/treeview.js +2006 -409
- package/styles/accordion/_all.scss +0 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +171 -67
- package/styles/accordion/_bootstrap-definition.scss +115 -11
- package/styles/accordion/_bootstrap4-definition.scss +182 -0
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +180 -0
- package/styles/accordion/_fabric-dark-definition.scss +171 -69
- package/styles/accordion/_fabric-definition.scss +119 -15
- package/styles/accordion/_fluent-dark-definition.scss +1 -0
- package/styles/accordion/_fluent-definition.scss +179 -0
- package/styles/accordion/_fusionnew-definition.scss +180 -0
- package/styles/accordion/_highcontrast-definition.scss +122 -23
- package/styles/accordion/_highcontrast-light-definition.scss +192 -95
- package/styles/accordion/_layout.scss +100 -162
- package/styles/accordion/_material-dark-definition.scss +173 -70
- package/styles/accordion/_material-definition.scss +115 -11
- package/styles/accordion/_tailwind-dark-definition.scss +1 -0
- package/styles/accordion/_tailwind-definition.scss +178 -0
- package/styles/accordion/_theme.scss +219 -224
- package/styles/accordion/bootstrap-dark.css +267 -181
- package/styles/accordion/bootstrap-dark.scss +1 -0
- package/styles/accordion/bootstrap.css +258 -172
- package/styles/accordion/bootstrap.scss +1 -0
- package/styles/accordion/bootstrap4.css +525 -0
- package/styles/accordion/bootstrap4.scss +4 -0
- package/styles/accordion/bootstrap5-dark.css +527 -0
- package/styles/accordion/bootstrap5-dark.scss +4 -0
- package/styles/accordion/bootstrap5.css +527 -0
- package/styles/accordion/bootstrap5.scss +4 -0
- package/styles/accordion/fabric-dark.css +266 -164
- package/styles/accordion/fabric-dark.scss +1 -0
- package/styles/accordion/fabric.css +266 -164
- package/styles/accordion/fabric.scss +1 -0
- package/styles/accordion/fluent-dark.css +526 -0
- package/styles/accordion/fluent-dark.scss +4 -0
- package/styles/accordion/fluent.css +526 -0
- package/styles/accordion/fluent.scss +4 -0
- package/styles/accordion/highcontrast-light.css +525 -0
- package/styles/accordion/highcontrast-light.scss +4 -0
- package/styles/accordion/highcontrast.css +243 -232
- package/styles/accordion/highcontrast.scss +1 -0
- package/styles/accordion/{_icons.scss → icons/_bootstrap-dark.scss} +3 -3
- package/styles/accordion/icons/_bootstrap.scss +17 -0
- package/styles/accordion/icons/_bootstrap4.scss +17 -0
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +17 -0
- package/styles/accordion/icons/_fabric-dark.scss +17 -0
- package/styles/accordion/icons/_fabric.scss +17 -0
- package/styles/accordion/icons/_fluent-dark.scss +1 -0
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_fusionnew.scss +17 -0
- package/styles/accordion/icons/_highcontrast-light.scss +17 -0
- package/styles/accordion/icons/_highcontrast.scss +17 -0
- package/styles/accordion/icons/_material-dark.scss +17 -0
- package/styles/accordion/icons/_material.scss +17 -0
- package/styles/accordion/icons/_material3.scss +17 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -0
- package/styles/accordion/icons/_tailwind.scss +17 -0
- package/styles/accordion/material-dark.css +268 -173
- package/styles/accordion/material-dark.scss +1 -0
- package/styles/accordion/material.css +264 -169
- package/styles/accordion/material.scss +1 -0
- package/styles/accordion/tailwind-dark.css +527 -0
- package/styles/accordion/tailwind-dark.scss +4 -0
- package/styles/accordion/tailwind.css +527 -0
- package/styles/accordion/tailwind.scss +4 -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 +84 -0
- package/styles/appbar/_material-dark-definition.scss +8 -0
- package/styles/appbar/_material-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 +247 -0
- package/styles/appbar/bootstrap-dark.scss +3 -0
- package/styles/appbar/bootstrap.css +247 -0
- package/styles/appbar/bootstrap.scss +3 -0
- package/styles/appbar/bootstrap4.css +247 -0
- package/styles/appbar/bootstrap4.scss +3 -0
- package/styles/appbar/bootstrap5-dark.css +247 -0
- package/styles/appbar/bootstrap5-dark.scss +3 -0
- package/styles/appbar/bootstrap5.css +247 -0
- package/styles/appbar/bootstrap5.scss +3 -0
- package/styles/appbar/fabric-dark.css +247 -0
- package/styles/appbar/fabric-dark.scss +3 -0
- package/styles/appbar/fabric.css +247 -0
- package/styles/appbar/fabric.scss +3 -0
- package/styles/appbar/fluent-dark.css +247 -0
- package/styles/appbar/fluent-dark.scss +3 -0
- package/styles/appbar/fluent.css +247 -0
- package/styles/appbar/fluent.scss +3 -0
- package/styles/appbar/highcontrast-light.css +247 -0
- package/styles/appbar/highcontrast-light.scss +3 -0
- package/styles/appbar/highcontrast.css +247 -0
- package/styles/appbar/highcontrast.scss +3 -0
- package/styles/appbar/material-dark.css +248 -0
- package/styles/appbar/material-dark.scss +3 -0
- package/styles/appbar/material.css +248 -0
- package/styles/appbar/material.scss +3 -0
- package/styles/appbar/tailwind-dark.css +248 -0
- package/styles/appbar/tailwind-dark.scss +3 -0
- package/styles/appbar/tailwind.css +248 -0
- package/styles/appbar/tailwind.scss +3 -0
- package/styles/bootstrap-dark.css +5503 -3478
- package/styles/bootstrap-dark.scss +4 -0
- package/styles/bootstrap.css +5420 -3550
- package/styles/bootstrap.scss +4 -0
- package/styles/bootstrap4.css +10166 -0
- package/styles/bootstrap4.scss +13 -0
- package/styles/bootstrap5-dark.css +10207 -0
- package/styles/bootstrap5-dark.scss +13 -0
- package/styles/bootstrap5.css +10207 -0
- package/styles/bootstrap5.scss +13 -0
- package/styles/breadcrumb/_all.scss +3 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
- package/styles/breadcrumb/_fabric-definition.scss +59 -0
- package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
- package/styles/breadcrumb/_fluent-definition.scss +62 -0
- package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
- package/styles/breadcrumb/_layout.scss +491 -0
- package/styles/breadcrumb/_material-dark-definition.scss +50 -0
- package/styles/breadcrumb/_material-definition.scss +50 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
- package/styles/breadcrumb/_tailwind-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +176 -0
- package/styles/breadcrumb/bootstrap-dark.css +395 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap.css +395 -0
- package/styles/breadcrumb/bootstrap.scss +4 -0
- package/styles/breadcrumb/bootstrap4.css +395 -0
- package/styles/breadcrumb/bootstrap4.scss +4 -0
- package/styles/breadcrumb/bootstrap5-dark.css +409 -0
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap5.css +409 -0
- package/styles/breadcrumb/bootstrap5.scss +4 -0
- package/styles/breadcrumb/fabric-dark.css +395 -0
- package/styles/breadcrumb/fabric-dark.scss +4 -0
- package/styles/breadcrumb/fabric.css +395 -0
- package/styles/breadcrumb/fabric.scss +4 -0
- package/styles/breadcrumb/fluent-dark.css +371 -0
- package/styles/breadcrumb/fluent-dark.scss +4 -0
- package/styles/breadcrumb/fluent.css +371 -0
- package/styles/breadcrumb/fluent.scss +4 -0
- package/styles/breadcrumb/highcontrast-light.css +402 -0
- package/styles/breadcrumb/highcontrast-light.scss +4 -0
- package/styles/breadcrumb/highcontrast.css +402 -0
- package/styles/breadcrumb/highcontrast.scss +4 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
- package/styles/breadcrumb/icons/_fabric.scss +14 -0
- package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
- package/styles/breadcrumb/icons/_material-dark.scss +25 -0
- package/styles/breadcrumb/icons/_material.scss +25 -0
- package/styles/breadcrumb/icons/_material3.scss +25 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
- package/styles/breadcrumb/icons/_tailwind.scss +25 -0
- package/styles/breadcrumb/material-dark.css +379 -0
- package/styles/breadcrumb/material-dark.scss +4 -0
- package/styles/breadcrumb/material.css +379 -0
- package/styles/breadcrumb/material.scss +4 -0
- package/styles/breadcrumb/tailwind-dark.css +402 -0
- package/styles/breadcrumb/tailwind-dark.scss +4 -0
- package/styles/breadcrumb/tailwind.css +402 -0
- package/styles/breadcrumb/tailwind.scss +4 -0
- package/styles/carousel/_all.scss +2 -0
- package/styles/carousel/_bootstrap-dark-definition.scss +22 -0
- package/styles/carousel/_bootstrap-definition.scss +22 -0
- package/styles/carousel/_bootstrap4-definition.scss +22 -0
- package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
- package/styles/carousel/_bootstrap5-definition.scss +22 -0
- package/styles/carousel/_fabric-dark-definition.scss +22 -0
- package/styles/carousel/_fabric-definition.scss +22 -0
- package/styles/carousel/_fluent-dark-definition.scss +1 -0
- package/styles/carousel/_fluent-definition.scss +22 -0
- package/styles/carousel/_fusionnew-definition.scss +22 -0
- package/styles/carousel/_highcontrast-definition.scss +22 -0
- package/styles/carousel/_highcontrast-light-definition.scss +22 -0
- package/styles/carousel/_layout.scss +225 -0
- package/styles/carousel/_material-dark-definition.scss +22 -0
- package/styles/carousel/_material-definition.scss +22 -0
- package/styles/carousel/_tailwind-dark-definition.scss +1 -0
- package/styles/carousel/_tailwind-definition.scss +22 -0
- package/styles/carousel/_theme.scss +56 -0
- package/styles/carousel/bootstrap-dark.css +264 -0
- package/styles/carousel/bootstrap-dark.scss +5 -0
- package/styles/carousel/bootstrap.css +264 -0
- package/styles/carousel/bootstrap.scss +5 -0
- package/styles/carousel/bootstrap4.css +264 -0
- package/styles/carousel/bootstrap4.scss +5 -0
- package/styles/carousel/bootstrap5-dark.css +264 -0
- package/styles/carousel/bootstrap5-dark.scss +5 -0
- package/styles/carousel/bootstrap5.css +264 -0
- package/styles/carousel/bootstrap5.scss +5 -0
- package/styles/carousel/fabric-dark.css +264 -0
- package/styles/carousel/fabric-dark.scss +5 -0
- package/styles/carousel/fabric.css +264 -0
- package/styles/carousel/fabric.scss +5 -0
- package/styles/carousel/fluent-dark.css +264 -0
- package/styles/carousel/fluent-dark.scss +5 -0
- package/styles/carousel/fluent.css +264 -0
- package/styles/carousel/fluent.scss +5 -0
- package/styles/carousel/highcontrast-light.css +264 -0
- package/styles/carousel/highcontrast-light.scss +5 -0
- package/styles/carousel/highcontrast.css +264 -0
- package/styles/carousel/highcontrast.scss +5 -0
- package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
- package/styles/carousel/icons/_bootstrap.scss +30 -0
- package/styles/carousel/icons/_bootstrap4.scss +30 -0
- package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
- package/styles/carousel/icons/_bootstrap5.scss +30 -0
- package/styles/carousel/icons/_fabric-dark.scss +30 -0
- package/styles/carousel/icons/_fabric.scss +30 -0
- package/styles/carousel/icons/_fluent-dark.scss +1 -0
- package/styles/carousel/icons/_fluent.scss +30 -0
- package/styles/carousel/icons/_fusionnew.scss +30 -0
- package/styles/carousel/icons/_highcontrast-light.scss +30 -0
- package/styles/carousel/icons/_highcontrast.scss +30 -0
- package/styles/carousel/icons/_material-dark.scss +30 -0
- package/styles/carousel/icons/_material.scss +30 -0
- package/styles/carousel/icons/_material3.scss +30 -0
- package/styles/carousel/icons/_tailwind-dark.scss +1 -0
- package/styles/carousel/icons/_tailwind.scss +30 -0
- package/styles/carousel/material-dark.css +265 -0
- package/styles/carousel/material-dark.scss +5 -0
- package/styles/carousel/material.css +265 -0
- package/styles/carousel/material.scss +5 -0
- package/styles/carousel/tailwind-dark.css +265 -0
- package/styles/carousel/tailwind-dark.scss +5 -0
- package/styles/carousel/tailwind.css +265 -0
- package/styles/carousel/tailwind.scss +5 -0
- package/styles/context-menu/_bootstrap-dark-definition.scss +49 -50
- package/styles/context-menu/_bootstrap-definition.scss +1 -3
- package/styles/context-menu/_bootstrap4-definition.scss +50 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_fabric-dark-definition.scss +49 -50
- package/styles/context-menu/_fabric-definition.scss +0 -2
- package/styles/context-menu/_fluent-dark-definition.scss +1 -0
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_fusionnew-definition.scss +52 -0
- package/styles/context-menu/_highcontrast-definition.scss +0 -2
- package/styles/context-menu/_highcontrast-light-definition.scss +2 -3
- package/styles/context-menu/_layout-mixin.scss +19 -16
- package/styles/context-menu/_layout.scss +96 -5
- package/styles/context-menu/_material-dark-definition.scss +49 -50
- package/styles/context-menu/_material-definition.scss +3 -5
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
- package/styles/context-menu/_tailwind-definition.scss +53 -0
- package/styles/context-menu/_theme-mixin.scss +16 -12
- package/styles/context-menu/_theme.scss +15 -1
- package/styles/context-menu/bootstrap-dark.css +206 -108
- package/styles/context-menu/bootstrap-dark.scss +3 -0
- package/styles/context-menu/bootstrap.css +206 -107
- package/styles/context-menu/bootstrap.scss +3 -0
- package/styles/context-menu/bootstrap4.css +367 -0
- package/styles/context-menu/bootstrap4.scss +7 -0
- package/styles/context-menu/bootstrap5-dark.css +355 -0
- package/styles/context-menu/bootstrap5-dark.scss +7 -0
- package/styles/context-menu/bootstrap5.css +355 -0
- package/styles/context-menu/bootstrap5.scss +7 -0
- package/styles/context-menu/fabric-dark.css +207 -109
- package/styles/context-menu/fabric-dark.scss +3 -0
- package/styles/context-menu/fabric.css +205 -106
- package/styles/context-menu/fabric.scss +3 -0
- package/styles/context-menu/fluent-dark.css +363 -0
- package/styles/context-menu/fluent-dark.scss +7 -0
- package/styles/context-menu/fluent.css +363 -0
- package/styles/context-menu/fluent.scss +7 -0
- package/styles/context-menu/highcontrast-light.css +366 -0
- package/styles/context-menu/highcontrast-light.scss +7 -0
- package/styles/context-menu/highcontrast.css +205 -106
- package/styles/context-menu/highcontrast.scss +3 -0
- package/styles/context-menu/icons/_bootstrap-dark.scss +5 -2
- package/styles/context-menu/icons/_bootstrap.scss +5 -2
- package/styles/context-menu/icons/_bootstrap4.scss +33 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +33 -0
- package/styles/context-menu/icons/_fabric-dark.scss +5 -2
- package/styles/context-menu/icons/_fabric.scss +5 -2
- package/styles/context-menu/icons/_fluent-dark.scss +1 -0
- package/styles/context-menu/icons/_fluent.scss +33 -0
- package/styles/context-menu/icons/_fusionnew.scss +33 -0
- package/styles/context-menu/icons/_highcontrast-light.scss +5 -2
- package/styles/context-menu/icons/_highcontrast.scss +5 -2
- package/styles/context-menu/icons/_material-dark.scss +5 -2
- package/styles/context-menu/icons/_material.scss +5 -2
- package/styles/context-menu/icons/_material3.scss +33 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +33 -0
- package/styles/context-menu/icons/_tailwind.scss +33 -0
- package/styles/context-menu/material-dark.css +223 -107
- package/styles/context-menu/material-dark.scss +3 -0
- package/styles/context-menu/material.css +228 -110
- package/styles/context-menu/material.scss +3 -0
- package/styles/context-menu/tailwind-dark.css +380 -0
- package/styles/context-menu/tailwind-dark.scss +7 -0
- package/styles/context-menu/tailwind.css +380 -0
- package/styles/context-menu/tailwind.scss +7 -0
- package/styles/fabric-dark.css +5766 -3690
- package/styles/fabric-dark.scss +4 -0
- package/styles/fabric.css +5959 -4038
- package/styles/fabric.scss +4 -0
- package/styles/fluent-dark.css +10172 -0
- package/styles/fluent-dark.scss +13 -0
- package/styles/fluent.css +10172 -0
- package/styles/fluent.scss +13 -0
- package/styles/h-scroll/_all.scss +1 -1
- package/styles/h-scroll/_bootstrap-dark-definition.scss +46 -40
- package/styles/h-scroll/_bootstrap-definition.scss +14 -7
- package/styles/h-scroll/_bootstrap4-definition.scss +56 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +83 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +48 -42
- package/styles/h-scroll/_fabric-definition.scss +17 -9
- package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/h-scroll/_fluent-definition.scss +83 -0
- package/styles/h-scroll/_fusionnew-definition.scss +83 -0
- package/styles/h-scroll/_highcontrast-definition.scss +15 -17
- package/styles/h-scroll/_highcontrast-light-definition.scss +49 -46
- package/styles/h-scroll/_layout.scss +15 -15
- package/styles/h-scroll/_material-dark-definition.scss +56 -51
- package/styles/h-scroll/_material-definition.scss +21 -15
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/h-scroll/_tailwind-definition.scss +83 -0
- package/styles/h-scroll/_theme.scss +15 -29
- package/styles/h-scroll/bootstrap-dark.css +53 -66
- package/styles/h-scroll/bootstrap-dark.scss +1 -0
- package/styles/h-scroll/bootstrap.css +32 -80
- package/styles/h-scroll/bootstrap4.css +260 -0
- package/styles/h-scroll/bootstrap4.scss +4 -0
- package/styles/h-scroll/bootstrap5-dark.css +280 -0
- package/styles/h-scroll/bootstrap5-dark.scss +4 -0
- package/styles/h-scroll/bootstrap5.css +280 -0
- package/styles/h-scroll/bootstrap5.scss +4 -0
- package/styles/h-scroll/fabric-dark.css +54 -67
- package/styles/h-scroll/fabric-dark.scss +1 -0
- package/styles/h-scroll/fabric.css +32 -80
- package/styles/h-scroll/fluent-dark.css +280 -0
- package/styles/h-scroll/fluent-dark.scss +4 -0
- package/styles/h-scroll/fluent.css +280 -0
- package/styles/h-scroll/fluent.scss +4 -0
- package/styles/h-scroll/highcontrast-light.css +259 -0
- package/styles/h-scroll/highcontrast-light.scss +4 -0
- package/styles/h-scroll/highcontrast.css +26 -89
- package/styles/h-scroll/{_icons.scss → icons/_bootstrap-dark.scss} +13 -13
- package/styles/h-scroll/icons/_bootstrap.scss +3 -4
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -0
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
- package/styles/h-scroll/icons/_fabric.scss +5 -5
- package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_fusionnew.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
- package/styles/h-scroll/icons/_highcontrast.scss +5 -5
- package/styles/h-scroll/icons/_material-dark.scss +49 -0
- package/styles/h-scroll/icons/_material.scss +3 -3
- package/styles/h-scroll/icons/_material3.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -0
- package/styles/h-scroll/material-dark.css +56 -70
- package/styles/h-scroll/material-dark.scss +1 -0
- package/styles/h-scroll/material.css +33 -82
- package/styles/h-scroll/tailwind-dark.css +281 -0
- package/styles/h-scroll/tailwind-dark.scss +4 -0
- package/styles/h-scroll/tailwind.css +281 -0
- package/styles/h-scroll/tailwind.scss +4 -0
- package/styles/highcontrast-light.css +10029 -0
- package/styles/highcontrast-light.scss +13 -0
- package/styles/highcontrast.css +6039 -4460
- package/styles/highcontrast.scss +4 -0
- package/styles/material-dark.css +6282 -3945
- package/styles/material-dark.scss +4 -0
- package/styles/material.css +6210 -4026
- package/styles/material.scss +4 -0
- package/styles/menu/_bootstrap-dark-definition.scss +32 -21
- package/styles/menu/_bootstrap-definition.scss +12 -2
- package/styles/menu/_bootstrap4-definition.scss +64 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +67 -0
- package/styles/menu/_fabric-dark-definition.scss +33 -22
- package/styles/menu/_fabric-definition.scss +11 -1
- package/styles/menu/_fluent-dark-definition.scss +1 -0
- package/styles/menu/_fluent-definition.scss +67 -0
- package/styles/menu/_fusionnew-definition.scss +67 -0
- package/styles/menu/_highcontrast-definition.scss +12 -2
- package/styles/menu/_highcontrast-light-definition.scss +11 -1
- package/styles/menu/_layout.scss +363 -37
- package/styles/menu/_material-dark-definition.scss +30 -19
- package/styles/menu/_material-definition.scss +10 -0
- package/styles/menu/_tailwind-dark-definition.scss +1 -0
- package/styles/menu/_tailwind-definition.scss +66 -0
- package/styles/menu/_theme.scss +201 -17
- package/styles/menu/bootstrap-dark.css +717 -319
- package/styles/menu/bootstrap.css +701 -304
- package/styles/menu/bootstrap.scss +1 -0
- package/styles/menu/bootstrap4.css +1126 -0
- package/styles/menu/bootstrap4.scss +8 -0
- package/styles/menu/bootstrap5-dark.css +1083 -0
- package/styles/menu/bootstrap5-dark.scss +8 -0
- package/styles/menu/bootstrap5.css +1083 -0
- package/styles/menu/bootstrap5.scss +8 -0
- package/styles/menu/fabric-dark.css +716 -318
- package/styles/menu/fabric.css +696 -298
- package/styles/menu/fabric.scss +1 -0
- package/styles/menu/fluent-dark.css +1106 -0
- package/styles/menu/fluent-dark.scss +8 -0
- package/styles/menu/fluent.css +1106 -0
- package/styles/menu/fluent.scss +8 -0
- package/styles/menu/highcontrast-light.css +1088 -0
- package/styles/menu/highcontrast-light.scss +8 -0
- package/styles/menu/highcontrast.css +698 -300
- package/styles/menu/highcontrast.scss +1 -0
- package/styles/menu/icons/_bootstrap-dark.scss +58 -3
- package/styles/menu/icons/_bootstrap.scss +58 -3
- package/styles/menu/icons/_bootstrap4.scss +134 -0
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +134 -0
- package/styles/menu/icons/_fabric-dark.scss +62 -7
- package/styles/menu/icons/_fabric.scss +62 -7
- package/styles/menu/icons/_fluent-dark.scss +1 -0
- package/styles/menu/icons/_fluent.scss +134 -0
- package/styles/menu/icons/_fusionnew.scss +134 -0
- package/styles/menu/icons/_highcontrast-light.scss +58 -3
- package/styles/menu/icons/_highcontrast.scss +58 -3
- package/styles/menu/icons/_material-dark.scss +58 -3
- package/styles/menu/icons/_material.scss +58 -3
- package/styles/menu/icons/_material3.scss +134 -0
- package/styles/menu/icons/_tailwind-dark.scss +134 -0
- package/styles/menu/icons/_tailwind.scss +134 -0
- package/styles/menu/material-dark.css +715 -319
- package/styles/menu/material.css +699 -303
- package/styles/menu/material.scss +1 -0
- package/styles/menu/tailwind-dark.css +1102 -0
- package/styles/menu/tailwind-dark.scss +8 -0
- package/styles/menu/tailwind.css +1102 -0
- package/styles/menu/tailwind.scss +8 -0
- package/styles/pager/_all.scss +2 -0
- package/styles/pager/_bootstrap-dark-definition.scss +131 -0
- package/styles/pager/_bootstrap-definition.scss +131 -0
- package/styles/pager/_bootstrap4-definition.scss +131 -0
- package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pager/_bootstrap5-definition.scss +146 -0
- package/styles/pager/_fabric-dark-definition.scss +131 -0
- package/styles/pager/_fabric-definition.scss +129 -0
- package/styles/pager/_fluent-dark-definition.scss +1 -0
- package/styles/pager/_fluent-definition.scss +133 -0
- package/styles/pager/_fusionnew-definition.scss +146 -0
- package/styles/pager/_highcontrast-definition.scss +129 -0
- package/styles/pager/_highcontrast-light-definition.scss +131 -0
- package/styles/pager/_layout.scss +896 -0
- package/styles/pager/_material-dark-definition.scss +132 -0
- package/styles/pager/_material-definition.scss +130 -0
- package/styles/pager/_tailwind-dark-definition.scss +1 -0
- package/styles/pager/_tailwind-definition.scss +132 -0
- package/styles/pager/_theme.scss +152 -0
- package/styles/pager/bootstrap-dark.css +688 -0
- package/styles/pager/bootstrap-dark.scss +4 -0
- package/styles/pager/bootstrap.css +688 -0
- package/styles/pager/bootstrap.scss +4 -0
- package/styles/pager/bootstrap4.css +688 -0
- package/styles/pager/bootstrap4.scss +4 -0
- package/styles/pager/bootstrap5-dark.css +723 -0
- package/styles/pager/bootstrap5-dark.scss +4 -0
- package/styles/pager/bootstrap5.css +723 -0
- package/styles/pager/bootstrap5.scss +4 -0
- package/styles/pager/fabric-dark.css +688 -0
- package/styles/pager/fabric-dark.scss +4 -0
- package/styles/pager/fabric.css +688 -0
- package/styles/pager/fabric.scss +4 -0
- package/styles/pager/fluent-dark.css +690 -0
- package/styles/pager/fluent-dark.scss +4 -0
- package/styles/pager/fluent.css +690 -0
- package/styles/pager/fluent.scss +4 -0
- package/styles/pager/highcontrast-light.css +688 -0
- package/styles/pager/highcontrast-light.scss +4 -0
- package/styles/pager/highcontrast.css +688 -0
- package/styles/pager/highcontrast.scss +4 -0
- package/styles/pager/icons/_bootstrap-dark.scss +50 -0
- package/styles/pager/icons/_bootstrap.scss +50 -0
- package/styles/pager/icons/_bootstrap4.scss +50 -0
- package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pager/icons/_bootstrap5.scss +50 -0
- package/styles/pager/icons/_fabric-dark.scss +50 -0
- package/styles/pager/icons/_fabric.scss +50 -0
- package/styles/pager/icons/_fluent-dark.scss +1 -0
- package/styles/pager/icons/_fluent.scss +50 -0
- package/styles/pager/icons/_fusionnew.scss +50 -0
- package/styles/pager/icons/_highcontrast-light.scss +50 -0
- package/styles/pager/icons/_highcontrast.scss +46 -0
- package/styles/pager/icons/_material-dark.scss +50 -0
- package/styles/pager/icons/_material.scss +46 -0
- package/styles/pager/icons/_material3.scss +50 -0
- package/styles/pager/icons/_tailwind-dark.scss +1 -0
- package/styles/pager/icons/_tailwind.scss +50 -0
- package/styles/pager/material-dark.css +689 -0
- package/styles/pager/material-dark.scss +4 -0
- package/styles/pager/material.css +689 -0
- package/styles/pager/material.scss +4 -0
- package/styles/pager/tailwind-dark.css +815 -0
- package/styles/pager/tailwind-dark.scss +4 -0
- package/styles/pager/tailwind.css +815 -0
- package/styles/pager/tailwind.scss +4 -0
- package/styles/sidebar/_bootstrap4-definition.scss +4 -0
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +6 -0
- package/styles/sidebar/_fabric-definition.scss +0 -2
- package/styles/sidebar/_fluent-dark-definition.scss +1 -0
- package/styles/sidebar/_fluent-definition.scss +6 -0
- package/styles/sidebar/_fusionnew-definition.scss +6 -0
- package/styles/sidebar/_highcontrast-definition.scss +1 -1
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -0
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
- package/styles/sidebar/_tailwind-definition.scss +6 -0
- package/styles/sidebar/_theme.scss +56 -34
- package/styles/sidebar/bootstrap-dark.css +29 -25
- package/styles/sidebar/bootstrap.css +29 -25
- package/styles/sidebar/bootstrap4.css +149 -0
- package/styles/sidebar/bootstrap4.scss +3 -0
- package/styles/sidebar/bootstrap5-dark.css +147 -0
- package/styles/sidebar/bootstrap5-dark.scss +3 -0
- package/styles/sidebar/bootstrap5.css +147 -0
- package/styles/sidebar/bootstrap5.scss +3 -0
- package/styles/sidebar/fabric-dark.css +29 -25
- package/styles/sidebar/fabric.css +29 -25
- package/styles/sidebar/fluent-dark.css +147 -0
- package/styles/sidebar/fluent-dark.scss +3 -0
- package/styles/sidebar/fluent.css +147 -0
- package/styles/sidebar/fluent.scss +3 -0
- package/styles/sidebar/highcontrast-light.css +149 -0
- package/styles/sidebar/highcontrast-light.scss +3 -0
- package/styles/sidebar/highcontrast.css +30 -26
- package/styles/sidebar/material-dark.css +29 -25
- package/styles/sidebar/material.css +29 -25
- package/styles/sidebar/tailwind-dark.css +148 -0
- package/styles/sidebar/tailwind-dark.scss +3 -0
- package/styles/sidebar/tailwind.css +148 -0
- package/styles/sidebar/tailwind.scss +3 -0
- package/styles/tab/_bootstrap-dark-definition.scss +632 -374
- package/styles/tab/_bootstrap-definition.scss +279 -13
- package/styles/tab/_bootstrap4-definition.scss +666 -0
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +656 -0
- package/styles/tab/_fabric-dark-definition.scss +644 -385
- package/styles/tab/_fabric-definition.scss +281 -15
- package/styles/tab/_fluent-dark-definition.scss +1 -0
- package/styles/tab/_fluent-definition.scss +664 -0
- package/styles/tab/_fusionnew-definition.scss +656 -0
- package/styles/tab/_highcontrast-definition.scss +283 -17
- package/styles/tab/_highcontrast-light-definition.scss +667 -411
- package/styles/tab/_icons.scss +1 -0
- package/styles/tab/_layout.scss +697 -753
- package/styles/tab/_material-dark-definition.scss +627 -370
- package/styles/tab/_material-definition.scss +277 -11
- package/styles/tab/_tailwind-dark-definition.scss +1 -0
- package/styles/tab/_tailwind-definition.scss +685 -0
- package/styles/tab/_theme.scss +402 -537
- package/styles/tab/bootstrap-dark.css +1226 -1067
- package/styles/tab/bootstrap-dark.scss +1 -0
- package/styles/tab/bootstrap.css +1173 -1106
- package/styles/tab/bootstrap4.css +4031 -0
- package/styles/tab/bootstrap4.scss +5 -0
- package/styles/tab/bootstrap5-dark.css +4029 -0
- package/styles/tab/bootstrap5-dark.scss +5 -0
- package/styles/tab/bootstrap5.css +4029 -0
- package/styles/tab/bootstrap5.scss +5 -0
- package/styles/tab/fabric-dark.css +1212 -1096
- package/styles/tab/fabric-dark.scss +1 -0
- package/styles/tab/fabric.css +1173 -1148
- package/styles/tab/fluent-dark.css +4031 -0
- package/styles/tab/fluent-dark.scss +5 -0
- package/styles/tab/fluent.css +4031 -0
- package/styles/tab/fluent.scss +5 -0
- package/styles/tab/highcontrast-light.css +4022 -0
- package/styles/tab/highcontrast-light.scss +5 -0
- package/styles/tab/highcontrast.css +1086 -1215
- package/styles/tab/icons/_bootstrap-dark.scss +108 -0
- package/styles/tab/icons/_bootstrap.scss +11 -35
- package/styles/tab/icons/_bootstrap4.scss +115 -0
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +104 -0
- package/styles/tab/icons/_fabric-dark.scss +108 -0
- package/styles/tab/icons/_fabric.scss +11 -35
- package/styles/tab/icons/_fluent-dark.scss +1 -0
- package/styles/tab/icons/_fluent.scss +108 -0
- package/styles/tab/icons/_fusionnew.scss +104 -0
- package/styles/tab/icons/_highcontrast-light.scss +104 -0
- package/styles/tab/icons/_highcontrast.scss +11 -28
- package/styles/tab/icons/_material-dark.scss +104 -0
- package/styles/tab/icons/_material.scss +9 -37
- package/styles/tab/icons/_material3.scss +104 -0
- package/styles/tab/icons/_tailwind-dark.scss +1 -0
- package/styles/tab/icons/_tailwind.scss +104 -0
- package/styles/tab/material-dark.css +1334 -955
- package/styles/tab/material-dark.scss +1 -0
- package/styles/tab/material.css +1280 -992
- package/styles/tab/tailwind-dark.css +4046 -0
- package/styles/tab/tailwind-dark.scss +5 -0
- package/styles/tab/tailwind.css +4046 -0
- package/styles/tab/tailwind.scss +5 -0
- package/styles/tailwind-dark.css +10351 -0
- package/styles/tailwind-dark.scss +13 -0
- package/styles/tailwind.css +10351 -0
- package/styles/tailwind.scss +13 -0
- package/styles/toolbar/_all.scss +1 -1
- package/styles/toolbar/_bootstrap-dark-definition.scss +193 -121
- package/styles/toolbar/_bootstrap-definition.scss +107 -34
- package/styles/toolbar/_bootstrap4-definition.scss +211 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +220 -0
- package/styles/toolbar/_fabric-dark-definition.scss +208 -140
- package/styles/toolbar/_fabric-definition.scss +97 -28
- package/styles/toolbar/_fluent-dark-definition.scss +1 -0
- package/styles/toolbar/_fluent-definition.scss +210 -0
- package/styles/toolbar/_fusionnew-definition.scss +220 -0
- package/styles/toolbar/_highcontrast-definition.scss +99 -30
- package/styles/toolbar/_highcontrast-light-definition.scss +219 -149
- package/styles/toolbar/_layout.scss +690 -1087
- package/styles/toolbar/_material-dark-definition.scss +216 -148
- package/styles/toolbar/_material-definition.scss +117 -46
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
- package/styles/toolbar/_tailwind-definition.scss +210 -0
- package/styles/toolbar/_theme.scss +246 -263
- package/styles/toolbar/bootstrap-dark.css +768 -1105
- package/styles/toolbar/bootstrap-dark.scss +1 -0
- package/styles/toolbar/bootstrap.css +761 -1111
- package/styles/toolbar/bootstrap.scss +1 -0
- package/styles/toolbar/bootstrap4.css +1071 -0
- package/styles/toolbar/bootstrap4.scss +8 -0
- package/styles/toolbar/bootstrap5-dark.css +1082 -0
- package/styles/toolbar/bootstrap5-dark.scss +8 -0
- package/styles/toolbar/bootstrap5.css +1082 -0
- package/styles/toolbar/bootstrap5.scss +8 -0
- package/styles/toolbar/fabric-dark.css +779 -1042
- package/styles/toolbar/fabric-dark.scss +1 -0
- package/styles/toolbar/fabric.css +767 -1041
- package/styles/toolbar/fabric.scss +1 -0
- package/styles/toolbar/fluent-dark.css +1081 -0
- package/styles/toolbar/fluent-dark.scss +8 -0
- package/styles/toolbar/fluent.css +1081 -0
- package/styles/toolbar/fluent.scss +8 -0
- package/styles/toolbar/highcontrast-light.css +1070 -0
- package/styles/toolbar/highcontrast-light.scss +8 -0
- package/styles/toolbar/highcontrast.css +744 -1089
- package/styles/toolbar/highcontrast.scss +1 -0
- package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
- package/styles/toolbar/icons/_bootstrap.scss +1 -1
- package/styles/toolbar/icons/_bootstrap4.scss +16 -0
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +16 -0
- package/styles/toolbar/icons/_fabric-dark.scss +16 -0
- package/styles/toolbar/icons/_fabric.scss +1 -1
- package/styles/toolbar/icons/_fluent-dark.scss +1 -0
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_fusionnew.scss +16 -0
- package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
- package/styles/toolbar/icons/_highcontrast.scss +1 -1
- package/styles/toolbar/icons/_material-dark.scss +16 -0
- package/styles/toolbar/icons/_material.scss +1 -1
- package/styles/toolbar/icons/_material3.scss +16 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -0
- package/styles/toolbar/material-dark.css +747 -1010
- package/styles/toolbar/material-dark.scss +1 -0
- package/styles/toolbar/material.css +753 -1027
- package/styles/toolbar/material.scss +1 -0
- package/styles/toolbar/tailwind-dark.css +1082 -0
- package/styles/toolbar/tailwind-dark.scss +8 -0
- package/styles/toolbar/tailwind.css +1082 -0
- package/styles/toolbar/tailwind.scss +8 -0
- package/styles/treeview/_all.scss +1 -1
- package/styles/treeview/_bootstrap-dark-definition.scss +104 -117
- package/styles/treeview/_bootstrap-definition.scss +24 -38
- package/styles/treeview/_bootstrap4-definition.scss +141 -0
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -0
- package/styles/treeview/_fabric-dark-definition.scss +102 -116
- package/styles/treeview/_fabric-definition.scss +24 -38
- package/styles/treeview/_fluent-dark-definition.scss +1 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_fusionnew-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +24 -38
- package/styles/treeview/_highcontrast-light-definition.scss +112 -126
- package/styles/treeview/_layout.scss +619 -28
- package/styles/treeview/_material-dark-definition.scss +104 -116
- package/styles/treeview/_material-definition.scss +25 -39
- package/styles/treeview/_tailwind-dark-definition.scss +1 -0
- package/styles/treeview/_tailwind-definition.scss +124 -0
- package/styles/treeview/_theme.scss +128 -27
- package/styles/treeview/bootstrap-dark.css +230 -172
- package/styles/treeview/bootstrap.css +230 -168
- package/styles/treeview/bootstrap4.css +829 -0
- package/styles/treeview/bootstrap4.scss +6 -0
- package/styles/treeview/bootstrap5-dark.css +847 -0
- package/styles/treeview/bootstrap5-dark.scss +6 -0
- package/styles/treeview/bootstrap5.css +847 -0
- package/styles/treeview/bootstrap5.scss +6 -0
- package/styles/treeview/fabric-dark.css +230 -168
- package/styles/treeview/fabric.css +230 -168
- package/styles/treeview/fluent-dark.css +852 -0
- package/styles/treeview/fluent-dark.scss +6 -0
- package/styles/treeview/fluent.css +852 -0
- package/styles/treeview/fluent.scss +6 -0
- package/styles/treeview/highcontrast-light.css +736 -0
- package/styles/treeview/highcontrast-light.scss +6 -0
- package/styles/treeview/highcontrast.css +230 -171
- package/styles/treeview/icons/_bootstrap-dark.scss +2 -2
- package/styles/treeview/icons/_bootstrap.scss +2 -2
- package/styles/treeview/icons/_bootstrap4.scss +39 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_fabric-dark.scss +2 -2
- package/styles/treeview/icons/_fabric.scss +2 -2
- package/styles/treeview/icons/_fluent-dark.scss +1 -0
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_fusionnew.scss +43 -0
- package/styles/treeview/icons/_highcontrast-light.scss +2 -2
- package/styles/treeview/icons/_highcontrast.scss +2 -2
- package/styles/treeview/icons/_material-dark.scss +2 -2
- package/styles/treeview/icons/_material.scss +2 -2
- package/styles/treeview/icons/_material3.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -0
- package/styles/treeview/icons/_tailwind.scss +43 -0
- package/styles/treeview/material-dark.css +242 -172
- package/styles/treeview/material.css +238 -167
- package/styles/treeview/tailwind-dark.css +840 -0
- package/styles/treeview/tailwind-dark.scss +6 -0
- package/styles/treeview/tailwind.css +840 -0
- package/styles/treeview/tailwind.scss +6 -0
- package/styles/v-scroll/_all.scss +1 -1
- package/styles/v-scroll/_bootstrap-dark-definition.scss +39 -38
- package/styles/v-scroll/_bootstrap-definition.scss +8 -8
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_fabric-dark-definition.scss +41 -40
- package/styles/v-scroll/_fabric-definition.scss +10 -10
- package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_fusionnew-definition.scss +49 -0
- package/styles/v-scroll/_highcontrast-definition.scss +10 -11
- package/styles/v-scroll/_highcontrast-light-definition.scss +41 -41
- package/styles/v-scroll/_layout.scss +4 -4
- package/styles/v-scroll/_material-dark-definition.scss +46 -45
- package/styles/v-scroll/_material-definition.scss +10 -10
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -0
- package/styles/v-scroll/_theme.scss +2 -27
- package/styles/v-scroll/bootstrap-dark.css +25 -51
- package/styles/v-scroll/bootstrap-dark.scss +1 -0
- package/styles/v-scroll/bootstrap.css +13 -58
- package/styles/v-scroll/bootstrap4.css +202 -0
- package/styles/v-scroll/bootstrap4.scss +4 -0
- package/styles/v-scroll/bootstrap5-dark.css +202 -0
- package/styles/v-scroll/bootstrap5-dark.scss +4 -0
- package/styles/v-scroll/bootstrap5.css +202 -0
- package/styles/v-scroll/bootstrap5.scss +4 -0
- package/styles/v-scroll/fabric-dark.css +26 -52
- package/styles/v-scroll/fabric-dark.scss +1 -0
- package/styles/v-scroll/fabric.css +14 -59
- package/styles/v-scroll/fluent-dark.css +202 -0
- package/styles/v-scroll/fluent-dark.scss +4 -0
- package/styles/v-scroll/fluent.css +202 -0
- package/styles/v-scroll/fluent.scss +4 -0
- package/styles/v-scroll/highcontrast-light.css +201 -0
- package/styles/v-scroll/highcontrast-light.scss +4 -0
- package/styles/v-scroll/highcontrast.css +14 -74
- package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_fabric-dark.scss +27 -0
- package/styles/v-scroll/icons/_fabric.scss +3 -2
- package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
- package/styles/v-scroll/icons/_fluent.scss +27 -0
- package/styles/v-scroll/icons/_fusionnew.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast-light.scss +27 -0
- package/styles/v-scroll/icons/_highcontrast.scss +3 -2
- package/styles/v-scroll/{_icons.scss → icons/_material-dark.scss} +4 -3
- package/styles/v-scroll/icons/_material.scss +1 -0
- package/styles/v-scroll/icons/_material3.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
- package/styles/v-scroll/icons/_tailwind.scss +27 -0
- package/styles/v-scroll/material-dark.css +23 -50
- package/styles/v-scroll/material-dark.scss +1 -0
- package/styles/v-scroll/material.css +12 -58
- package/styles/v-scroll/tailwind-dark.css +203 -0
- package/styles/v-scroll/tailwind-dark.scss +4 -0
- package/styles/v-scroll/tailwind.css +203 -0
- package/styles/v-scroll/tailwind.scss +4 -0
- package/tslint.json +111 -0
- package/styles/toolbar/_icons.scss +0 -35
|
@@ -1,503 +1,380 @@
|
|
|
1
1
|
/*! component's theme wise override definitions and variables */
|
|
2
2
|
/*! toolbar icons */
|
|
3
3
|
.e-toolbar .e-popup-down-icon::before {
|
|
4
|
-
content:
|
|
4
|
+
content: "\e84f";
|
|
5
5
|
line-height: normal;
|
|
6
6
|
}
|
|
7
|
-
|
|
8
7
|
.e-toolbar .e-popup-up-icon::before {
|
|
9
|
-
content:
|
|
8
|
+
content: "\e85e";
|
|
10
9
|
line-height: normal;
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
/*! toolbar layout */
|
|
13
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
14
14
|
.e-bigger .e-toolbar,
|
|
15
15
|
.e-toolbar.e-bigger {
|
|
16
16
|
height: 50px;
|
|
17
17
|
min-height: 50px;
|
|
18
18
|
}
|
|
19
|
-
|
|
20
|
-
.e-bigger .e-toolbar .e-
|
|
21
|
-
.e-toolbar.e-bigger .e-
|
|
22
|
-
|
|
19
|
+
.e-bigger .e-toolbar .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child,
|
|
20
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child,
|
|
21
|
+
.e-toolbar.e-bigger .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child,
|
|
22
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
23
|
+
margin-left: 3px;
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
.e-bigger .e-toolbar.e-
|
|
26
|
-
|
|
27
|
-
border-bottom: 0;
|
|
28
|
-
border-bottom-left-radius: 0;
|
|
29
|
-
border-bottom-right-radius: 0;
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
26
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
27
|
+
margin-right: 3px;
|
|
30
28
|
}
|
|
31
|
-
|
|
32
|
-
.e-bigger .e-toolbar.e-
|
|
33
|
-
|
|
34
|
-
border-top: 0;
|
|
35
|
-
border-top-left-radius: 0;
|
|
36
|
-
border-top-right-radius: 0;
|
|
29
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child,
|
|
30
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child {
|
|
31
|
+
margin-right: 3px;
|
|
37
32
|
}
|
|
38
|
-
|
|
39
|
-
.e-
|
|
40
|
-
|
|
41
|
-
margin:
|
|
33
|
+
.e-bigger .e-toolbar .e-toolbar-items.e-toolbar-multirow,
|
|
34
|
+
.e-toolbar.e-bigger .e-toolbar-items.e-toolbar-multirow {
|
|
35
|
+
margin-left: 12.5px;
|
|
36
|
+
margin-right: 12.5px;
|
|
42
37
|
}
|
|
43
|
-
|
|
44
|
-
.e-
|
|
45
|
-
|
|
46
|
-
margin: 0;
|
|
47
|
-
margin-left: 3px;
|
|
38
|
+
.e-bigger .e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item:not(.e-separator),
|
|
39
|
+
.e-toolbar.e-bigger .e-toolbar-items.e-toolbar-multirow .e-toolbar-item:not(.e-separator) {
|
|
40
|
+
margin: 1.5px 0;
|
|
48
41
|
}
|
|
49
|
-
|
|
50
|
-
.e-bigger .e-toolbar.e-
|
|
51
|
-
.e-
|
|
52
|
-
|
|
42
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus, .e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover, .e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
43
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
44
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
45
|
+
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active,
|
|
46
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
|
|
47
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
|
|
48
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
49
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
50
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
51
|
+
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
52
|
+
padding: 0;
|
|
53
53
|
}
|
|
54
|
-
|
|
55
|
-
.e-
|
|
56
|
-
|
|
57
|
-
margin-left: 3px;
|
|
58
|
-
margin-right: initial;
|
|
54
|
+
.e-bigger .e-toolbar .e-toolbar-item,
|
|
55
|
+
.e-toolbar.e-bigger .e-toolbar-item {
|
|
56
|
+
min-height: 49px;
|
|
59
57
|
}
|
|
60
|
-
|
|
61
|
-
.e-bigger .e-toolbar
|
|
62
|
-
.e-toolbar.e-bigger
|
|
63
|
-
|
|
58
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn,
|
|
59
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
60
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn,
|
|
61
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
62
|
+
min-height: 49px;
|
|
63
|
+
min-width: 50px;
|
|
64
|
+
padding: 0;
|
|
65
|
+
line-height: 35px;
|
|
64
66
|
}
|
|
65
|
-
|
|
66
|
-
.e-bigger .e-toolbar
|
|
67
|
-
.e-toolbar.e-bigger
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
68
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
|
|
69
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
70
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text {
|
|
71
|
+
padding: 0 15px 0 10px;
|
|
72
|
+
font-size: 14px;
|
|
70
73
|
}
|
|
71
|
-
|
|
72
|
-
.e-bigger .e-toolbar
|
|
73
|
-
.e-toolbar.e-bigger
|
|
74
|
-
|
|
74
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons,
|
|
75
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-icons,
|
|
76
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn .e-icons,
|
|
77
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-icons {
|
|
78
|
+
font-size: 18px;
|
|
75
79
|
}
|
|
76
|
-
|
|
77
|
-
.e-bigger .e-toolbar.e-
|
|
78
|
-
.e-toolbar.e-bigger.e-
|
|
79
|
-
|
|
80
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
81
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon,
|
|
82
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
83
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon {
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
line-height: 34px;
|
|
80
86
|
}
|
|
81
|
-
|
|
82
|
-
.e-bigger .e-toolbar.e-
|
|
83
|
-
.e-toolbar.e-bigger.e-
|
|
84
|
-
|
|
87
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
88
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon,
|
|
89
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
90
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon {
|
|
91
|
+
padding: 0 0 0 15px;
|
|
85
92
|
}
|
|
86
|
-
|
|
87
|
-
.e-bigger .e-toolbar.e-
|
|
88
|
-
.e-toolbar.e-bigger.e-
|
|
89
|
-
|
|
90
|
-
|
|
93
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon,
|
|
94
|
+
.e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon,
|
|
95
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon,
|
|
96
|
+
.e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon {
|
|
97
|
+
padding: 0 12px 0 0;
|
|
98
|
+
}
|
|
99
|
+
.e-bigger .e-toolbar .e-toolbar-item:not(.e-separator),
|
|
100
|
+
.e-toolbar.e-bigger .e-toolbar-item:not(.e-separator) {
|
|
101
|
+
min-width: 49px;
|
|
102
|
+
padding: 0 1.5px;
|
|
103
|
+
}
|
|
104
|
+
.e-bigger .e-toolbar .e-toolbar-item.e-separator,
|
|
105
|
+
.e-toolbar.e-bigger .e-toolbar-item.e-separator {
|
|
106
|
+
height: 30px;
|
|
107
|
+
margin: 10px 5px;
|
|
108
|
+
min-height: 30px;
|
|
109
|
+
}
|
|
110
|
+
.e-bigger .e-toolbar .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
111
|
+
.e-bigger .e-toolbar .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon,
|
|
112
|
+
.e-toolbar.e-bigger .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
113
|
+
.e-toolbar.e-bigger .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon {
|
|
114
|
+
padding: 0;
|
|
91
115
|
}
|
|
92
|
-
|
|
93
116
|
.e-bigger .e-toolbar .e-hor-nav,
|
|
94
117
|
.e-toolbar.e-bigger .e-hor-nav {
|
|
95
118
|
min-height: 49px;
|
|
96
119
|
min-width: 50px;
|
|
97
120
|
}
|
|
98
|
-
|
|
99
|
-
.e-bigger
|
|
100
|
-
|
|
101
|
-
line-height: 35px;
|
|
121
|
+
.e-bigger .e-toolbar.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
122
|
+
.e-toolbar.e-bigger.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
123
|
+
margin-left: 0;
|
|
102
124
|
}
|
|
103
|
-
|
|
104
|
-
.e-bigger
|
|
105
|
-
|
|
106
|
-
line-height: 34px;
|
|
107
|
-
min-height: 34px;
|
|
108
|
-
min-width: 25px;
|
|
125
|
+
.e-bigger .e-toolbar.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child,
|
|
126
|
+
.e-toolbar.e-bigger.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
127
|
+
margin-right: 0;
|
|
109
128
|
}
|
|
110
|
-
|
|
111
|
-
.e-
|
|
112
|
-
|
|
113
|
-
|
|
129
|
+
.e-bigger .e-toolbar.e-vertical .e-toolbar-item:not(.e-separator),
|
|
130
|
+
.e-toolbar.e-bigger.e-vertical .e-toolbar-item:not(.e-separator) {
|
|
131
|
+
min-height: 38px;
|
|
132
|
+
}
|
|
133
|
+
.e-bigger .e-toolbar.e-vertical .e-toolbar-item.e-separator,
|
|
134
|
+
.e-toolbar.e-bigger.e-vertical .e-toolbar-item.e-separator {
|
|
135
|
+
height: auto;
|
|
136
|
+
margin: 5px 10px;
|
|
137
|
+
min-height: auto;
|
|
138
|
+
}
|
|
139
|
+
.e-bigger .e-toolbar.e-vertical .e-hor-nav,
|
|
140
|
+
.e-toolbar.e-bigger.e-vertical .e-hor-nav {
|
|
141
|
+
min-height: 40px;
|
|
142
|
+
min-width: 50px;
|
|
143
|
+
}
|
|
144
|
+
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item,
|
|
145
|
+
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item {
|
|
146
|
+
height: auto;
|
|
114
147
|
}
|
|
115
|
-
|
|
116
148
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator),
|
|
117
149
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
118
150
|
min-width: 48px;
|
|
119
151
|
padding: 0;
|
|
152
|
+
min-height: 45px;
|
|
120
153
|
}
|
|
121
|
-
|
|
122
|
-
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon,
|
|
123
|
-
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon {
|
|
124
|
-
min-width: 25px;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
154
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn,
|
|
128
155
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
129
156
|
min-height: 45px;
|
|
130
157
|
padding: 0 12.5px 0 0;
|
|
158
|
+
min-width: 100%;
|
|
131
159
|
}
|
|
132
|
-
|
|
133
160
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
134
161
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
135
162
|
margin-left: 0;
|
|
136
163
|
padding: 0 12.5px;
|
|
164
|
+
font-size: 16px;
|
|
137
165
|
}
|
|
138
|
-
|
|
139
166
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
140
167
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
141
168
|
padding: 0 12.5px;
|
|
169
|
+
font-size: 14px;
|
|
142
170
|
}
|
|
143
|
-
|
|
144
|
-
.e-bigger
|
|
145
|
-
|
|
171
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended,
|
|
172
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended {
|
|
173
|
+
min-height: 50px;
|
|
174
|
+
padding-bottom: 0;
|
|
175
|
+
padding-left: 3px;
|
|
176
|
+
padding-right: 3px;
|
|
177
|
+
padding-top: 0;
|
|
178
|
+
}
|
|
179
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
|
|
180
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item {
|
|
146
181
|
min-height: 49px;
|
|
147
182
|
}
|
|
148
|
-
|
|
149
|
-
.e-bigger .e-toolbar .e-toolbar-
|
|
150
|
-
.e-toolbar.e-bigger .e-toolbar-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
183
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
184
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
185
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
186
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
187
|
+
min-height: 49px;
|
|
188
|
+
min-width: 50px;
|
|
189
|
+
padding: 0;
|
|
154
190
|
}
|
|
155
|
-
|
|
156
|
-
.e-bigger .e-toolbar
|
|
157
|
-
.e-toolbar.e-bigger
|
|
158
|
-
|
|
191
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
192
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
|
|
193
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
194
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text {
|
|
195
|
+
padding: 0 15px 0 10px;
|
|
159
196
|
}
|
|
160
|
-
|
|
161
|
-
.e-bigger .e-toolbar
|
|
162
|
-
.e-toolbar.e-
|
|
163
|
-
|
|
197
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover, .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus, .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
198
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
199
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
200
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active,
|
|
201
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover,
|
|
202
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus,
|
|
203
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
204
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
205
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
206
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
207
|
+
padding: 0;
|
|
164
208
|
}
|
|
165
|
-
|
|
166
|
-
.e-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
display: inline-flex;
|
|
209
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator),
|
|
210
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
211
|
+
min-width: 49px;
|
|
212
|
+
padding: 0 1.5px;
|
|
170
213
|
}
|
|
171
|
-
|
|
172
|
-
.e-bigger
|
|
173
|
-
|
|
174
|
-
margin
|
|
214
|
+
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator,
|
|
215
|
+
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
216
|
+
height: 30px;
|
|
217
|
+
margin: 10px 5px;
|
|
218
|
+
min-height: 30px;
|
|
175
219
|
}
|
|
176
|
-
|
|
177
|
-
.e-
|
|
178
|
-
|
|
179
|
-
|
|
220
|
+
.e-bigger .e-toolbar.e-extended-toolbar.e-tbar-extended,
|
|
221
|
+
.e-toolbar.e-bigger.e-extended-toolbar.e-tbar-extended {
|
|
222
|
+
border-bottom: 0;
|
|
223
|
+
border-bottom-left-radius: 0;
|
|
224
|
+
border-bottom-right-radius: 0;
|
|
180
225
|
}
|
|
181
|
-
|
|
182
|
-
.e-
|
|
183
|
-
|
|
184
|
-
|
|
226
|
+
.e-bigger .e-toolbar.e-extended-toolbar.e-tbar-extended .e-toolbar-extended,
|
|
227
|
+
.e-toolbar.e-bigger.e-extended-toolbar.e-tbar-extended .e-toolbar-extended {
|
|
228
|
+
border-top: 0;
|
|
229
|
+
border-top-left-radius: 0;
|
|
230
|
+
border-top-right-radius: 0;
|
|
185
231
|
}
|
|
186
|
-
|
|
187
|
-
.e-bigger
|
|
188
|
-
|
|
189
|
-
margin: 0;
|
|
232
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
233
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
234
|
+
padding: 0 15px 0 0;
|
|
190
235
|
}
|
|
191
|
-
|
|
192
|
-
.e-bigger
|
|
193
|
-
|
|
194
|
-
margin-right: 3px;
|
|
236
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-icon-right,
|
|
237
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon.e-icon-right {
|
|
238
|
+
padding: 0 0 0 12px;
|
|
195
239
|
}
|
|
196
|
-
|
|
197
|
-
.e-bigger
|
|
198
|
-
|
|
199
|
-
margin: 0;
|
|
240
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
241
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
242
|
+
padding: 0 10px 0 15px;
|
|
200
243
|
}
|
|
201
|
-
|
|
202
|
-
.e-bigger
|
|
203
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
244
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
245
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
204
246
|
margin-left: 3px;
|
|
247
|
+
margin-right: initial;
|
|
205
248
|
}
|
|
206
|
-
|
|
207
|
-
.e-bigger
|
|
208
|
-
|
|
209
|
-
margin-left: 3px;
|
|
249
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-center .e-toolbar-item,
|
|
250
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-center .e-toolbar-item {
|
|
251
|
+
margin: 0;
|
|
210
252
|
}
|
|
211
|
-
|
|
212
|
-
.e-bigger .e-toolbar .e-toolbar-
|
|
213
|
-
|
|
214
|
-
min-height: 49px;
|
|
253
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item,
|
|
254
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item {
|
|
255
|
+
margin: 0;
|
|
215
256
|
}
|
|
216
|
-
|
|
217
|
-
.e-bigger .e-toolbar .e-toolbar-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
padding: 0 1.5px;
|
|
257
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child,
|
|
258
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child {
|
|
259
|
+
margin-left: 3px;
|
|
260
|
+
margin-right: 0;
|
|
221
261
|
}
|
|
222
|
-
|
|
223
|
-
.e-bigger
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
margin: 10px 5px;
|
|
227
|
-
min-height: 30px;
|
|
262
|
+
.e-bigger .e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
263
|
+
.e-toolbar.e-bigger.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
264
|
+
margin-left: 0;
|
|
265
|
+
margin-right: 3px;
|
|
228
266
|
}
|
|
229
|
-
|
|
230
|
-
.e-
|
|
231
|
-
|
|
232
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
233
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon {
|
|
234
|
-
padding: 0;
|
|
267
|
+
.e-bigger .e-toolbar.e-extended-toolbar.e-rtl .e-toolbar-extended,
|
|
268
|
+
.e-toolbar.e-bigger.e-extended-toolbar.e-rtl .e-toolbar-extended {
|
|
269
|
+
padding-right: 3px;
|
|
235
270
|
}
|
|
236
271
|
|
|
237
|
-
.e-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
height:
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
272
|
+
.e-toolbar {
|
|
273
|
+
border-radius: 0;
|
|
274
|
+
display: block;
|
|
275
|
+
height: 40px;
|
|
276
|
+
min-height: 40px;
|
|
277
|
+
position: relative;
|
|
278
|
+
-webkit-user-select: none;
|
|
279
|
+
-ms-user-select: none;
|
|
280
|
+
user-select: none;
|
|
281
|
+
white-space: nowrap;
|
|
282
|
+
overflow: hidden;
|
|
246
283
|
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon {
|
|
252
|
-
padding: 0 0 0 15px;
|
|
284
|
+
.e-toolbar .e-blazor-toolbar-items {
|
|
285
|
+
position: absolute;
|
|
286
|
+
top: -9999px;
|
|
287
|
+
visibility: hidden;
|
|
253
288
|
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon,
|
|
257
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon,
|
|
258
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon {
|
|
259
|
-
padding: 0 12px 0 0;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
263
|
-
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
|
|
264
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
265
|
-
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text {
|
|
266
|
-
padding: 0 15px 0 10px;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended,
|
|
270
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended {
|
|
271
|
-
min-height: 50px;
|
|
272
|
-
padding-bottom: 0;
|
|
273
|
-
padding-left: 3px;
|
|
274
|
-
padding-right: 3px;
|
|
275
|
-
padding-top: 0;
|
|
276
|
-
margin-left: -1px;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-popup-close,
|
|
280
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended.e-popup-close {
|
|
281
|
-
display: none;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-popup-open,
|
|
285
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended.e-popup-open {
|
|
286
|
-
display: inline;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended,
|
|
290
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
291
|
-
width: inherit;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended,
|
|
295
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended {
|
|
296
|
-
box-shadow: none;
|
|
297
|
-
display: inline;
|
|
298
|
-
white-space: normal;
|
|
289
|
+
.e-toolbar.e-control[class*=e-toolbar] {
|
|
290
|
+
box-sizing: content-box;
|
|
299
291
|
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
303
|
-
margin: 1.5px 0;
|
|
304
|
-
min-width: 49px;
|
|
305
|
-
padding: 0 1.5px;
|
|
292
|
+
.e-toolbar.e-corner {
|
|
293
|
+
border-radius: 0;
|
|
306
294
|
}
|
|
307
|
-
|
|
308
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator.e-extended-separator,
|
|
309
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator.e-extended-separator {
|
|
295
|
+
.e-toolbar.e-hidden {
|
|
310
296
|
display: none;
|
|
311
297
|
}
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
298
|
+
.e-toolbar .e-toolbar-items {
|
|
299
|
+
border-radius: 0 0 0 0;
|
|
315
300
|
display: -ms-inline-flexbox;
|
|
316
301
|
display: inline-flex;
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item,
|
|
320
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item {
|
|
321
|
-
-ms-flex-line-pack: center;
|
|
322
|
-
align-content: center;
|
|
302
|
+
height: 100%;
|
|
303
|
+
vertical-align: middle;
|
|
323
304
|
-ms-flex-align: center;
|
|
324
305
|
align-items: center;
|
|
325
|
-
cursor: pointer;
|
|
326
|
-
display: -ms-inline-flexbox;
|
|
327
|
-
display: inline-flex;
|
|
328
|
-
min-height: 49px;
|
|
329
|
-
vertical-align: middle;
|
|
330
|
-
width: auto;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
334
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
|
|
335
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
336
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text {
|
|
337
|
-
padding: 0 15px 0 10px;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
341
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
342
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
343
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
344
|
-
height: inherit;
|
|
345
|
-
margin: 0;
|
|
346
|
-
min-height: 50px;
|
|
347
|
-
min-width: 50px;
|
|
348
|
-
padding: 0;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
352
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn {
|
|
353
|
-
line-height: 35px;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator,
|
|
357
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
358
|
-
height: 30px;
|
|
359
|
-
margin: 10px 5px;
|
|
360
|
-
min-height: 30px;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon,
|
|
364
|
-
.e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-btn.e-tbar-btn .e-icons.e-btn-icon {
|
|
365
|
-
line-height: 34px;
|
|
366
|
-
min-height: 34px;
|
|
367
|
-
min-width: 25px;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.e-bigger .e-toolbar.e-extended-toolbar.e-rtl .e-hor-nav,
|
|
371
|
-
.e-toolbar.e-bigger.e-extended-toolbar.e-rtl .e-hor-nav {
|
|
372
|
-
left: 0;
|
|
373
|
-
right: auto;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.e-bigger .e-toolbar.e-extended-toolbar.e-rtl .e-toolbar-extended,
|
|
377
|
-
.e-toolbar.e-bigger.e-extended-toolbar.e-rtl .e-toolbar-extended {
|
|
378
|
-
padding-right: 3px;
|
|
379
|
-
margin-left: 0;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.e-bigger .e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
383
|
-
.e-toolbar.e-bigger.e-vertical .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
384
|
-
min-height: 38px;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.e-bigger .e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item.e-separator,
|
|
388
|
-
.e-toolbar.e-bigger.e-vertical .e-toolbar-items .e-toolbar-item.e-separator {
|
|
389
|
-
height: auto;
|
|
390
|
-
margin: 5px 10px;
|
|
391
|
-
min-height: auto;
|
|
392
306
|
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
margin:
|
|
307
|
+
.e-toolbar .e-toolbar-items.e-toolbar-multirow {
|
|
308
|
+
margin-bottom: 1px;
|
|
309
|
+
margin-left: 10px;
|
|
310
|
+
margin-right: 10px;
|
|
311
|
+
white-space: normal;
|
|
312
|
+
-ms-flex-wrap: wrap;
|
|
313
|
+
flex-wrap: wrap;
|
|
397
314
|
}
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
.e-toolbar.e-bigger.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
401
|
-
margin-left: 0;
|
|
315
|
+
.e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item:not(.e-separator) {
|
|
316
|
+
margin: 1px 0;
|
|
402
317
|
}
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
.e-toolbar.e-bigger.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
406
|
-
margin-right: 0;
|
|
318
|
+
.e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item.e-separator.e-multirow-separator, .e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item.e-separator.e-hidden {
|
|
319
|
+
display: none;
|
|
407
320
|
}
|
|
408
|
-
|
|
409
|
-
.e-
|
|
410
|
-
.e-toolbar.e-
|
|
411
|
-
|
|
412
|
-
min-width: 50px;
|
|
321
|
+
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-left,
|
|
322
|
+
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-center,
|
|
323
|
+
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-right {
|
|
324
|
+
display: inline;
|
|
413
325
|
}
|
|
414
|
-
|
|
415
|
-
.e-toolbar {
|
|
416
|
-
border-radius: "";
|
|
326
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos {
|
|
417
327
|
display: block;
|
|
418
|
-
height: 40px;
|
|
419
|
-
min-height: 40px;
|
|
420
|
-
position: relative;
|
|
421
|
-
-ms-touch-action: none;
|
|
422
|
-
touch-action: none;
|
|
423
|
-
-webkit-user-select: none;
|
|
424
|
-
-moz-user-select: none;
|
|
425
|
-
-ms-user-select: none;
|
|
426
|
-
user-select: none;
|
|
427
|
-
white-space: nowrap;
|
|
428
328
|
}
|
|
429
|
-
|
|
430
|
-
.e-toolbar.e-
|
|
431
|
-
|
|
432
|
-
|
|
329
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
330
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
331
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
332
|
+
display: table;
|
|
333
|
+
height: 100%;
|
|
334
|
+
top: 0;
|
|
433
335
|
}
|
|
434
|
-
|
|
435
|
-
.e-toolbar.e-
|
|
436
|
-
|
|
437
|
-
margin-left: 0;
|
|
336
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right,
|
|
337
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
338
|
+
position: absolute;
|
|
438
339
|
}
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
padding-left: 0;
|
|
340
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
341
|
+
right: 0;
|
|
442
342
|
}
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
border-bottom: 0;
|
|
446
|
-
border-bottom-left-radius: 0;
|
|
447
|
-
border-bottom-right-radius: 0;
|
|
343
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
344
|
+
left: 0;
|
|
448
345
|
}
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
display: table;
|
|
346
|
+
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-center {
|
|
347
|
+
margin: 0 auto;
|
|
452
348
|
}
|
|
453
|
-
|
|
454
|
-
.e-toolbar.e-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
border-top-right-radius: 0;
|
|
458
|
-
min-height: 40px;
|
|
459
|
-
padding-bottom: 0;
|
|
460
|
-
padding-left: 3px;
|
|
461
|
-
padding-right: 3px;
|
|
462
|
-
padding-top: 0;
|
|
463
|
-
margin-left: -1px;
|
|
349
|
+
.e-toolbar .e-toolbar-items .e-toolbar-left,
|
|
350
|
+
.e-toolbar .e-toolbar-items .e-toolbar-center,
|
|
351
|
+
.e-toolbar .e-toolbar-items .e-toolbar-right {
|
|
352
|
+
display: inline-block;
|
|
464
353
|
}
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
display: none;
|
|
354
|
+
.e-toolbar .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child, .e-toolbar .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child {
|
|
355
|
+
margin-left: 3px;
|
|
468
356
|
}
|
|
469
|
-
|
|
470
|
-
.e-toolbar.e-
|
|
471
|
-
|
|
357
|
+
.e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
358
|
+
.e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
359
|
+
margin-right: 3px;
|
|
472
360
|
}
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
361
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content {
|
|
362
|
+
-ms-touch-action: pan-y pinch-zoom;
|
|
363
|
+
touch-action: pan-y pinch-zoom;
|
|
476
364
|
}
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
box-shadow: none;
|
|
480
|
-
display: inline;
|
|
481
|
-
white-space: normal;
|
|
365
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
366
|
+
margin-right: 3px;
|
|
482
367
|
}
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
margin: 1px 0;
|
|
486
|
-
height: 100%;
|
|
487
|
-
min-width: 34px;
|
|
488
|
-
padding: 0 1px;
|
|
368
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-center .e-toolbar-item {
|
|
369
|
+
margin: 0;
|
|
489
370
|
}
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
display: none;
|
|
371
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item {
|
|
372
|
+
margin: 0;
|
|
493
373
|
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
display: -ms-inline-flexbox;
|
|
497
|
-
display: inline-flex;
|
|
374
|
+
.e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child {
|
|
375
|
+
margin-right: 3px;
|
|
498
376
|
}
|
|
499
|
-
|
|
500
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item {
|
|
377
|
+
.e-toolbar .e-toolbar-item {
|
|
501
378
|
-ms-flex-line-pack: center;
|
|
502
379
|
align-content: center;
|
|
503
380
|
-ms-flex-align: center;
|
|
@@ -509,289 +386,147 @@
|
|
|
509
386
|
vertical-align: middle;
|
|
510
387
|
width: auto;
|
|
511
388
|
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn-text {
|
|
519
|
-
display: inline-block;
|
|
520
|
-
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif";
|
|
521
|
-
font-size: 14px;
|
|
522
|
-
line-height: inherit;
|
|
389
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
390
|
+
display: -ms-flexbox;
|
|
391
|
+
display: flex;
|
|
392
|
+
-ms-flex-align: center;
|
|
393
|
+
align-items: center;
|
|
523
394
|
vertical-align: middle;
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
528
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
529
|
-
height: inherit;
|
|
395
|
+
-ms-flex-pack: center;
|
|
396
|
+
justify-content: center;
|
|
530
397
|
margin: 0;
|
|
531
|
-
min-height:
|
|
398
|
+
min-height: 39px;
|
|
532
399
|
min-width: 40px;
|
|
533
400
|
padding: 0;
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn {
|
|
537
|
-
line-height: 25px;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
541
|
-
margin: 7.5px 3px;
|
|
542
|
-
min-height: 25px;
|
|
543
|
-
min-width: 1px;
|
|
544
|
-
vertical-align: middle;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
.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) {
|
|
401
|
+
border-radius: 0;
|
|
548
402
|
line-height: 25px;
|
|
549
|
-
|
|
550
|
-
min-width: 20px;
|
|
551
|
-
padding: 0;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-separator:last-of-type {
|
|
555
|
-
display: -ms-inline-flexbox;
|
|
556
|
-
display: inline-flex;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
560
|
-
height: auto;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon {
|
|
564
|
-
font-size: 14px;
|
|
565
|
-
vertical-align: middle;
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
403
|
+
border: 2px solid #000;
|
|
569
404
|
cursor: pointer;
|
|
570
|
-
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif";
|
|
571
405
|
font-size: 16px;
|
|
572
406
|
font-weight: 400;
|
|
573
|
-
overflow: hidden;
|
|
574
|
-
|
|
575
|
-
text-
|
|
576
|
-
text-
|
|
577
|
-
text-transform: none;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended .e-tbar-btn:first-child {
|
|
581
|
-
display: inline-block;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-pop.e-toolbar-extended .e-toolbar-item > * {
|
|
585
|
-
-ms-flex-item-align: center;
|
|
586
|
-
-ms-grid-row-align: center;
|
|
587
|
-
align-self: center;
|
|
588
|
-
text-overflow: ellipsis;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.e-toolbar.e-control[class*='e-toolbar'] {
|
|
592
|
-
box-sizing: content-box;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text {
|
|
596
|
-
display: none;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.e-toolbar .e-tbar-btn-text,
|
|
600
|
-
.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
601
|
-
display: inline-block;
|
|
602
|
-
padding: 0 12px 0 8px;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.e-toolbar.e-hidden,
|
|
606
|
-
.e-toolbar .e-toolbar-items .e-toolbar-item.e-hidden {
|
|
607
|
-
display: none;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.e-toolbar.e-corner {
|
|
611
|
-
border-radius: 0;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.e-toolbar .e-toolbar-pop {
|
|
615
|
-
border-radius: "";
|
|
616
|
-
overflow: hidden;
|
|
617
|
-
padding: 0;
|
|
618
|
-
position: absolute;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.e-toolbar .e-toolbar-pop.e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
622
|
-
margin: 0;
|
|
623
|
-
width: auto;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-toolbar-popup.e-hidden {
|
|
627
|
-
display: none;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
631
|
-
display: -ms-inline-flexbox;
|
|
632
|
-
display: inline-flex;
|
|
633
|
-
-ms-flex-pack: start;
|
|
634
|
-
justify-content: flex-start;
|
|
635
|
-
min-height: 36px;
|
|
636
|
-
padding: 0 10px 0 0;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
640
|
-
margin: 0;
|
|
641
|
-
padding: 0 10px;
|
|
642
|
-
width: auto;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
646
|
-
padding: 0 10px;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon {
|
|
650
|
-
min-width: 20px;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
654
|
-
min-width: 34px;
|
|
655
|
-
padding: 0;
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control {
|
|
659
|
-
text-align: center;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
663
|
-
min-width: 100%;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item {
|
|
667
|
-
-ms-flex-line-pack: center;
|
|
668
|
-
align-content: center;
|
|
669
|
-
-ms-flex-align: center;
|
|
670
|
-
align-items: center;
|
|
671
|
-
display: -ms-flexbox;
|
|
672
|
-
display: flex;
|
|
673
|
-
height: auto;
|
|
674
|
-
-ms-flex-pack: center;
|
|
675
|
-
justify-content: center;
|
|
407
|
+
overflow: hidden;
|
|
408
|
+
text-align: center;
|
|
409
|
+
text-decoration: none;
|
|
410
|
+
text-transform: none;
|
|
676
411
|
}
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
height: 100%;
|
|
680
|
-
min-width: 100%;
|
|
681
|
-
text-overflow: ellipsis;
|
|
412
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
413
|
+
padding: 0 0 0 12px;
|
|
682
414
|
}
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
display: none;
|
|
415
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon.e-icon-right {
|
|
416
|
+
padding: 0 15px 0 0;
|
|
686
417
|
}
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
418
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon {
|
|
419
|
+
margin: 0;
|
|
420
|
+
min-width: 20px;
|
|
421
|
+
width: auto;
|
|
422
|
+
font-size: 16px;
|
|
423
|
+
line-height: 24px;
|
|
690
424
|
}
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
text-align: center;
|
|
425
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
426
|
+
padding: 0;
|
|
694
427
|
}
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
margin: 0;
|
|
428
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
429
|
+
outline: none;
|
|
698
430
|
}
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
margin: 0;
|
|
702
|
-
margin-left: 3px;
|
|
431
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn div {
|
|
432
|
+
vertical-align: middle;
|
|
703
433
|
}
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
434
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
435
|
+
font-size: 14px;
|
|
436
|
+
padding: 0 12px 0 8px;
|
|
707
437
|
}
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
438
|
+
.e-toolbar .e-toolbar-item:not(.e-separator) {
|
|
439
|
+
height: inherit;
|
|
440
|
+
min-width: 34px;
|
|
441
|
+
padding: 0 1px;
|
|
712
442
|
}
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
443
|
+
.e-toolbar .e-toolbar-item.e-separator {
|
|
444
|
+
margin: 7.5px 3px;
|
|
445
|
+
min-height: 24px;
|
|
446
|
+
min-width: 1px;
|
|
447
|
+
height: 24px;
|
|
716
448
|
}
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
margin-right: 3px;
|
|
449
|
+
.e-toolbar .e-toolbar-item.e-separator + .e-separator, .e-toolbar .e-toolbar-item.e-separator:last-of-type, .e-toolbar .e-toolbar-item.e-separator:first-of-type {
|
|
450
|
+
display: none;
|
|
720
451
|
}
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
margin: 0;
|
|
452
|
+
.e-toolbar .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
453
|
+
padding: 0;
|
|
724
454
|
}
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
left: auto;
|
|
728
|
-
right: 0;
|
|
455
|
+
.e-toolbar .e-toolbar-item > * {
|
|
456
|
+
text-overflow: ellipsis;
|
|
729
457
|
}
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
left: 0;
|
|
733
|
-
right: auto;
|
|
458
|
+
.e-toolbar .e-toolbar-item.e-hidden {
|
|
459
|
+
display: none;
|
|
734
460
|
}
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
margin-left: 0;
|
|
461
|
+
.e-toolbar .e-toolbar-item input[type=checkbox] {
|
|
462
|
+
height: auto;
|
|
738
463
|
}
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
464
|
+
.e-toolbar.e-vertical {
|
|
465
|
+
display: -ms-flexbox;
|
|
466
|
+
display: flex;
|
|
467
|
+
-ms-flex-direction: column;
|
|
468
|
+
flex-direction: column;
|
|
742
469
|
}
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
margin-right: 3px;
|
|
470
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-vscroll-bar .e-vscroll-content {
|
|
471
|
+
-ms-touch-action: pan-x pinch-zoom;
|
|
472
|
+
touch-action: pan-x pinch-zoom;
|
|
747
473
|
}
|
|
748
|
-
|
|
749
|
-
.e-toolbar.e-
|
|
750
|
-
|
|
474
|
+
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
475
|
+
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
476
|
+
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
477
|
+
height: auto;
|
|
751
478
|
}
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
479
|
+
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
480
|
+
left: auto;
|
|
481
|
+
right: auto;
|
|
482
|
+
top: 0;
|
|
756
483
|
}
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
484
|
+
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
485
|
+
bottom: 0;
|
|
486
|
+
left: auto;
|
|
487
|
+
right: auto;
|
|
760
488
|
}
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
margin-left: 3px;
|
|
764
|
-
margin-right: 0;
|
|
489
|
+
.e-toolbar.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
490
|
+
margin-left: 0;
|
|
765
491
|
}
|
|
766
|
-
|
|
767
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child .e-hscroll-bar:first-child .e-toolbar-right .e-toolbar-item:first-child {
|
|
492
|
+
.e-toolbar.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
768
493
|
margin-right: 0;
|
|
769
494
|
}
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
495
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item {
|
|
496
|
+
display: -ms-flexbox;
|
|
497
|
+
display: flex;
|
|
498
|
+
height: auto;
|
|
774
499
|
}
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
778
|
-
margin-right: 0;
|
|
500
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
501
|
+
min-width: 33px;
|
|
779
502
|
}
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
503
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item.e-separator {
|
|
504
|
+
height: auto;
|
|
505
|
+
margin: 3px 7.5px;
|
|
506
|
+
min-height: auto;
|
|
784
507
|
}
|
|
785
|
-
|
|
786
|
-
|
|
508
|
+
.e-toolbar.e-vertical .e-hor-nav {
|
|
509
|
+
bottom: 0;
|
|
510
|
+
height: auto;
|
|
787
511
|
left: 0;
|
|
512
|
+
min-height: 40px;
|
|
513
|
+
min-width: 50px;
|
|
788
514
|
right: auto;
|
|
515
|
+
top: auto;
|
|
516
|
+
width: auto;
|
|
517
|
+
}
|
|
518
|
+
.e-toolbar.e-vertical.e-rtl.e-tbar-pos .e-toolbar-left {
|
|
519
|
+
bottom: 0;
|
|
520
|
+
top: auto;
|
|
521
|
+
}
|
|
522
|
+
.e-toolbar.e-vertical.e-rtl.e-tbar-pos .e-toolbar-right {
|
|
523
|
+
bottom: auto;
|
|
524
|
+
top: 0;
|
|
789
525
|
}
|
|
790
|
-
|
|
791
526
|
.e-toolbar .e-hor-nav {
|
|
792
527
|
-ms-flex-align: center;
|
|
793
528
|
align-items: center;
|
|
794
|
-
border-radius: 0
|
|
529
|
+
border-radius: 0 0 0 0;
|
|
795
530
|
cursor: pointer;
|
|
796
531
|
display: -ms-flexbox;
|
|
797
532
|
display: flex;
|
|
@@ -803,614 +538,534 @@
|
|
|
803
538
|
top: 0;
|
|
804
539
|
width: 40px;
|
|
805
540
|
}
|
|
806
|
-
|
|
807
541
|
.e-toolbar .e-hor-nav.e-ie-align {
|
|
808
542
|
display: table;
|
|
809
543
|
}
|
|
810
|
-
|
|
811
544
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
812
545
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
813
|
-
|
|
546
|
+
color: #fff;
|
|
547
|
+
display: -ms-flexbox;
|
|
548
|
+
display: flex;
|
|
814
549
|
text-align: center;
|
|
815
550
|
vertical-align: middle;
|
|
551
|
+
-ms-flex-align: center;
|
|
552
|
+
align-items: center;
|
|
553
|
+
-ms-flex-pack: center;
|
|
554
|
+
justify-content: center;
|
|
816
555
|
width: 100%;
|
|
556
|
+
font-size: 12px;
|
|
817
557
|
}
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
line-height: 25px;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
824
|
-
line-height: 25px;
|
|
825
|
-
min-height: 25px;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.e-toolbar .e-toolbar-items {
|
|
829
|
-
border-radius: "" 0 0 "";
|
|
830
|
-
display: inline-block;
|
|
831
|
-
height: 100%;
|
|
832
|
-
min-height: 39px;
|
|
833
|
-
vertical-align: middle;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.e-toolbar .e-toolbar-items.e-toolbar-multirow {
|
|
837
|
-
margin-bottom: 1px;
|
|
838
|
-
margin-left: 10px;
|
|
839
|
-
margin-right: 10px;
|
|
840
|
-
white-space: normal;
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
.e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item:not(.e-separator) {
|
|
844
|
-
margin: 1px 0;
|
|
558
|
+
.e-toolbar.e-toolpop {
|
|
559
|
+
overflow: visible;
|
|
845
560
|
}
|
|
846
|
-
|
|
847
|
-
.e-toolbar .e-toolbar-items.e-toolbar-multirow .e-toolbar-item.e-separator.e-multirow-separator {
|
|
561
|
+
.e-toolbar.e-toolpop .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text {
|
|
848
562
|
display: none;
|
|
849
563
|
}
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-left,
|
|
857
|
-
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-center,
|
|
858
|
-
.e-toolbar .e-toolbar-items.e-multirow-pos .e-toolbar-right {
|
|
859
|
-
display: inline;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.e-toolbar .e-toolbar-items.e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
863
|
-
margin-left: 0;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.e-toolbar .e-toolbar-items.e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
867
|
-
margin-right: 0;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos {
|
|
871
|
-
display: block;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left,
|
|
875
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
876
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
877
|
-
display: table;
|
|
878
|
-
height: 100%;
|
|
879
|
-
top: 0;
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-right,
|
|
883
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
564
|
+
.e-toolbar .e-toolbar-pop {
|
|
565
|
+
border-radius: 0;
|
|
566
|
+
overflow: hidden;
|
|
567
|
+
padding: 0;
|
|
884
568
|
position: absolute;
|
|
885
569
|
}
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
line-height: 35px;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
.e-toolbar .e-toolbar-items.e-tbar-pos .e-toolbar-center {
|
|
897
|
-
margin: 0 auto;
|
|
570
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item {
|
|
571
|
+
display: -ms-flexbox;
|
|
572
|
+
display: flex;
|
|
573
|
+
height: auto;
|
|
574
|
+
-ms-flex-pack: center;
|
|
575
|
+
justify-content: center;
|
|
576
|
+
min-height: 36px;
|
|
898
577
|
}
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
.e-toolbar .e-toolbar-items .e-toolbar-center,
|
|
902
|
-
.e-toolbar .e-toolbar-items .e-toolbar-right {
|
|
903
|
-
display: inline-block;
|
|
578
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-toolbar-popup.e-hidden {
|
|
579
|
+
display: none;
|
|
904
580
|
}
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
581
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
582
|
+
min-height: 36px;
|
|
583
|
+
min-width: 100%;
|
|
584
|
+
padding: 0 10px 0 0;
|
|
585
|
+
border: 2px solid #000;
|
|
586
|
+
border-radius: 0;
|
|
587
|
+
-ms-flex-pack: start;
|
|
588
|
+
justify-content: flex-start;
|
|
908
589
|
}
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
590
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
591
|
+
margin: 0;
|
|
592
|
+
padding: 0 10px;
|
|
593
|
+
width: auto;
|
|
912
594
|
}
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
margin-left: 0;
|
|
595
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
596
|
+
padding: 0 10px;
|
|
916
597
|
}
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
598
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
599
|
+
min-width: 34px;
|
|
600
|
+
padding: 0;
|
|
920
601
|
}
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
602
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item > * {
|
|
603
|
+
height: 100%;
|
|
604
|
+
min-width: 100%;
|
|
605
|
+
text-overflow: ellipsis;
|
|
924
606
|
}
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
margin-right: 0;
|
|
607
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
608
|
+
min-width: 100%;
|
|
928
609
|
}
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
margin-right: 3px;
|
|
610
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-text .e-tbar-btn-text {
|
|
611
|
+
display: none;
|
|
932
612
|
}
|
|
933
|
-
|
|
934
|
-
.e-toolbar .e-toolbar-
|
|
935
|
-
|
|
613
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-popup,
|
|
614
|
+
.e-toolbar .e-toolbar-pop .e-toolpopup {
|
|
615
|
+
text-align: center;
|
|
936
616
|
}
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
margin-right: 3px;
|
|
617
|
+
.e-toolbar.e-extended-toolbar {
|
|
618
|
+
overflow: visible;
|
|
940
619
|
}
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
620
|
+
.e-toolbar.e-extended-toolbar.e-tbar-extended {
|
|
621
|
+
border-bottom: 0;
|
|
622
|
+
border-bottom-left-radius: 0;
|
|
623
|
+
border-bottom-right-radius: 0;
|
|
945
624
|
}
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
625
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended {
|
|
626
|
+
border-top: 0;
|
|
627
|
+
border-top-left-radius: 0;
|
|
628
|
+
border-top-right-radius: 0;
|
|
629
|
+
min-height: 40px;
|
|
630
|
+
padding-bottom: 0;
|
|
631
|
+
padding-left: 3px;
|
|
632
|
+
padding-right: 3px;
|
|
633
|
+
padding-top: 0;
|
|
634
|
+
margin-left: -1px;
|
|
635
|
+
box-shadow: none;
|
|
636
|
+
display: inline;
|
|
637
|
+
white-space: normal;
|
|
949
638
|
}
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
639
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item {
|
|
640
|
+
display: -ms-inline-flexbox;
|
|
641
|
+
display: inline-flex;
|
|
642
|
+
min-height: 39px;
|
|
953
643
|
}
|
|
954
|
-
|
|
955
|
-
.e-toolbar
|
|
956
|
-
|
|
644
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
645
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
646
|
+
min-height: 39px;
|
|
647
|
+
min-width: 40px;
|
|
648
|
+
padding: 0;
|
|
957
649
|
}
|
|
958
|
-
|
|
959
|
-
.e-toolbar .e-toolbar-
|
|
960
|
-
|
|
650
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
651
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text {
|
|
652
|
+
padding: 0 12px 0 8px;
|
|
653
|
+
font-size: 14px;
|
|
961
654
|
}
|
|
962
|
-
|
|
963
|
-
.e-toolbar .e-toolbar-
|
|
964
|
-
-ms-
|
|
965
|
-
|
|
655
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon:not(.e-toolbar-pop),
|
|
656
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-icons.e-btn-icon:not(.e-toolbar-pop) {
|
|
657
|
+
display: -ms-flexbox;
|
|
658
|
+
display: flex;
|
|
966
659
|
-ms-flex-align: center;
|
|
967
660
|
align-items: center;
|
|
968
|
-
cursor: pointer;
|
|
969
|
-
display: -ms-inline-flexbox;
|
|
970
|
-
display: inline-flex;
|
|
971
|
-
min-height: 39px;
|
|
972
661
|
vertical-align: middle;
|
|
973
|
-
|
|
662
|
+
-ms-flex-pack: center;
|
|
663
|
+
justify-content: center;
|
|
664
|
+
padding: 0;
|
|
665
|
+
font-size: 14px;
|
|
974
666
|
}
|
|
975
|
-
|
|
976
|
-
.e-toolbar .e-toolbar-
|
|
977
|
-
|
|
667
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon:not(.e-toolbar-pop),
|
|
668
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon:not(.e-toolbar-pop) {
|
|
669
|
+
padding: 0 0 0 12px;
|
|
670
|
+
}
|
|
671
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon:not(.e-toolbar-pop),
|
|
672
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-icon-right.e-btn-icon:not(.e-toolbar-pop) {
|
|
673
|
+
padding: 0 15px 0 0;
|
|
674
|
+
}
|
|
675
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover, .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus, .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
676
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
677
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus,
|
|
678
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
679
|
+
padding: 0;
|
|
680
|
+
}
|
|
681
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item:not(.e-separator) {
|
|
978
682
|
min-width: 34px;
|
|
979
683
|
padding: 0 1px;
|
|
980
684
|
}
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
margin: 7.5px 3px;
|
|
984
|
-
min-height: 24px;
|
|
985
|
-
min-width: 1px;
|
|
685
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
686
|
+
min-height: 25px;
|
|
986
687
|
}
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
height: auto;
|
|
688
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator.e-extended-separator {
|
|
689
|
+
display: none;
|
|
990
690
|
}
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
padding: 0;
|
|
691
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-toolbar-text .e-tbar-btn-text {
|
|
692
|
+
display: none;
|
|
994
693
|
}
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
height: inherit;
|
|
998
|
-
margin: 0;
|
|
999
|
-
min-height: 40px;
|
|
1000
|
-
min-width: 40px;
|
|
1001
|
-
padding: 0;
|
|
694
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-popup-close {
|
|
695
|
+
display: none;
|
|
1002
696
|
}
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
outline: none;
|
|
697
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-popup-open {
|
|
698
|
+
display: inline;
|
|
1006
699
|
}
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
padding: 0 0 0 12px;
|
|
700
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop {
|
|
701
|
+
width: inherit;
|
|
1010
702
|
}
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
703
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
704
|
+
cursor: pointer;
|
|
705
|
+
font-size: 16px;
|
|
706
|
+
overflow: hidden;
|
|
707
|
+
padding: 0;
|
|
1014
708
|
}
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
margin: 0;
|
|
1018
|
-
min-width: 20px;
|
|
1019
|
-
width: auto;
|
|
709
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn .e-icons.e-btn-icon {
|
|
710
|
+
font-size: 14px;
|
|
1020
711
|
}
|
|
1021
|
-
|
|
1022
|
-
|
|
712
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
713
|
+
height: auto;
|
|
714
|
+
}
|
|
715
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1023
716
|
-ms-flex-item-align: center;
|
|
1024
717
|
-ms-grid-row-align: center;
|
|
1025
718
|
align-self: center;
|
|
1026
719
|
text-overflow: ellipsis;
|
|
1027
720
|
}
|
|
1028
|
-
|
|
1029
|
-
.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
1030
|
-
height: 24px;
|
|
1031
|
-
vertical-align: middle;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator + .e-separator {
|
|
1035
|
-
display: none;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
.e-toolbar .e-toolbar-items .e-toolbar-item.e-separator:last-of-type, .e-toolbar .e-toolbar-items .e-toolbar-item.e-separator:first-of-type {
|
|
721
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn-text {
|
|
1039
722
|
display: none;
|
|
1040
723
|
}
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
display: inline-
|
|
724
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-separator:last-of-type {
|
|
725
|
+
display: -ms-inline-flexbox;
|
|
726
|
+
display: inline-flex;
|
|
1044
727
|
}
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
border: none;
|
|
1048
|
-
cursor: pointer;
|
|
1049
|
-
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif";
|
|
1050
|
-
font-size: 16px;
|
|
1051
|
-
font-weight: 400;
|
|
1052
|
-
overflow: hidden;
|
|
1053
|
-
padding: 0;
|
|
1054
|
-
text-align: center;
|
|
1055
|
-
text-decoration: none;
|
|
1056
|
-
text-transform: none;
|
|
728
|
+
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
729
|
+
display: table;
|
|
1057
730
|
}
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
font-size: 16px;
|
|
1061
|
-
vertical-align: middle;
|
|
731
|
+
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
732
|
+
padding: 0 12px 0 0;
|
|
1062
733
|
}
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
vertical-align: middle;
|
|
734
|
+
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon.e-icon-right {
|
|
735
|
+
padding: 0 0 0 15px;
|
|
1066
736
|
}
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
display: inline-block;
|
|
1070
|
-
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif";
|
|
1071
|
-
font-size: 14px;
|
|
1072
|
-
line-height: inherit;
|
|
1073
|
-
vertical-align: middle;
|
|
1074
|
-
width: auto;
|
|
737
|
+
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
738
|
+
padding: 0 8px 0 12px;
|
|
1075
739
|
}
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
display: flex;
|
|
1080
|
-
-ms-flex-direction: column;
|
|
1081
|
-
flex-direction: column;
|
|
740
|
+
.e-toolbar.e-rtl .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
741
|
+
margin-left: 3px;
|
|
742
|
+
margin-right: initial;
|
|
1082
743
|
}
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
bottom: 0;
|
|
1086
|
-
top: auto;
|
|
744
|
+
.e-toolbar.e-rtl .e-hscroll-bar .e-hscroll-content .e-toolbar-center .e-toolbar-item {
|
|
745
|
+
margin: 0;
|
|
1087
746
|
}
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
bottom: auto;
|
|
1091
|
-
top: 0;
|
|
747
|
+
.e-toolbar.e-rtl .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item {
|
|
748
|
+
margin: 0;
|
|
1092
749
|
}
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-center,
|
|
1096
|
-
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
1097
|
-
height: auto;
|
|
750
|
+
.e-toolbar.e-rtl .e-hscroll-bar .e-hscroll-content .e-toolbar-right .e-toolbar-item:last-child {
|
|
751
|
+
margin-right: 3px;
|
|
1098
752
|
}
|
|
1099
|
-
|
|
1100
|
-
.e-toolbar.e-vertical .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
753
|
+
.e-toolbar.e-rtl .e-toolbar-items.e-tbar-pos .e-toolbar-left {
|
|
1101
754
|
left: auto;
|
|
1102
|
-
right:
|
|
1103
|
-
top: 0;
|
|
755
|
+
right: 0;
|
|
1104
756
|
}
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
bottom: 0;
|
|
1108
|
-
left: auto;
|
|
757
|
+
.e-toolbar.e-rtl .e-toolbar-items.e-tbar-pos .e-toolbar-right {
|
|
758
|
+
left: 0;
|
|
1109
759
|
right: auto;
|
|
1110
760
|
}
|
|
1111
|
-
|
|
1112
|
-
.e-toolbar.e-vertical .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
761
|
+
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1113
762
|
margin-left: 0;
|
|
1114
763
|
}
|
|
1115
|
-
|
|
1116
|
-
|
|
764
|
+
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
765
|
+
margin-left: 3px;
|
|
766
|
+
}
|
|
767
|
+
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
768
|
+
margin-left: 0;
|
|
769
|
+
margin-right: 3px;
|
|
770
|
+
}
|
|
771
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child,
|
|
772
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1117
773
|
margin-right: 0;
|
|
1118
774
|
}
|
|
1119
|
-
|
|
1120
|
-
.e-toolbar.e-
|
|
1121
|
-
|
|
1122
|
-
display: flex;
|
|
1123
|
-
height: auto;
|
|
775
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
776
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
777
|
+
margin-right: 3px;
|
|
1124
778
|
}
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
779
|
+
.e-toolbar.e-rtl .e-hor-nav {
|
|
780
|
+
left: 0;
|
|
781
|
+
right: auto;
|
|
782
|
+
border-radius: 0 0 0 0;
|
|
1128
783
|
}
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
784
|
+
.e-toolbar.e-toolpop.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-center .e-toolbar-item {
|
|
785
|
+
margin: 0;
|
|
786
|
+
}
|
|
787
|
+
.e-toolbar.e-toolpop.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-right .e-toolbar-item {
|
|
788
|
+
margin: 0;
|
|
1134
789
|
}
|
|
1135
|
-
|
|
1136
|
-
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
790
|
+
.e-toolbar.e-toolpop.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-right .e-toolbar-item:last-child {
|
|
1137
791
|
margin: 0;
|
|
792
|
+
margin-left: 3px;
|
|
1138
793
|
}
|
|
1139
|
-
|
|
1140
|
-
.e-toolbar.e-vertical .e-hor-nav {
|
|
1141
|
-
bottom: 0;
|
|
1142
|
-
height: auto;
|
|
794
|
+
.e-toolbar.e-extended-toolbar.e-rtl .e-hor-nav {
|
|
1143
795
|
left: 0;
|
|
1144
|
-
min-height: 40px;
|
|
1145
|
-
min-width: 50px;
|
|
1146
796
|
right: auto;
|
|
1147
|
-
|
|
1148
|
-
|
|
797
|
+
}
|
|
798
|
+
.e-toolbar.e-extended-toolbar.e-rtl .e-toolbar-extended {
|
|
799
|
+
padding-right: 3px;
|
|
800
|
+
margin-left: 0;
|
|
801
|
+
}
|
|
802
|
+
.e-toolbar.e-extended-toolbar.e-rtl .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-icon-left {
|
|
803
|
+
padding-left: 0;
|
|
1149
804
|
}
|
|
1150
805
|
|
|
1151
806
|
/*! toolbar theme */
|
|
807
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1152
808
|
.e-toolbar {
|
|
1153
809
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1154
810
|
background: #000;
|
|
1155
811
|
border: 1px solid #fff;
|
|
1156
812
|
box-shadow: none;
|
|
1157
813
|
}
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
border: solid #fff;
|
|
1161
|
-
border-width: 1px 0 0 0;
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
.e-toolbar.e-vertical.e-rtl .e-hor-nav {
|
|
1165
|
-
border: solid #fff;
|
|
1166
|
-
border-width: 0 0 1px 0;
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item.e-separator {
|
|
1170
|
-
border-width: 0 0 1px 0;
|
|
814
|
+
.e-toolbar .e-toolbar-items {
|
|
815
|
+
background: #000;
|
|
1171
816
|
}
|
|
1172
|
-
|
|
1173
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay {
|
|
817
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1174
818
|
background: #000;
|
|
819
|
+
box-shadow: none;
|
|
820
|
+
color: #fff;
|
|
821
|
+
border: 2px solid #000;
|
|
1175
822
|
}
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
border: solid #fff;
|
|
1179
|
-
border-width: 0 1px 0 0;
|
|
823
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn .e-icons {
|
|
824
|
+
color: #fff;
|
|
1180
825
|
}
|
|
1181
|
-
|
|
1182
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
|
|
826
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
1183
827
|
color: #fff;
|
|
1184
828
|
}
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
background: #000;
|
|
829
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active {
|
|
830
|
+
background: #ffd939;
|
|
1188
831
|
box-shadow: none;
|
|
1189
|
-
color: #fff;
|
|
1190
|
-
border: 2px solid #000;
|
|
1191
832
|
}
|
|
1192
|
-
|
|
1193
|
-
|
|
833
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active .e-tbar-btn-text {
|
|
834
|
+
color: #000;
|
|
835
|
+
}
|
|
836
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active:focus {
|
|
837
|
+
box-shadow: none;
|
|
838
|
+
}
|
|
839
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1194
840
|
background: inherit;
|
|
841
|
+
border-radius: 0;
|
|
842
|
+
color: #fff;
|
|
1195
843
|
border-color: #fff;
|
|
1196
|
-
border-
|
|
844
|
+
border-style: solid;
|
|
845
|
+
border-width: 2px;
|
|
846
|
+
box-shadow: none;
|
|
847
|
+
}
|
|
848
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
1197
849
|
color: #fff;
|
|
1198
|
-
border: 2px solid #fff;
|
|
1199
850
|
}
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
background: #ffd939;
|
|
851
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-tbar-btn-text {
|
|
852
|
+
color: #fff;
|
|
1203
853
|
}
|
|
1204
|
-
|
|
1205
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
854
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
1206
855
|
background: #685708;
|
|
1207
856
|
border-color: #fff;
|
|
1208
|
-
border-
|
|
857
|
+
border-style: solid;
|
|
858
|
+
border-width: 2px;
|
|
859
|
+
border-radius: 0;
|
|
1209
860
|
color: #fff;
|
|
1210
|
-
border: 2px solid #fff;
|
|
1211
861
|
}
|
|
1212
|
-
|
|
1213
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
862
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
1214
863
|
color: #fff;
|
|
1215
864
|
}
|
|
1216
|
-
|
|
1217
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover:focus .e-icons,
|
|
1218
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover:focus .e-tbar-btn-text {
|
|
865
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover .e-tbar-btn-text {
|
|
1219
866
|
color: #fff;
|
|
1220
867
|
}
|
|
1221
|
-
|
|
1222
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover:active .e-icons,
|
|
1223
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover:active .e-tbar-btn-text {
|
|
868
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover:active .e-icons {
|
|
1224
869
|
color: #000;
|
|
1225
870
|
}
|
|
1226
|
-
|
|
1227
|
-
|
|
871
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:hover:active .e-tbar-btn-text {
|
|
872
|
+
color: #000;
|
|
873
|
+
}
|
|
874
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
1228
875
|
background: #ffd939;
|
|
1229
876
|
border-color: #ffd939;
|
|
1230
|
-
border-
|
|
1231
|
-
|
|
1232
|
-
|
|
877
|
+
border-style: solid;
|
|
878
|
+
border-width: 2px;
|
|
879
|
+
border-radius: 0;
|
|
880
|
+
box-shadow: none;
|
|
1233
881
|
color: #000;
|
|
1234
882
|
}
|
|
1235
|
-
|
|
1236
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active .e-icons,
|
|
1237
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active .e-tbar-btn-text {
|
|
883
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:active .e-icons {
|
|
1238
884
|
color: #000;
|
|
1239
885
|
}
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
color: #fff;
|
|
886
|
+
.e-toolbar .e-toolbar-item .e-tbar-btn:active .e-tbar-btn-text {
|
|
887
|
+
color: #000;
|
|
1243
888
|
}
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
889
|
+
.e-toolbar .e-toolbar-item.e-separator {
|
|
890
|
+
border: solid #fff;
|
|
891
|
+
border-width: 0 1px 0 0;
|
|
1247
892
|
}
|
|
1248
|
-
|
|
1249
|
-
.e-toolbar .e-toolbar-pop {
|
|
893
|
+
.e-toolbar .e-toolbar-item.e-overlay {
|
|
1250
894
|
background: #000;
|
|
1251
|
-
|
|
1252
|
-
|
|
895
|
+
opacity: 1;
|
|
896
|
+
color: #757575;
|
|
1253
897
|
}
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
color: #fff;
|
|
898
|
+
.e-toolbar .e-toolbar-item.e-overlay .e-tbar-btn-text {
|
|
899
|
+
color: #757575;
|
|
1257
900
|
}
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
outline: none;
|
|
901
|
+
.e-toolbar .e-toolbar-item.e-overlay .e-icons {
|
|
902
|
+
color: #757575;
|
|
1261
903
|
}
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
background: #ffd939;
|
|
1266
|
-
border: "";
|
|
1267
|
-
border-left: 1px solid #ffd939;
|
|
1268
|
-
box-shadow: "";
|
|
904
|
+
.e-toolbar.e-vertical .e-hor-nav {
|
|
905
|
+
border: solid #fff;
|
|
906
|
+
border-width: 1px 0 0 0;
|
|
1269
907
|
}
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
border: 2px solid #fff;
|
|
908
|
+
.e-toolbar.e-vertical.e-rtl .e-hor-nav {
|
|
909
|
+
border: solid #fff;
|
|
910
|
+
border-width: 0 0 1px 0;
|
|
1274
911
|
}
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) .e-icons {
|
|
1278
|
-
color: #000;
|
|
912
|
+
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item.e-separator {
|
|
913
|
+
border-width: 0 0 1px 0;
|
|
1279
914
|
}
|
|
1280
|
-
|
|
1281
|
-
.e-toolbar .e-tbar-btn {
|
|
915
|
+
.e-toolbar .e-hor-nav {
|
|
1282
916
|
background: #000;
|
|
917
|
+
border: solid #fff;
|
|
918
|
+
border-width: 0 0 0 1px;
|
|
919
|
+
}
|
|
920
|
+
.e-toolbar .e-hor-nav::after {
|
|
921
|
+
content: "";
|
|
922
|
+
}
|
|
923
|
+
.e-toolbar .e-hor-nav.e-nav-active:active, .e-toolbar .e-hor-nav.e-nav-active:focus, .e-toolbar .e-hor-nav.e-nav-active:hover {
|
|
924
|
+
border-bottom-right-radius: 0;
|
|
925
|
+
}
|
|
926
|
+
.e-toolbar .e-hor-nav:active {
|
|
927
|
+
border: 0;
|
|
1283
928
|
box-shadow: none;
|
|
1284
|
-
color: #
|
|
1285
|
-
|
|
929
|
+
color: #000;
|
|
930
|
+
background: #000;
|
|
1286
931
|
}
|
|
1287
|
-
|
|
1288
|
-
.e-toolbar .e-tbar-btn:focus {
|
|
1289
|
-
background: inherit;
|
|
1290
|
-
border-color: #fff;
|
|
1291
|
-
border-radius: "";
|
|
932
|
+
.e-toolbar .e-hor-nav:active .e-icons {
|
|
1292
933
|
color: #fff;
|
|
1293
|
-
border: 2px solid #fff;
|
|
1294
934
|
}
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
background: #ffd939;
|
|
935
|
+
.e-toolbar .e-hor-nav:active::after {
|
|
936
|
+
content: "";
|
|
1298
937
|
}
|
|
1299
|
-
|
|
1300
|
-
.e-toolbar .e-tbar-btn:hover {
|
|
938
|
+
.e-toolbar .e-hor-nav:hover {
|
|
1301
939
|
background: #685708;
|
|
1302
|
-
border-
|
|
1303
|
-
border-radius: "";
|
|
940
|
+
border-left: 0;
|
|
1304
941
|
color: #fff;
|
|
1305
|
-
border: 2px solid #fff;
|
|
1306
942
|
}
|
|
1307
|
-
|
|
1308
|
-
.e-toolbar .e-tbar-btn:hover .e-icons {
|
|
943
|
+
.e-toolbar .e-hor-nav:hover .e-icons {
|
|
1309
944
|
color: #fff;
|
|
1310
945
|
}
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
946
|
+
.e-toolbar .e-hor-nav:hover:not(.e-nav-active) {
|
|
947
|
+
border-color: #fff;
|
|
948
|
+
border-style: solid;
|
|
949
|
+
border-width: 2px;
|
|
1315
950
|
}
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
951
|
+
.e-toolbar .e-hor-nav:hover:active {
|
|
952
|
+
background: #ffd939;
|
|
953
|
+
border-color: #fff;
|
|
954
|
+
border-style: solid;
|
|
955
|
+
border-width: 0;
|
|
956
|
+
}
|
|
957
|
+
.e-toolbar .e-hor-nav:focus {
|
|
958
|
+
background: inherit;
|
|
1319
959
|
color: #000;
|
|
960
|
+
border-color: #fff;
|
|
961
|
+
border-style: solid;
|
|
962
|
+
border-width: 2px;
|
|
1320
963
|
}
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
background: #000;
|
|
964
|
+
.e-toolbar .e-hor-nav:focus .e-icons {
|
|
965
|
+
color: #fff;
|
|
1324
966
|
}
|
|
1325
|
-
|
|
1326
|
-
.e-toolbar .e-
|
|
1327
|
-
background: #
|
|
1328
|
-
|
|
967
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
968
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
969
|
+
background: #ffd939;
|
|
970
|
+
box-shadow: none;
|
|
971
|
+
border-color: #ffd939;
|
|
972
|
+
border-style: solid;
|
|
973
|
+
border-width: 0 0 0 1px;
|
|
1329
974
|
}
|
|
1330
|
-
|
|
1331
|
-
.e-toolbar
|
|
1332
|
-
color: #
|
|
975
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:focus,
|
|
976
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav):focus {
|
|
977
|
+
border-color: #fff;
|
|
978
|
+
border-style: solid;
|
|
979
|
+
border-width: 2px;
|
|
1333
980
|
}
|
|
1334
|
-
|
|
1335
|
-
.e-toolbar .e-
|
|
1336
|
-
color: #
|
|
981
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
982
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) .e-icons {
|
|
983
|
+
color: #000;
|
|
1337
984
|
}
|
|
1338
|
-
|
|
1339
|
-
.e-toolbar .e-
|
|
1340
|
-
color: #
|
|
985
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons:active,
|
|
986
|
+
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) .e-icons:active {
|
|
987
|
+
color: #000;
|
|
1341
988
|
}
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
border: solid #fff;
|
|
1345
|
-
|
|
989
|
+
.e-toolbar .e-toolbar-pop {
|
|
990
|
+
background: #000;
|
|
991
|
+
border: 1px solid #fff;
|
|
992
|
+
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1346
993
|
}
|
|
1347
|
-
|
|
1348
|
-
.e-toolbar.e-rtl .e-hor-nav {
|
|
994
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
1349
995
|
background: #000;
|
|
1350
|
-
border: solid #fff;
|
|
1351
|
-
border-left: 0;
|
|
1352
|
-
border-width: 0 1px 0 0;
|
|
1353
996
|
}
|
|
1354
|
-
|
|
1355
|
-
.e-toolbar.e-rtl .e-hor-nav:not(.e-hor-nav.e-nav-active):hover {
|
|
997
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:hover {
|
|
1356
998
|
background: #685708;
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
background: #000;
|
|
1362
|
-
border: solid #fff;
|
|
1363
|
-
border-width: 0 0 0 1px;
|
|
999
|
+
box-shadow: none;
|
|
1000
|
+
border-color: #fff;
|
|
1001
|
+
border-style: solid;
|
|
1002
|
+
border-width: 2px;
|
|
1364
1003
|
}
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1004
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:active {
|
|
1005
|
+
background: #ffd939;
|
|
1006
|
+
box-shadow: none;
|
|
1007
|
+
border-color: #ffd939;
|
|
1008
|
+
border-style: solid;
|
|
1009
|
+
border-width: 2px;
|
|
1368
1010
|
}
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1011
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
1012
|
+
background: inherit;
|
|
1013
|
+
box-shadow: none;
|
|
1014
|
+
border-color: #fff;
|
|
1015
|
+
border-style: solid;
|
|
1016
|
+
border-width: 2px;
|
|
1374
1017
|
}
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
content: '';
|
|
1018
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-btn:focus {
|
|
1019
|
+
outline: none;
|
|
1378
1020
|
}
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
background: #685708;
|
|
1382
|
-
border-left: "";
|
|
1383
|
-
color: #fff;
|
|
1021
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1022
|
+
background: transparent;
|
|
1384
1023
|
}
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1024
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
1025
|
+
background: #000;
|
|
1026
|
+
box-shadow: none;
|
|
1027
|
+
border: 2px solid #000;
|
|
1388
1028
|
}
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
border:
|
|
1029
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1030
|
+
background: inherit;
|
|
1031
|
+
border-radius: 0;
|
|
1032
|
+
border-color: #fff;
|
|
1033
|
+
border-style: solid;
|
|
1034
|
+
border-width: 2px;
|
|
1035
|
+
box-shadow: none;
|
|
1393
1036
|
}
|
|
1394
|
-
|
|
1395
|
-
.e-toolbar .e-hor-nav:not(.e-expended-nav):focus {
|
|
1037
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
1396
1038
|
background: #685708;
|
|
1039
|
+
border-radius: 0;
|
|
1397
1040
|
border-color: #fff;
|
|
1398
|
-
border-
|
|
1399
|
-
|
|
1400
|
-
background: inherit;
|
|
1401
|
-
border: 2px solid #fff;
|
|
1041
|
+
border-style: solid;
|
|
1042
|
+
border-width: 2px;
|
|
1402
1043
|
}
|
|
1403
|
-
|
|
1404
|
-
.e-toolbar .e-tbar-btn:active {
|
|
1044
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
1405
1045
|
background: #ffd939;
|
|
1046
|
+
border-radius: 0;
|
|
1047
|
+
box-shadow: none;
|
|
1406
1048
|
border-color: #ffd939;
|
|
1407
|
-
border-
|
|
1408
|
-
|
|
1409
|
-
color: #000;
|
|
1410
|
-
color: #000;
|
|
1049
|
+
border-style: solid;
|
|
1050
|
+
border-width: 2px;
|
|
1411
1051
|
}
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1052
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
1053
|
+
border: solid #fff;
|
|
1054
|
+
border-width: 0 1px 0 0;
|
|
1055
|
+
}
|
|
1056
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay {
|
|
1057
|
+
background: #000;
|
|
1058
|
+
}
|
|
1059
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-pop {
|
|
1060
|
+
background: #000;
|
|
1416
1061
|
}
|
|
1062
|
+
.e-toolbar.e-rtl .e-hor-nav {
|
|
1063
|
+
background: #000;
|
|
1064
|
+
border: solid #fff;
|
|
1065
|
+
border-left: 0;
|
|
1066
|
+
border-width: 0 1px 0 0;
|
|
1067
|
+
}
|
|
1068
|
+
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1069
|
+
background: #685708;
|
|
1070
|
+
color: #fff;
|
|
1071
|
+
}
|