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