@syncfusion/ej2-navigations 16.4.47 → 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 +1419 -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 +5500 -3485
- package/styles/bootstrap-dark.scss +4 -0
- package/styles/bootstrap.css +5417 -3557
- 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 -14
- package/styles/context-menu/_layout.scss +88 -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 +203 -112
- package/styles/context-menu/bootstrap-dark.scss +3 -0
- package/styles/context-menu/bootstrap.css +203 -111
- 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 +204 -113
- package/styles/context-menu/fabric-dark.scss +3 -0
- package/styles/context-menu/fabric.css +202 -110
- 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 +202 -110
- 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 +221 -112
- package/styles/context-menu/material-dark.scss +3 -0
- package/styles/context-menu/material.css +225 -114
- 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 +6281 -4215
- package/styles/fabric-dark.scss +4 -0
- package/styles/fabric.css +5956 -4045
- 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 +6035 -4466
- package/styles/highcontrast.scss +4 -0
- package/styles/material-dark.css +7913 -5586
- package/styles/material-dark.scss +4 -0
- package/styles/material.css +5982 -3808
- package/styles/material.scss +4 -0
- package/styles/menu/_bootstrap-dark-definition.scss +29 -21
- package/styles/menu/_bootstrap-definition.scss +8 -1
- 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 +30 -22
- package/styles/menu/_fabric-definition.scss +8 -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 +9 -2
- package/styles/menu/_highcontrast-light-definition.scss +8 -1
- package/styles/menu/_layout.scss +360 -39
- package/styles/menu/_material-dark-definition.scss +27 -19
- package/styles/menu/_material-definition.scss +7 -0
- package/styles/menu/_tailwind-dark-definition.scss +1 -0
- package/styles/menu/_tailwind-definition.scss +66 -0
- package/styles/menu/_theme.scss +199 -15
- package/styles/menu/bootstrap-dark.css +715 -320
- package/styles/menu/bootstrap.css +696 -302
- 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 +714 -319
- package/styles/menu/fabric.css +694 -299
- 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 +696 -301
- 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 +713 -320
- package/styles/menu/material.css +697 -304
- 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
package/styles/tab/_layout.scss
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
@include export-module('tab-layout') {
|
|
2
|
+
|
|
2
3
|
/*! tab layout */
|
|
3
4
|
|
|
4
|
-
.e-bigger
|
|
5
|
-
|
|
5
|
+
.e-bigger .e-tab,
|
|
6
|
+
.e-tab.e-bigger {
|
|
6
7
|
|
|
7
8
|
.e-tab-header {
|
|
8
9
|
height: $tab-big-height;
|
|
@@ -12,11 +13,6 @@
|
|
|
12
13
|
height: auto;
|
|
13
14
|
min-height: auto;
|
|
14
15
|
|
|
15
|
-
@if $skin-name == 'bootstrap' {
|
|
16
|
-
height: $tab-big-height;
|
|
17
|
-
min-height: $tab-big-height;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
16
|
&:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
21
17
|
&:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
22
18
|
margin: $tab-big-first-item-margin;
|
|
@@ -34,10 +30,8 @@
|
|
|
34
30
|
}
|
|
35
31
|
}
|
|
36
32
|
|
|
37
|
-
.e-indicator + .e-toolbar-item:
|
|
38
|
-
|
|
39
|
-
margin: 1px 2px 0 0;
|
|
40
|
-
}
|
|
33
|
+
.e-indicator + .e-toolbar-item:last-child.e-active {
|
|
34
|
+
margin: $tab-bgr-active-last-margin;
|
|
41
35
|
}
|
|
42
36
|
}
|
|
43
37
|
|
|
@@ -56,7 +50,7 @@
|
|
|
56
50
|
}
|
|
57
51
|
|
|
58
52
|
.e-scroll-nav {
|
|
59
|
-
width:
|
|
53
|
+
width: $tab-bgr-hscroll-items-nav-width;
|
|
60
54
|
}
|
|
61
55
|
}
|
|
62
56
|
|
|
@@ -90,21 +84,17 @@
|
|
|
90
84
|
}
|
|
91
85
|
|
|
92
86
|
.e-text-wrap {
|
|
93
|
-
height: $tab-
|
|
94
|
-
|
|
95
|
-
@if $skin-name == 'fabric' {
|
|
96
|
-
height: $tab-big-height - 2;
|
|
97
|
-
}
|
|
98
|
-
@else if $skin-name == 'highcontrast' {
|
|
99
|
-
height: $tab-big-height - 4;
|
|
100
|
-
}
|
|
87
|
+
height: $tab-bgr-item-textwrap-height;
|
|
101
88
|
}
|
|
102
89
|
|
|
103
90
|
.e-tab-text {
|
|
104
91
|
font-size: $tab-big-font-size;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
92
|
+
margin-bottom: $tab-bgr-item-text-margin-bottom;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.e-ileft:not(.e-icon) .e-tab-icon::before {
|
|
96
|
+
position: relative;
|
|
97
|
+
top: $tab-item-left-icon-before-top;
|
|
108
98
|
}
|
|
109
99
|
|
|
110
100
|
&.e-active {
|
|
@@ -115,43 +105,19 @@
|
|
|
115
105
|
margin: $tab-mob-boot-item-margin;
|
|
116
106
|
}
|
|
117
107
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
top: -.5px;
|
|
122
|
-
}
|
|
108
|
+
&.e-ileft:not(.e-icon) .e-tab-icon::before {
|
|
109
|
+
position: relative;
|
|
110
|
+
top: $tab-item-left-icon-before-top;
|
|
123
111
|
}
|
|
124
112
|
|
|
125
113
|
.e-text-wrap {
|
|
126
|
-
height: $tab-
|
|
114
|
+
height: $tab-bgr-item-textwrap-height;
|
|
127
115
|
margin-top: $tab-active-text-container-margin;
|
|
128
|
-
|
|
129
|
-
@if $skin-name == 'fabric' {
|
|
130
|
-
height: $tab-big-height - 2;
|
|
131
|
-
}
|
|
132
|
-
@else if $skin-name == 'highcontrast' {
|
|
133
|
-
height: $tab-big-height - 4;
|
|
134
|
-
}
|
|
135
116
|
}
|
|
136
117
|
|
|
137
118
|
&.e-ileft .e-text-wrap,
|
|
138
119
|
&.e-iright .e-text-wrap {
|
|
139
|
-
height: $tab-
|
|
140
|
-
|
|
141
|
-
@if $skin-name == 'fabric' {
|
|
142
|
-
height: $tab-big-height - 2;
|
|
143
|
-
}
|
|
144
|
-
@else if $skin-name == 'highcontrast' {
|
|
145
|
-
height: $tab-big-height - 4;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
&.e-ileft .e-text-wrap {
|
|
150
|
-
padding: $tab-big-ileft-active-text-wrap-padding;
|
|
151
|
-
|
|
152
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
153
|
-
padding: 0;
|
|
154
|
-
}
|
|
120
|
+
height: $tab-bgr-item-textwrap-height;
|
|
155
121
|
}
|
|
156
122
|
}
|
|
157
123
|
|
|
@@ -177,6 +143,7 @@
|
|
|
177
143
|
height: $tab-big-icon-container-size;
|
|
178
144
|
min-width: $tab-big-icon-container-size;
|
|
179
145
|
width: $tab-big-icon-container-size;
|
|
146
|
+
line-height: $tab-bgr-icon-line-height;
|
|
180
147
|
}
|
|
181
148
|
|
|
182
149
|
.e-tab-icon,
|
|
@@ -191,6 +158,14 @@
|
|
|
191
158
|
}
|
|
192
159
|
}
|
|
193
160
|
|
|
161
|
+
.e-icon-right {
|
|
162
|
+
margin: 0 0 0 12px;
|
|
163
|
+
|
|
164
|
+
@media screen and (max-width: 480px) {
|
|
165
|
+
margin: $tab-bgr-mob-item-iconright-margin;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
194
169
|
.e-icon-left + .e-tab-text {
|
|
195
170
|
margin: $tab-big-it-text-margin;
|
|
196
171
|
|
|
@@ -222,17 +197,6 @@
|
|
|
222
197
|
.e-close-icon {
|
|
223
198
|
right: $tab-big-close-icon-top-bottom-right;
|
|
224
199
|
}
|
|
225
|
-
|
|
226
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
227
|
-
|
|
228
|
-
.e-text-wrap {
|
|
229
|
-
height: auto;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
&.e-active .e-tab-wrap {
|
|
233
|
-
height: 72px;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
200
|
}
|
|
237
201
|
|
|
238
202
|
&.e-itop .e-tab-text {
|
|
@@ -268,14 +232,7 @@
|
|
|
268
232
|
}
|
|
269
233
|
|
|
270
234
|
.e-text-wrap {
|
|
271
|
-
height: $tab-
|
|
272
|
-
|
|
273
|
-
@if $skin-name == 'fabric' {
|
|
274
|
-
height: $tab-big-pop-item-height - 2;
|
|
275
|
-
}
|
|
276
|
-
@else if $skin-name == 'highcontrast' {
|
|
277
|
-
height: $tab-big-pop-item-height - 4;
|
|
278
|
-
}
|
|
235
|
+
height: $tab-bgr-pop-item-textwrap-height;
|
|
279
236
|
}
|
|
280
237
|
|
|
281
238
|
.e-tab-text + .e-close-icon[style = 'display:block'] {
|
|
@@ -374,12 +331,8 @@
|
|
|
374
331
|
&::before {
|
|
375
332
|
font-size: $tab-big-nav-icon-size;
|
|
376
333
|
line-height: $tab-big-nav-icon-container-size;
|
|
377
|
-
top:
|
|
334
|
+
top: $tab-bgr-scroll-nav-arrow-before-top;
|
|
378
335
|
vertical-align: initial;
|
|
379
|
-
|
|
380
|
-
@if $skin-name == 'highcontrast' {
|
|
381
|
-
top: -2px;
|
|
382
|
-
}
|
|
383
336
|
}
|
|
384
337
|
}
|
|
385
338
|
}
|
|
@@ -416,28 +369,14 @@
|
|
|
416
369
|
@media screen and (max-width: 480px) {
|
|
417
370
|
font-size: $tab-mob-nav-icon-size;
|
|
418
371
|
}
|
|
419
|
-
|
|
420
|
-
@if $skin-name == 'highcontrast' {
|
|
421
|
-
top: -2px;
|
|
422
|
-
}
|
|
423
372
|
}
|
|
424
373
|
|
|
425
374
|
&:hover {
|
|
426
|
-
|
|
427
|
-
line-height: 42px;
|
|
428
|
-
}
|
|
375
|
+
line-height: $tab-bgr-hor-pop-lineheight;
|
|
429
376
|
|
|
430
377
|
&::before {
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
@if $skin-name == 'bootstrap' {
|
|
434
|
-
line-height: 42px;
|
|
435
|
-
top: .5px;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
@if $skin-name == 'highcontrast' {
|
|
439
|
-
top: -2px;
|
|
440
|
-
}
|
|
378
|
+
line-height: $tab-bgr-hor-pop-lineheight;
|
|
379
|
+
top: 0;
|
|
441
380
|
}
|
|
442
381
|
}
|
|
443
382
|
}
|
|
@@ -446,27 +385,16 @@
|
|
|
446
385
|
|
|
447
386
|
.e-popup-up-icon,
|
|
448
387
|
.e-popup-down-icon {
|
|
449
|
-
|
|
450
|
-
line-height: 42px;
|
|
451
|
-
}
|
|
388
|
+
line-height: $tab-bgr-hor-pop-lineheight;
|
|
452
389
|
|
|
453
390
|
&::before {
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
@if $skin-name == 'bootstrap' {
|
|
457
|
-
line-height: 42px;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
@if $skin-name == 'highcontrast' {
|
|
461
|
-
top: -2px;
|
|
462
|
-
}
|
|
391
|
+
line-height: $tab-bgr-hor-pop-lineheight;
|
|
392
|
+
top: 0;
|
|
463
393
|
}
|
|
464
394
|
|
|
465
395
|
&:hover {
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
top: -2px;
|
|
469
|
-
}
|
|
396
|
+
line-height: $tab-bgr-hor-pop-lineheight;
|
|
397
|
+
top: $tab-bgr-hor-focus-pop-hover-top;
|
|
470
398
|
}
|
|
471
399
|
}
|
|
472
400
|
}
|
|
@@ -486,7 +414,7 @@
|
|
|
486
414
|
}
|
|
487
415
|
}
|
|
488
416
|
|
|
489
|
-
|
|
417
|
+
&.e-horizontal-bottom {
|
|
490
418
|
|
|
491
419
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
|
|
492
420
|
margin: $tab-big-even-last-item-margin;
|
|
@@ -506,20 +434,13 @@
|
|
|
506
434
|
padding-top: $tab-big-even-boot-active-item-padding-bottom;
|
|
507
435
|
}
|
|
508
436
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
&.e-itop .e-text-wrap,
|
|
515
|
-
&.e-ibottom .e-text-wrap {
|
|
516
|
-
height: initial;
|
|
517
|
-
}
|
|
437
|
+
.e-close-icon::before {
|
|
438
|
+
top: $tab-bgr-bottom-active-close-top;
|
|
439
|
+
}
|
|
518
440
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
}
|
|
441
|
+
&.e-itop .e-close-icon::before,
|
|
442
|
+
&.e-ibottom .e-close-icon::before {
|
|
443
|
+
top: $tab-bgr-bottom-active-itop-close-top;
|
|
523
444
|
}
|
|
524
445
|
}
|
|
525
446
|
|
|
@@ -531,15 +452,12 @@
|
|
|
531
452
|
margin: $tab-mob-even-last-item-margin;
|
|
532
453
|
}
|
|
533
454
|
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
padding-top: .5px;
|
|
538
|
-
}
|
|
455
|
+
.e-tab-text {
|
|
456
|
+
padding-top: $tab-bgr-bottom-active-text-padding-top;
|
|
457
|
+
}
|
|
539
458
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
}
|
|
459
|
+
.e-close-icon::before {
|
|
460
|
+
top: $tab-bgr-bottom-active-last-close-top;
|
|
543
461
|
}
|
|
544
462
|
}
|
|
545
463
|
|
|
@@ -549,17 +467,6 @@
|
|
|
549
467
|
padding-top: 0;
|
|
550
468
|
}
|
|
551
469
|
|
|
552
|
-
&.e-itop.e-active .e-tab-wrap:focus,
|
|
553
|
-
&.e-ibottom.e-active .e-tab-wrap:focus {
|
|
554
|
-
|
|
555
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
556
|
-
|
|
557
|
-
.e-icon-close::before {
|
|
558
|
-
top: -1px;
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
}
|
|
562
|
-
|
|
563
470
|
&.e-ileft.e-active .e-text-wrap {
|
|
564
471
|
margin: $tab-big-even-ileft-active-text-wrap-margin;
|
|
565
472
|
}
|
|
@@ -567,22 +474,6 @@
|
|
|
567
474
|
&.e-active .e-text-wrap {
|
|
568
475
|
height: $tab-big-even-active-text-container-height;
|
|
569
476
|
padding: 0;
|
|
570
|
-
|
|
571
|
-
@if $skin-name == 'fabric' {
|
|
572
|
-
height: $tab-big-height - 2;
|
|
573
|
-
}
|
|
574
|
-
@else if $skin-name == 'highcontrast' {
|
|
575
|
-
height: $tab-big-height - 4;
|
|
576
|
-
}
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
&.e-active.e-itop .e-text-wrap,
|
|
580
|
-
&.e-active.e-ibottom .e-text-wrap {
|
|
581
|
-
height: $tab-big-height;
|
|
582
|
-
|
|
583
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
584
|
-
height: auto;
|
|
585
|
-
}
|
|
586
477
|
}
|
|
587
478
|
|
|
588
479
|
&.e-itop.e-active .e-text-wrap,
|
|
@@ -591,13 +482,7 @@
|
|
|
591
482
|
}
|
|
592
483
|
|
|
593
484
|
&.e-ileft.e-active {
|
|
594
|
-
|
|
595
|
-
@if $skin-name == 'fabric' {
|
|
596
|
-
height: $tab-big-height - 2;
|
|
597
|
-
}
|
|
598
|
-
@else if $skin-name == 'highcontrast' {
|
|
599
|
-
height: $tab-big-height - 4;
|
|
600
|
-
}
|
|
485
|
+
height: $tab-big-even-active-text-container-height;
|
|
601
486
|
}
|
|
602
487
|
}
|
|
603
488
|
}
|
|
@@ -605,7 +490,7 @@
|
|
|
605
490
|
&.e-vertical {
|
|
606
491
|
max-width: 150px;
|
|
607
492
|
|
|
608
|
-
&[style*= 'overflow: hidden']::before {
|
|
493
|
+
&[style *= 'overflow: hidden']::before {
|
|
609
494
|
bottom: $tab-big-vertical-scroll-nav-top-bottom;
|
|
610
495
|
top: $tab-big-vertical-scroll-nav-top-bottom;
|
|
611
496
|
|
|
@@ -644,12 +529,9 @@
|
|
|
644
529
|
}
|
|
645
530
|
}
|
|
646
531
|
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
min-height: $tab-big-height;
|
|
651
|
-
min-width: $tab-big-height;
|
|
652
|
-
}
|
|
532
|
+
&.e-ileft.e-icon {
|
|
533
|
+
min-height: $tab-bgr-vertical-icon-min-height;
|
|
534
|
+
min-width: $tab-bgr-vertical-icon-min-width;
|
|
653
535
|
}
|
|
654
536
|
}
|
|
655
537
|
|
|
@@ -694,26 +576,14 @@
|
|
|
694
576
|
|
|
695
577
|
&.e-vertical-icon {
|
|
696
578
|
|
|
697
|
-
.e-tab-header {
|
|
579
|
+
> .e-tab-header {
|
|
698
580
|
height: $tab-big-tb-icon-height;
|
|
699
581
|
min-height: $tab-big-tb-icon-height;
|
|
700
582
|
|
|
701
|
-
.e-toolbar-items {
|
|
583
|
+
> .e-toolbar-items {
|
|
702
584
|
height: $tab-big-tb-icon-height;
|
|
703
585
|
}
|
|
704
586
|
|
|
705
|
-
.e-toolbar-item.e-active,
|
|
706
|
-
.e-toolbar-item:not(.e-separator):last-child.e-active {
|
|
707
|
-
|
|
708
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
709
|
-
|
|
710
|
-
.e-text-wrap::before {
|
|
711
|
-
bottom: -10px;
|
|
712
|
-
top: auto;
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
}
|
|
716
|
-
|
|
717
587
|
.e-scroll-nav {
|
|
718
588
|
height: $tab-big-icon-top-bottom-item-height;
|
|
719
589
|
}
|
|
@@ -731,12 +601,6 @@
|
|
|
731
601
|
}
|
|
732
602
|
}
|
|
733
603
|
|
|
734
|
-
@if $skin-name == 'bootstrap' {
|
|
735
|
-
&.e-rtl .e-toolbar-item.e-active {
|
|
736
|
-
margin: 0 0 0 2px;
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
|
|
740
604
|
&.e-vertical-tab {
|
|
741
605
|
|
|
742
606
|
.e-tab-header.e-vertical {
|
|
@@ -763,14 +627,7 @@
|
|
|
763
627
|
}
|
|
764
628
|
|
|
765
629
|
.e-tab-wrap:focus .e-text-wrap {
|
|
766
|
-
height: $tab-
|
|
767
|
-
|
|
768
|
-
@if $skin-name == 'fabric' {
|
|
769
|
-
height: $tab-big-height - 2;
|
|
770
|
-
}
|
|
771
|
-
@else if $skin-name == 'highcontrast' {
|
|
772
|
-
height: $tab-big-height - 4;
|
|
773
|
-
}
|
|
630
|
+
height: $tab-bgr-item-textwrap-height;
|
|
774
631
|
}
|
|
775
632
|
|
|
776
633
|
&.e-itop,
|
|
@@ -798,14 +655,7 @@
|
|
|
798
655
|
height: $tab-big-pop-item-height;
|
|
799
656
|
|
|
800
657
|
.e-text-wrap {
|
|
801
|
-
height: $tab-
|
|
802
|
-
|
|
803
|
-
@if $skin-name == 'fabric' {
|
|
804
|
-
height: $tab-big-pop-item-height - 2;
|
|
805
|
-
}
|
|
806
|
-
@else if $skin-name == 'highcontrast' {
|
|
807
|
-
height: $tab-big-pop-item-height - 4;
|
|
808
|
-
}
|
|
658
|
+
height: $tab-bgr-pop-item-textwrap-height;
|
|
809
659
|
}
|
|
810
660
|
}
|
|
811
661
|
|
|
@@ -816,32 +666,19 @@
|
|
|
816
666
|
}
|
|
817
667
|
}
|
|
818
668
|
|
|
819
|
-
|
|
669
|
+
&.e-horizontal-bottom {
|
|
820
670
|
|
|
821
671
|
.e-toolbar-item {
|
|
822
672
|
|
|
823
673
|
&.e-active {
|
|
824
674
|
|
|
825
675
|
.e-tab-wrap:focus .e-text-wrap {
|
|
826
|
-
height: $tab-
|
|
676
|
+
height: $tab-bgr-item-textwrap-height;
|
|
827
677
|
padding: 0;
|
|
828
|
-
|
|
829
|
-
@if $skin-name == 'fabric' {
|
|
830
|
-
height: $tab-big-height - 2;
|
|
831
|
-
}
|
|
832
|
-
@else if $skin-name == 'highcontrast' {
|
|
833
|
-
height: $tab-big-height - 4;
|
|
834
|
-
}
|
|
835
678
|
}
|
|
836
679
|
|
|
837
680
|
&.e-ileft {
|
|
838
|
-
|
|
839
|
-
@if $skin-name == 'fabric' {
|
|
840
|
-
height: $tab-big-height - 2;
|
|
841
|
-
}
|
|
842
|
-
@else if $skin-name == 'highcontrast' {
|
|
843
|
-
height: $tab-big-height - 4;
|
|
844
|
-
}
|
|
681
|
+
height: $tab-big-even-active-text-container-height;
|
|
845
682
|
}
|
|
846
683
|
}
|
|
847
684
|
}
|
|
@@ -906,22 +743,15 @@
|
|
|
906
743
|
|
|
907
744
|
&.e-rtl {
|
|
908
745
|
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
.e-tab-header {
|
|
912
|
-
|
|
913
|
-
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
|
|
914
|
-
margin: $tab-big-rtl-item-margin;
|
|
915
|
-
}
|
|
746
|
+
.e-tab-header {
|
|
916
747
|
|
|
917
|
-
|
|
748
|
+
&.e-horizontal-bottom {
|
|
918
749
|
|
|
919
|
-
|
|
920
|
-
|
|
750
|
+
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
|
|
751
|
+
margin: $tab-bgr-rtl-bottom-item-margin;
|
|
921
752
|
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
}
|
|
753
|
+
&.e-active {
|
|
754
|
+
margin: $tab-bgr-rtl-bottom-active-margin;
|
|
925
755
|
}
|
|
926
756
|
}
|
|
927
757
|
}
|
|
@@ -951,7 +781,7 @@
|
|
|
951
781
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
952
782
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
953
783
|
margin: $tab-big-alt-first-item-margin;
|
|
954
|
-
padding:
|
|
784
|
+
padding: $tab-bgr-fill-active-item-padding;
|
|
955
785
|
}
|
|
956
786
|
|
|
957
787
|
.e-toolbar-item {
|
|
@@ -960,6 +790,7 @@
|
|
|
960
790
|
height: $tab-big-fill-height;
|
|
961
791
|
margin: $tab-alt-item-margin;
|
|
962
792
|
min-height: $tab-big-fill-height;
|
|
793
|
+
padding: $tab-bgr-fill-active-item-padding;
|
|
963
794
|
|
|
964
795
|
@media screen and (max-width: 480px) {
|
|
965
796
|
height: $tab-mob-fill-height;
|
|
@@ -984,58 +815,35 @@
|
|
|
984
815
|
}
|
|
985
816
|
|
|
986
817
|
.e-text-wrap {
|
|
987
|
-
height: $tab-
|
|
818
|
+
height: $tab-bgr-fill-item-textwrap-height;
|
|
988
819
|
|
|
989
820
|
@media screen and (max-width: 480px) {
|
|
990
821
|
height: $tab-mob-fill-height;
|
|
991
822
|
}
|
|
992
|
-
|
|
993
|
-
@if $skin-name == 'fabric' {
|
|
994
|
-
height: $tab-big-fill-height - 2;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
@if $skin-name == 'highcontrast' {
|
|
998
|
-
height: $tab-big-fill-height - 4;
|
|
999
|
-
}
|
|
1000
823
|
}
|
|
1001
824
|
|
|
1002
825
|
&.e-active {
|
|
1003
|
-
padding: $tab-
|
|
826
|
+
padding: $tab-bgr-fill-active-item-padding;
|
|
1004
827
|
|
|
1005
828
|
.e-tab-wrap {
|
|
1006
829
|
margin-bottom: $tab-fill-big-active-item-wrap-margin-bottom;
|
|
1007
830
|
}
|
|
1008
831
|
|
|
1009
832
|
.e-text-wrap {
|
|
1010
|
-
height: $tab-
|
|
833
|
+
height: $tab-bgr-fill-item-textwrap-height;
|
|
1011
834
|
|
|
1012
835
|
@media screen and (max-width: 480px) {
|
|
1013
836
|
height: $tab-mob-fill-height;
|
|
1014
837
|
}
|
|
1015
|
-
|
|
1016
|
-
@if $skin-name == 'fabric' {
|
|
1017
|
-
height: $tab-big-fill-height - 2;
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
@if $skin-name == 'highcontrast' {
|
|
1021
|
-
height: $tab-big-fill-height - 4;
|
|
1022
|
-
}
|
|
1023
838
|
}
|
|
1024
839
|
|
|
1025
840
|
&.e-ileft .e-text-wrap,
|
|
1026
841
|
&.e-iright .e-text-wrap {
|
|
1027
|
-
height: $tab-fill-
|
|
842
|
+
height: $tab-bgr-fill-active-ileft-textwrap-height;
|
|
1028
843
|
|
|
1029
844
|
@media screen and (max-width: 480px) {
|
|
1030
845
|
height: $tab-fill-big-active-it-text-container-height;
|
|
1031
846
|
}
|
|
1032
|
-
|
|
1033
|
-
@if $skin-name == 'fabric' {
|
|
1034
|
-
height: $tab-big-fill-height - 2;
|
|
1035
|
-
}
|
|
1036
|
-
@else if $skin-name == 'highcontrast' {
|
|
1037
|
-
height: $tab-big-fill-height - 4;
|
|
1038
|
-
}
|
|
1039
847
|
}
|
|
1040
848
|
}
|
|
1041
849
|
|
|
@@ -1066,18 +874,10 @@
|
|
|
1066
874
|
}
|
|
1067
875
|
}
|
|
1068
876
|
|
|
1069
|
-
|
|
877
|
+
&.e-horizontal-bottom {
|
|
1070
878
|
|
|
1071
879
|
.e-toolbar-item.e-active .e-text-wrap {
|
|
1072
880
|
height: $tab-fill-big-even-active-text-height;
|
|
1073
|
-
|
|
1074
|
-
@if $skin-name == 'fabric' {
|
|
1075
|
-
height: $tab-big-fill-height - 2;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
@if $skin-name == 'highcontrast' {
|
|
1079
|
-
height: $tab-big-fill-height - 4;
|
|
1080
|
-
}
|
|
1081
881
|
}
|
|
1082
882
|
|
|
1083
883
|
.e-toolbar-item.e-itop .e-text-wrap,
|
|
@@ -1103,33 +903,13 @@
|
|
|
1103
903
|
}
|
|
1104
904
|
|
|
1105
905
|
.e-tab-wrap:focus .e-text-wrap {
|
|
1106
|
-
height: $tab-
|
|
1107
|
-
|
|
1108
|
-
@if $skin-name == 'fabric' {
|
|
1109
|
-
height: $tab-big-fill-height - 2;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
@if $skin-name == 'highcontrast' {
|
|
1113
|
-
height: $tab-big-fill-height - 4;
|
|
1114
|
-
}
|
|
906
|
+
height: $tab-bgr-fill-focused-wrap-height;
|
|
1115
907
|
}
|
|
1116
908
|
|
|
1117
909
|
&.e-active .e-tab-wrap:focus {
|
|
1118
910
|
|
|
1119
911
|
.e-text-wrap {
|
|
1120
|
-
|
|
1121
|
-
height: $tab-big-fill-height - 2;
|
|
1122
|
-
}
|
|
1123
|
-
@else if $skin-name == 'highcontrast' {
|
|
1124
|
-
height: $tab-big-fill-height - 4;
|
|
1125
|
-
}
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.e-close-icon::before {
|
|
1129
|
-
|
|
1130
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1131
|
-
top: 1px;
|
|
1132
|
-
}
|
|
912
|
+
height: $tab-bgr-fill-focused-wrap-height;
|
|
1133
913
|
}
|
|
1134
914
|
}
|
|
1135
915
|
|
|
@@ -1146,19 +926,6 @@
|
|
|
1146
926
|
}
|
|
1147
927
|
}
|
|
1148
928
|
}
|
|
1149
|
-
|
|
1150
|
-
&:nth-child(even) {
|
|
1151
|
-
|
|
1152
|
-
.e-tab-wrap:focus .e-text-wrap {
|
|
1153
|
-
@if $skin-name == 'fabric' {
|
|
1154
|
-
height: $tab-big-fill-height - 2;
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
@if $skin-name == 'highcontrast' {
|
|
1158
|
-
height: $tab-big-fill-height - 4;
|
|
1159
|
-
}
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
929
|
}
|
|
1163
930
|
}
|
|
1164
931
|
|
|
@@ -1171,7 +938,7 @@
|
|
|
1171
938
|
|
|
1172
939
|
&.e-vertical-icon {
|
|
1173
940
|
|
|
1174
|
-
.e-tab-header {
|
|
941
|
+
> .e-tab-header {
|
|
1175
942
|
height: $tab-big-tb-icon-height - 2;
|
|
1176
943
|
min-height: $tab-big-tb-icon-height - 2;
|
|
1177
944
|
}
|
|
@@ -1185,13 +952,13 @@
|
|
|
1185
952
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
1186
953
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1187
954
|
margin: $tab-big-alt-first-item-margin;
|
|
1188
|
-
padding:
|
|
955
|
+
padding: $tab-bgr-background-active-padding;
|
|
1189
956
|
}
|
|
1190
957
|
|
|
1191
958
|
.e-toolbar-item {
|
|
1192
959
|
|
|
1193
960
|
&:not(.e-separator) {
|
|
1194
|
-
|
|
961
|
+
padding: $tab-bgr-background-active-padding;
|
|
1195
962
|
}
|
|
1196
963
|
|
|
1197
964
|
.e-tab-wrap {
|
|
@@ -1203,35 +970,11 @@
|
|
|
1203
970
|
}
|
|
1204
971
|
|
|
1205
972
|
&.e-active {
|
|
1206
|
-
padding: $tab-
|
|
973
|
+
padding: $tab-bgr-background-active-padding;
|
|
1207
974
|
|
|
1208
975
|
.e-tab-wrap {
|
|
1209
976
|
margin-bottom: $tab-bg-big-active-item-wrap-margin-bottom;
|
|
1210
977
|
}
|
|
1211
|
-
|
|
1212
|
-
.e-text-wrap {
|
|
1213
|
-
height: $tab-big-height;
|
|
1214
|
-
|
|
1215
|
-
@if $skin-name == 'fabric' {
|
|
1216
|
-
height: $tab-big-height - 2;
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
@if $skin-name == 'highcontrast' {
|
|
1220
|
-
height: $tab-big-height - 4;
|
|
1221
|
-
}
|
|
1222
|
-
}
|
|
1223
|
-
}
|
|
1224
|
-
|
|
1225
|
-
&:hover {
|
|
1226
|
-
@if $skin-name == 'highcontrast' {
|
|
1227
|
-
&.e-itop,
|
|
1228
|
-
&.e-ibottom {
|
|
1229
|
-
|
|
1230
|
-
.e-text-wrap {
|
|
1231
|
-
height: auto;
|
|
1232
|
-
}
|
|
1233
|
-
}
|
|
1234
|
-
}
|
|
1235
978
|
}
|
|
1236
979
|
}
|
|
1237
980
|
|
|
@@ -1269,6 +1012,10 @@
|
|
|
1269
1012
|
.e-toolbar-item:not(.e-separator) {
|
|
1270
1013
|
margin: $tab-big-rtl-item-margin;
|
|
1271
1014
|
|
|
1015
|
+
.e-icon-right {
|
|
1016
|
+
margin: $tab-bgr-rtl-icon-right-margin;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1272
1019
|
.e-icon-left + .e-tab-text {
|
|
1273
1020
|
margin: $tab-rtl-big-it-text-margin;
|
|
1274
1021
|
|
|
@@ -1385,7 +1132,7 @@
|
|
|
1385
1132
|
}
|
|
1386
1133
|
}
|
|
1387
1134
|
|
|
1388
|
-
|
|
1135
|
+
.e-tab {
|
|
1389
1136
|
display: block;
|
|
1390
1137
|
position: relative;
|
|
1391
1138
|
|
|
@@ -1393,10 +1140,16 @@
|
|
|
1393
1140
|
display: none;
|
|
1394
1141
|
}
|
|
1395
1142
|
|
|
1143
|
+
&.e-fill-mode .e-content,
|
|
1144
|
+
&.e-fill-mode .e-content .e-item,
|
|
1145
|
+
&.e-fill-mode .e-content .e-item > div,
|
|
1146
|
+
&.e-fill-mode .e-content .e-item > div > .e-blazor-template {
|
|
1147
|
+
height: 100%;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1396
1150
|
.e-tab-header {
|
|
1397
1151
|
height: $tab-nrml-height;
|
|
1398
1152
|
min-height: $tab-nrml-height;
|
|
1399
|
-
user-select: text;
|
|
1400
1153
|
|
|
1401
1154
|
@media screen and (max-width: 480px) {
|
|
1402
1155
|
height: $tab-big-height;
|
|
@@ -1406,10 +1159,7 @@
|
|
|
1406
1159
|
&::before {
|
|
1407
1160
|
content: '';
|
|
1408
1161
|
position: absolute;
|
|
1409
|
-
|
|
1410
|
-
@if $skin-name == 'bootstrap' {
|
|
1411
|
-
display: block;
|
|
1412
|
-
}
|
|
1162
|
+
display: $tab-nrml-hdr-before-display;
|
|
1413
1163
|
}
|
|
1414
1164
|
|
|
1415
1165
|
&:not(.e-vertical) {
|
|
@@ -1427,11 +1177,6 @@
|
|
|
1427
1177
|
min-height: $tab-nrml-height;
|
|
1428
1178
|
position: relative;
|
|
1429
1179
|
|
|
1430
|
-
@if $skin-name == 'bootstrap' {
|
|
1431
|
-
height: $tab-nrml-height;
|
|
1432
|
-
min-height: $tab-nrml-height;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
1180
|
@media screen and (max-width: 480px) {
|
|
1436
1181
|
min-height: $tab-big-height;
|
|
1437
1182
|
}
|
|
@@ -1449,6 +1194,36 @@
|
|
|
1449
1194
|
margin: $tab-mob-last-item-margin;
|
|
1450
1195
|
}
|
|
1451
1196
|
}
|
|
1197
|
+
|
|
1198
|
+
.e-toolbar-item.e-active {
|
|
1199
|
+
position: $tab-nrml-item-active-position;
|
|
1200
|
+
|
|
1201
|
+
&:hover::before {
|
|
1202
|
+
left: $tab-nrml-item-active-hover-before-left;
|
|
1203
|
+
right: $tab-nrml-item-active-hover-before-right;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
&::before {
|
|
1207
|
+
background-color: $tab-nrml-item-active-before-bg-font;
|
|
1208
|
+
bottom: $tab-nrml-item-active-before-bottom;
|
|
1209
|
+
content: $tab-nrml-item-active-before-content;
|
|
1210
|
+
height: $tab-nrml-item-active-before-height;
|
|
1211
|
+
left: $tab-nrml-item-active-before-left;
|
|
1212
|
+
position: $tab-nrml-item-active-before-position;
|
|
1213
|
+
right: $tab-nrml-item-active-before-left;
|
|
1214
|
+
transition: $tab-nrml-item-active-before-transition;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
&::after {
|
|
1218
|
+
color: $tab-nrml-item-active-after-font;
|
|
1219
|
+
content: $tab-nrml-item-active-after-content;
|
|
1220
|
+
display: $tab-nrml-item-active-after-display;
|
|
1221
|
+
font-weight: $tab-nrml-item-active-after-font-weight;
|
|
1222
|
+
height: $tab-nrml-item-active-after-height;
|
|
1223
|
+
overflow: $tab-nrml-item-active-after-overflow;
|
|
1224
|
+
visibility: $tab-nrml-item-active-after-overflow;
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1452
1227
|
}
|
|
1453
1228
|
|
|
1454
1229
|
.e-toolbar-items.e-hscroll {
|
|
@@ -1461,21 +1236,13 @@
|
|
|
1461
1236
|
}
|
|
1462
1237
|
}
|
|
1463
1238
|
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
&[style*= 'overflow: hidden'] .e-toolbar-item:not(.e-separator).e-active {
|
|
1467
|
-
margin-bottom: 0;
|
|
1468
|
-
}
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1472
|
-
.e-hscroll-bar {
|
|
1473
|
-
padding: 0 1px;
|
|
1474
|
-
}
|
|
1239
|
+
.e-hscroll-bar {
|
|
1240
|
+
padding: $tab-nrml-hscroll-bar-padding;
|
|
1475
1241
|
}
|
|
1476
1242
|
|
|
1477
1243
|
.e-scroll-nav {
|
|
1478
|
-
width:
|
|
1244
|
+
width: $tab-nrml-hscroll-items-nav-width;
|
|
1245
|
+
border-radius: $tab-nrml-hscroll-items-bdr-radius;
|
|
1479
1246
|
}
|
|
1480
1247
|
|
|
1481
1248
|
&:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
@@ -1509,11 +1276,11 @@
|
|
|
1509
1276
|
height: $tab-border-width;
|
|
1510
1277
|
left: 0;
|
|
1511
1278
|
right: 0;
|
|
1512
|
-
|
|
1279
|
+
border-radius: $tab-nrml-vertical-indicator-bdr-radius;
|
|
1280
|
+
transition: $tab-nrml-indicator-transition;
|
|
1513
1281
|
}
|
|
1514
1282
|
|
|
1515
1283
|
.e-toolbar-item {
|
|
1516
|
-
user-select: text;
|
|
1517
1284
|
|
|
1518
1285
|
&.e-hidden {
|
|
1519
1286
|
display: none;
|
|
@@ -1547,18 +1314,11 @@
|
|
|
1547
1314
|
align-content: center;
|
|
1548
1315
|
align-items: center;
|
|
1549
1316
|
display: inline-flex;
|
|
1550
|
-
height: $tab-nrml-height;
|
|
1317
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
1551
1318
|
|
|
1552
1319
|
@media screen and (max-width: 480px) {
|
|
1553
1320
|
height: $tab-big-height;
|
|
1554
1321
|
}
|
|
1555
|
-
|
|
1556
|
-
@if $skin-name == 'fabric' {
|
|
1557
|
-
height: $tab-nrml-height - 2;
|
|
1558
|
-
}
|
|
1559
|
-
@else if $skin-name == 'highcontrast' {
|
|
1560
|
-
height: $tab-nrml-height - 4;
|
|
1561
|
-
}
|
|
1562
1322
|
}
|
|
1563
1323
|
|
|
1564
1324
|
.e-tab-text {
|
|
@@ -1567,18 +1327,14 @@
|
|
|
1567
1327
|
font-size: $tab-nrml-font-size;
|
|
1568
1328
|
font-weight: $tab-font-weight;
|
|
1569
1329
|
text-transform: $tab-text-transform;
|
|
1330
|
+
align-self: auto;
|
|
1331
|
+
margin-bottom: $tab-nrml-item-text-margin-bottom;
|
|
1570
1332
|
|
|
1571
1333
|
@media screen and (max-width: 480px) {
|
|
1572
1334
|
font-size: $tab-big-font-size;
|
|
1573
1335
|
}
|
|
1574
1336
|
}
|
|
1575
1337
|
|
|
1576
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1577
|
-
.e-tab-text {
|
|
1578
|
-
align-self: auto;
|
|
1579
|
-
}
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
1338
|
&.e-active {
|
|
1583
1339
|
margin: $tab-nrml-boot-item-margin;
|
|
1584
1340
|
padding-bottom: $tab-nrml-even-boot-active-item-padding-bottom;
|
|
@@ -1588,19 +1344,12 @@
|
|
|
1588
1344
|
}
|
|
1589
1345
|
|
|
1590
1346
|
.e-text-wrap {
|
|
1591
|
-
height: $tab-nrml-
|
|
1347
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
1592
1348
|
margin-top: $tab-active-text-container-margin;
|
|
1593
1349
|
|
|
1594
1350
|
@media screen and (max-width: 480px) {
|
|
1595
1351
|
height: $tab-big-active-text-container-height;
|
|
1596
1352
|
}
|
|
1597
|
-
|
|
1598
|
-
@if $skin-name == 'fabric' {
|
|
1599
|
-
height: $tab-nrml-height - 2;
|
|
1600
|
-
}
|
|
1601
|
-
@else if $skin-name == 'highcontrast' {
|
|
1602
|
-
height: $tab-nrml-height - 4;
|
|
1603
|
-
}
|
|
1604
1353
|
}
|
|
1605
1354
|
|
|
1606
1355
|
.e-tab-wrap {
|
|
@@ -1611,47 +1360,26 @@
|
|
|
1611
1360
|
font-weight: $tab-semi-font-weight;
|
|
1612
1361
|
}
|
|
1613
1362
|
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
}
|
|
1363
|
+
.e-tab-icon::before {
|
|
1364
|
+
top: $tab-item-icon-before-top;
|
|
1365
|
+
left: $tab-item-icon-before-left;
|
|
1618
1366
|
}
|
|
1619
1367
|
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
}
|
|
1368
|
+
.e-icon-top.e-tab-icon::before,
|
|
1369
|
+
.e-icon-bottom.e-tab-icon::before {
|
|
1370
|
+
left: 0;
|
|
1624
1371
|
}
|
|
1625
1372
|
|
|
1626
1373
|
&.e-ileft,
|
|
1627
1374
|
&.e-iright {
|
|
1628
1375
|
|
|
1629
1376
|
.e-text-wrap {
|
|
1630
|
-
height: $tab-nrml-
|
|
1631
|
-
padding:
|
|
1377
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
1378
|
+
padding: 0;
|
|
1632
1379
|
|
|
1633
1380
|
@media screen and (max-width: 480px) {
|
|
1634
1381
|
height: $tab-big-active-it-text-container-height;
|
|
1635
1382
|
}
|
|
1636
|
-
|
|
1637
|
-
@if $skin-name == 'fabric' {
|
|
1638
|
-
height: $tab-nrml-height - 2;
|
|
1639
|
-
padding: 0;
|
|
1640
|
-
}
|
|
1641
|
-
@else if $skin-name == 'highcontrast' {
|
|
1642
|
-
height: $tab-nrml-height - 4;
|
|
1643
|
-
padding: 0;
|
|
1644
|
-
}
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1648
|
-
.e-tab-wrap .e-tab-text {
|
|
1649
|
-
align-self: auto;
|
|
1650
|
-
}
|
|
1651
|
-
|
|
1652
|
-
.e-tab-wrap:focus .e-tab-text {
|
|
1653
|
-
align-self: auto;
|
|
1654
|
-
}
|
|
1655
1383
|
}
|
|
1656
1384
|
}
|
|
1657
1385
|
}
|
|
@@ -1676,13 +1404,7 @@
|
|
|
1676
1404
|
}
|
|
1677
1405
|
|
|
1678
1406
|
.e-close-icon::before {
|
|
1679
|
-
|
|
1680
|
-
top: 1px;
|
|
1681
|
-
}
|
|
1682
|
-
|
|
1683
|
-
@media screen\0 {
|
|
1684
|
-
top: $tab-pop-close-icon-top;
|
|
1685
|
-
}
|
|
1407
|
+
top: 1px;
|
|
1686
1408
|
}
|
|
1687
1409
|
|
|
1688
1410
|
.e-icons.e-tab-icon {
|
|
@@ -1690,6 +1412,7 @@
|
|
|
1690
1412
|
height: $tab-nrml-icon-container-size;
|
|
1691
1413
|
min-width: $tab-nrml-icon-container-size;
|
|
1692
1414
|
width: $tab-nrml-icon-container-size;
|
|
1415
|
+
line-height: $tab-nrml-item-tabicon-line-height;
|
|
1693
1416
|
|
|
1694
1417
|
@media screen and (max-width: 480px) {
|
|
1695
1418
|
height: $tab-mob-icon-container-size;
|
|
@@ -1706,6 +1429,17 @@
|
|
|
1706
1429
|
}
|
|
1707
1430
|
}
|
|
1708
1431
|
|
|
1432
|
+
.e-tab-icon::before {
|
|
1433
|
+
position: relative;
|
|
1434
|
+
top: $tab-item-icon-before-top;
|
|
1435
|
+
left: $tab-item-icon-before-left;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
.e-icon-top.e-tab-icon::before,
|
|
1439
|
+
.e-icon-bottom.e-tab-icon::before {
|
|
1440
|
+
left: 0;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1709
1443
|
&.e-icon {
|
|
1710
1444
|
|
|
1711
1445
|
.e-tab-wrap {
|
|
@@ -1718,6 +1452,14 @@
|
|
|
1718
1452
|
}
|
|
1719
1453
|
}
|
|
1720
1454
|
|
|
1455
|
+
.e-icon-right {
|
|
1456
|
+
margin: 0 0 0 8px;
|
|
1457
|
+
|
|
1458
|
+
@media screen and (max-width: 480px) {
|
|
1459
|
+
margin: $tab-bgr-mob-item-iconright-margin;
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1721
1463
|
.e-icon-left + .e-tab-text {
|
|
1722
1464
|
margin: $tab-nrml-it-text-margin;
|
|
1723
1465
|
|
|
@@ -1760,9 +1502,6 @@
|
|
|
1760
1502
|
&.e-active {
|
|
1761
1503
|
|
|
1762
1504
|
.e-tab-wrap {
|
|
1763
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1764
|
-
height: 62px;
|
|
1765
|
-
}
|
|
1766
1505
|
|
|
1767
1506
|
&:focus {
|
|
1768
1507
|
|
|
@@ -1830,6 +1569,7 @@
|
|
|
1830
1569
|
|
|
1831
1570
|
&:not(.e-separator) {
|
|
1832
1571
|
margin: $tab-pop-item-margin;
|
|
1572
|
+
padding: 0;
|
|
1833
1573
|
}
|
|
1834
1574
|
|
|
1835
1575
|
.e-tab-wrap {
|
|
@@ -1844,15 +1584,8 @@
|
|
|
1844
1584
|
}
|
|
1845
1585
|
|
|
1846
1586
|
.e-text-wrap {
|
|
1847
|
-
height: $tab-nrml-pop-item-height;
|
|
1587
|
+
height: $tab-nrml-pop-item-textwrap-height;
|
|
1848
1588
|
width: 100%;
|
|
1849
|
-
|
|
1850
|
-
@if $skin-name == 'fabric' {
|
|
1851
|
-
height: $tab-nrml-pop-item-height - 2;
|
|
1852
|
-
}
|
|
1853
|
-
@else if $skin-name == 'highcontrast' {
|
|
1854
|
-
height: $tab-nrml-pop-item-height - 4;
|
|
1855
|
-
}
|
|
1856
1589
|
}
|
|
1857
1590
|
|
|
1858
1591
|
.e-tab-text {
|
|
@@ -1868,7 +1601,7 @@
|
|
|
1868
1601
|
top: $tab-nrml-pop-close-top;
|
|
1869
1602
|
}
|
|
1870
1603
|
|
|
1871
|
-
.e-tab-text + .e-close-icon[style= 'display:block'] {
|
|
1604
|
+
.e-tab-text + .e-close-icon[style = 'display:block'] {
|
|
1872
1605
|
padding-right: $tab-nrml-pop-text-padding-right;
|
|
1873
1606
|
|
|
1874
1607
|
@media screen and (max-width: 480px) {
|
|
@@ -1993,16 +1726,8 @@
|
|
|
1993
1726
|
font-size: $tab-nrml-nav-icon-size;
|
|
1994
1727
|
line-height: $tab-nrml-nav-icon-container-size;
|
|
1995
1728
|
position: relative;
|
|
1996
|
-
top:
|
|
1729
|
+
top: $tab-nrml-scroll-nav-arrow-before-top;
|
|
1997
1730
|
vertical-align: initial;
|
|
1998
|
-
|
|
1999
|
-
@if $skin-name == 'fabric' {
|
|
2000
|
-
top: -1px;
|
|
2001
|
-
}
|
|
2002
|
-
|
|
2003
|
-
@if $skin-name == 'highcontrast' {
|
|
2004
|
-
top: -2px;
|
|
2005
|
-
}
|
|
2006
1731
|
}
|
|
2007
1732
|
|
|
2008
1733
|
.e-nav-arrow {
|
|
@@ -2054,42 +1779,20 @@
|
|
|
2054
1779
|
top: 0;
|
|
2055
1780
|
vertical-align: initial;
|
|
2056
1781
|
|
|
2057
|
-
@if $skin-name == 'fabric' {
|
|
2058
|
-
top: -1px;
|
|
2059
|
-
}
|
|
2060
|
-
|
|
2061
|
-
@if $skin-name == 'highcontrast' {
|
|
2062
|
-
top: -2px;
|
|
2063
|
-
}
|
|
2064
|
-
|
|
2065
1782
|
@media screen and (max-width: 480px) {
|
|
2066
1783
|
font-size: $tab-mob-nav-icon-size;
|
|
2067
1784
|
}
|
|
2068
1785
|
}
|
|
2069
1786
|
|
|
2070
1787
|
&:hover {
|
|
2071
|
-
|
|
2072
|
-
line-height: 34px;
|
|
2073
|
-
}
|
|
1788
|
+
line-height: $tab-nrml-hor-pop-lineheight;
|
|
2074
1789
|
|
|
2075
1790
|
&::before {
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
@if $skin-name == 'fabric' {
|
|
2079
|
-
top: -1px;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
@if $skin-name == 'bootstrap' {
|
|
2083
|
-
line-height: 34px;
|
|
2084
|
-
top: 0;
|
|
2085
|
-
|
|
2086
|
-
@media screen and (max-width: 480px) {
|
|
2087
|
-
line-height: 43px;
|
|
2088
|
-
}
|
|
2089
|
-
}
|
|
1791
|
+
line-height: $tab-nrml-hor-pop-lineheight;
|
|
1792
|
+
top: 0;
|
|
2090
1793
|
|
|
2091
|
-
@
|
|
2092
|
-
|
|
1794
|
+
@media screen and (max-width: 480px) {
|
|
1795
|
+
line-height: $tab-nrml-mob-hor-pop-lineheight;
|
|
2093
1796
|
}
|
|
2094
1797
|
}
|
|
2095
1798
|
}
|
|
@@ -2119,51 +1822,63 @@
|
|
|
2119
1822
|
|
|
2120
1823
|
.e-popup-up-icon,
|
|
2121
1824
|
.e-popup-down-icon {
|
|
2122
|
-
|
|
2123
|
-
line-height: 32px;
|
|
2124
|
-
}
|
|
1825
|
+
line-height: $tab-nrml-hor-focus-pop-lineheight;
|
|
2125
1826
|
|
|
2126
1827
|
&::before {
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
@if $skin-name == 'fabric' {
|
|
2130
|
-
top: -1px;
|
|
2131
|
-
}
|
|
1828
|
+
line-height: $tab-nrml-hor-focus-pop-lineheight;
|
|
1829
|
+
top: 0;
|
|
2132
1830
|
|
|
2133
|
-
@
|
|
2134
|
-
line-height:
|
|
2135
|
-
top: 0;
|
|
2136
|
-
|
|
2137
|
-
@media screen and (max-width: 480px) {
|
|
2138
|
-
line-height: 43px;
|
|
2139
|
-
}
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
@if $skin-name == 'highcontrast' {
|
|
2143
|
-
top: -2px;
|
|
1831
|
+
@media screen and (max-width: 480px) {
|
|
1832
|
+
line-height: $tab-nrml-mob-hor-pop-lineheight;
|
|
2144
1833
|
}
|
|
2145
1834
|
}
|
|
2146
1835
|
|
|
2147
1836
|
&:hover {
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
top: -.5px;
|
|
2151
|
-
}
|
|
1837
|
+
line-height: $tab-nrml-hor-focus-pop-lineheight;
|
|
1838
|
+
top: $tab-nrml-hor-focus-pop-hover-top;
|
|
2152
1839
|
}
|
|
2153
1840
|
}
|
|
2154
1841
|
}
|
|
2155
1842
|
}
|
|
2156
1843
|
|
|
2157
|
-
|
|
1844
|
+
&.e-horizontal-bottom {
|
|
1845
|
+
|
|
1846
|
+
.e-toolbar-items .e-toolbar-item.e-active {
|
|
1847
|
+
position: $tab-nrml-item-active-position;
|
|
1848
|
+
|
|
1849
|
+
&:hover::before {
|
|
1850
|
+
left: $tab-nrml-item-active-hover-before-left;
|
|
1851
|
+
right: $tab-nrml-item-active-hover-before-right;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
&::before {
|
|
1855
|
+
background-color: $tab-nrml-item-active-before-bg-font;
|
|
1856
|
+
content: $tab-nrml-item-active-before-content;
|
|
1857
|
+
height: $tab-nrml-item-active-before-height;
|
|
1858
|
+
left: $tab-nrml-item-active-before-left;
|
|
1859
|
+
position: $tab-nrml-item-active-before-position;
|
|
1860
|
+
right: $tab-nrml-item-active-before-left;
|
|
1861
|
+
top: $tab-nrml-item-active-before-bottom;
|
|
1862
|
+
transition: $tab-nrml-item-active-before-transition;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
&::after {
|
|
1866
|
+
color: $tab-nrml-item-active-after-font;
|
|
1867
|
+
content: $tab-nrml-item-active-after-content;
|
|
1868
|
+
display: $tab-nrml-item-active-after-display;
|
|
1869
|
+
font-weight: $tab-nrml-item-active-after-font-weight;
|
|
1870
|
+
height: $tab-nrml-item-active-after-height;
|
|
1871
|
+
overflow: $tab-nrml-item-active-after-overflow;
|
|
1872
|
+
visibility: $tab-nrml-item-active-after-overflow;
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
2158
1875
|
|
|
2159
1876
|
&::before {
|
|
2160
1877
|
bottom: auto;
|
|
2161
1878
|
}
|
|
2162
1879
|
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
margin-top: -1px;
|
|
2166
|
-
}
|
|
1880
|
+
.e-hscroll-bar {
|
|
1881
|
+
margin-top: $tab-nrml-active-item-tabicon-before-top;
|
|
2167
1882
|
}
|
|
2168
1883
|
|
|
2169
1884
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
@@ -2193,49 +1908,18 @@
|
|
|
2193
1908
|
}
|
|
2194
1909
|
|
|
2195
1910
|
.e-text-wrap {
|
|
2196
|
-
height: $tab-nrml-height;
|
|
2197
|
-
padding:
|
|
2198
|
-
|
|
2199
|
-
@if $skin-name == 'fabric' {
|
|
2200
|
-
height: $tab-nrml-height - 2;
|
|
2201
|
-
padding: 0;
|
|
2202
|
-
}
|
|
2203
|
-
@else if $skin-name == 'highcontrast' {
|
|
2204
|
-
height: $tab-nrml-height - 4;
|
|
2205
|
-
padding: 0;
|
|
2206
|
-
}
|
|
1911
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
1912
|
+
padding: 0;
|
|
2207
1913
|
}
|
|
2208
1914
|
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
top: 0;
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
|
-
&.e-itop {
|
|
2216
|
-
|
|
2217
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
2218
|
-
.e-tab-wrap:focus .e-close-icon::before {
|
|
2219
|
-
top: 0;
|
|
2220
|
-
}
|
|
2221
|
-
|
|
2222
|
-
.e-text-wrap {
|
|
2223
|
-
height: auto;
|
|
2224
|
-
}
|
|
2225
|
-
}
|
|
2226
|
-
}
|
|
1915
|
+
.e-text-wrap::before,
|
|
1916
|
+
&:not(.e-separator):last-child .e-text-wrap::before {
|
|
1917
|
+
top: $tab-nrml-bottom-active-before-top;
|
|
2227
1918
|
}
|
|
2228
1919
|
|
|
2229
|
-
&.e-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
.e-tab-wrap .e-tab-text {
|
|
2233
|
-
align-self: auto;
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
.e-tab-wrap:focus .e-tab-text {
|
|
2237
|
-
align-self: auto;
|
|
2238
|
-
}
|
|
1920
|
+
&.e-itop {
|
|
1921
|
+
.e-tab-wrap:focus .e-close-icon::before {
|
|
1922
|
+
top: 0;
|
|
2239
1923
|
}
|
|
2240
1924
|
}
|
|
2241
1925
|
}
|
|
@@ -2263,6 +1947,10 @@
|
|
|
2263
1947
|
}
|
|
2264
1948
|
}
|
|
2265
1949
|
|
|
1950
|
+
&.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
1951
|
+
display: none;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
2266
1954
|
&.e-vertical {
|
|
2267
1955
|
max-width: 150px;
|
|
2268
1956
|
z-index: 1;
|
|
@@ -2274,7 +1962,7 @@
|
|
|
2274
1962
|
top: 0;
|
|
2275
1963
|
}
|
|
2276
1964
|
|
|
2277
|
-
&[style*= 'overflow: hidden']::before {
|
|
1965
|
+
&[style *= 'overflow: hidden']::before {
|
|
2278
1966
|
bottom: $tab-nrml-vertical-scroll-nav-top-bottom;
|
|
2279
1967
|
height: auto;
|
|
2280
1968
|
top: $tab-nrml-vertical-scroll-nav-top-bottom;
|
|
@@ -2287,16 +1975,14 @@
|
|
|
2287
1975
|
|
|
2288
1976
|
.e-indicator {
|
|
2289
1977
|
display: $tab-indicator-display;
|
|
2290
|
-
transition:
|
|
1978
|
+
transition: $tab-nrml-vertical-indicator-transition;
|
|
2291
1979
|
width: 2px;
|
|
2292
|
-
|
|
2293
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
2294
|
-
transition: initial;
|
|
2295
|
-
}
|
|
2296
1980
|
}
|
|
2297
1981
|
|
|
2298
1982
|
.e-toolbar-items {
|
|
2299
1983
|
height: inherit;
|
|
1984
|
+
flex-direction: column;
|
|
1985
|
+
align-items: normal;
|
|
2300
1986
|
|
|
2301
1987
|
&.e-vscroll:not(.e-scroll-device) {
|
|
2302
1988
|
padding: $tab-vscroll-nrml-padding;
|
|
@@ -2342,14 +2028,11 @@
|
|
|
2342
2028
|
}
|
|
2343
2029
|
|
|
2344
2030
|
&.e-ileft.e-icon {
|
|
2031
|
+
min-height: $tab-nrml-vertical-icon-min-height;
|
|
2032
|
+
min-width: $tab-nrml-vertical-icon-min-width;
|
|
2345
2033
|
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
min-width: $tab-nrml-height;
|
|
2349
|
-
|
|
2350
|
-
.e-tab-icon {
|
|
2351
|
-
margin: auto;
|
|
2352
|
-
}
|
|
2034
|
+
.e-tab-icon {
|
|
2035
|
+
margin: $tab-nrml-vertical-tabicon-margin;
|
|
2353
2036
|
}
|
|
2354
2037
|
}
|
|
2355
2038
|
|
|
@@ -2363,7 +2046,7 @@
|
|
|
2363
2046
|
}
|
|
2364
2047
|
|
|
2365
2048
|
.e-toolbar-pop {
|
|
2366
|
-
top: initial !important;
|
|
2049
|
+
top: initial !important; /* stylelint-disable-line declaration-no-important */
|
|
2367
2050
|
}
|
|
2368
2051
|
|
|
2369
2052
|
&.e-vertical-left {
|
|
@@ -2377,6 +2060,36 @@
|
|
|
2377
2060
|
left: auto;
|
|
2378
2061
|
right: 0;
|
|
2379
2062
|
}
|
|
2063
|
+
|
|
2064
|
+
.e-toolbar-items .e-toolbar-item.e-active {
|
|
2065
|
+
|
|
2066
|
+
&:hover::before {
|
|
2067
|
+
bottom: $tab-nrml-item-active-before-bottom;
|
|
2068
|
+
height: $tab-nrml-vertical-hover-before-height;
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
&::before {
|
|
2072
|
+
background-color: $tab-nrml-item-active-before-bg-font;
|
|
2073
|
+
bottom: $tab-nrml-vertical-before-bottom;
|
|
2074
|
+
content: $tab-nrml-item-active-before-content;
|
|
2075
|
+
height: $tab-nrml-vertical-before-height;
|
|
2076
|
+
left: $tab-nrml-vertical-before-left;
|
|
2077
|
+
position: $tab-nrml-item-active-before-position;
|
|
2078
|
+
right: $tab-nrml-item-active-before-bottom;
|
|
2079
|
+
transition: $tab-nrml-vertical-before-transition;
|
|
2080
|
+
width: $tab-nrml-item-active-before-height;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
&::after {
|
|
2084
|
+
color: $tab-nrml-item-active-after-font;
|
|
2085
|
+
content: $tab-nrml-item-active-after-content;
|
|
2086
|
+
display: $tab-nrml-item-active-after-display;
|
|
2087
|
+
font-weight: $tab-nrml-item-active-after-font-weight;
|
|
2088
|
+
height: $tab-nrml-item-active-after-height;
|
|
2089
|
+
overflow: $tab-nrml-item-active-after-overflow;
|
|
2090
|
+
visibility: $tab-nrml-item-active-after-overflow;
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2380
2093
|
}
|
|
2381
2094
|
|
|
2382
2095
|
&.e-vertical-right {
|
|
@@ -2401,6 +2114,36 @@
|
|
|
2401
2114
|
width: auto;
|
|
2402
2115
|
}
|
|
2403
2116
|
}
|
|
2117
|
+
|
|
2118
|
+
.e-toolbar-items .e-toolbar-item.e-active {
|
|
2119
|
+
|
|
2120
|
+
&:hover::before {
|
|
2121
|
+
bottom: $tab-nrml-item-active-before-bottom;
|
|
2122
|
+
height: $tab-nrml-vertical-hover-before-height;
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
&::before {
|
|
2126
|
+
background-color: $tab-nrml-item-active-before-bg-font;
|
|
2127
|
+
bottom: $tab-nrml-vertical-before-bottom;
|
|
2128
|
+
content: $tab-nrml-item-active-before-content;
|
|
2129
|
+
height: $tab-nrml-vertical-before-height;
|
|
2130
|
+
left: $tab-nrml-item-active-before-bottom;
|
|
2131
|
+
position: $tab-nrml-item-active-before-position;
|
|
2132
|
+
right: $tab-nrml-vertical-before-left;
|
|
2133
|
+
transition: $tab-nrml-vertical-before-transition;
|
|
2134
|
+
width: $tab-nrml-item-active-before-height;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
&::after {
|
|
2138
|
+
color: $tab-nrml-item-active-after-font;
|
|
2139
|
+
content: $tab-nrml-item-active-after-content;
|
|
2140
|
+
display: $tab-nrml-item-active-after-display;
|
|
2141
|
+
font-weight: $tab-nrml-item-active-after-font-weight;
|
|
2142
|
+
height: $tab-nrml-item-active-after-height;
|
|
2143
|
+
overflow: $tab-nrml-item-active-after-overflow;
|
|
2144
|
+
visibility: $tab-nrml-item-active-after-overflow;
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2404
2147
|
}
|
|
2405
2148
|
|
|
2406
2149
|
.e-scroll-nav {
|
|
@@ -2539,7 +2282,7 @@
|
|
|
2539
2282
|
}
|
|
2540
2283
|
|
|
2541
2284
|
&.e-progress {
|
|
2542
|
-
overflow
|
|
2285
|
+
overflow: hidden;
|
|
2543
2286
|
}
|
|
2544
2287
|
}
|
|
2545
2288
|
|
|
@@ -2550,54 +2293,65 @@
|
|
|
2550
2293
|
|
|
2551
2294
|
.e-item.e-active {
|
|
2552
2295
|
display: flex;
|
|
2296
|
+
flex: none;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
.e-item,
|
|
2300
|
+
.e-item > :first-child {
|
|
2301
|
+
width: 100%;
|
|
2553
2302
|
}
|
|
2554
2303
|
}
|
|
2555
2304
|
}
|
|
2556
2305
|
|
|
2557
2306
|
&.e-vertical-icon {
|
|
2558
2307
|
|
|
2559
|
-
.e-tab-header {
|
|
2308
|
+
> .e-tab-header {
|
|
2560
2309
|
height: $tab-nrml-tb-icon-height;
|
|
2561
2310
|
min-height: $tab-nrml-tb-icon-height;
|
|
2562
2311
|
|
|
2563
|
-
.e-toolbar-
|
|
2312
|
+
&.e-reorder-active-item .e-toolbar-pop {
|
|
2313
|
+
|
|
2314
|
+
.e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2315
|
+
.e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
|
|
2316
|
+
display: none;
|
|
2317
|
+
}
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
> .e-toolbar-items {
|
|
2564
2321
|
height: $tab-nrml-tb-icon-height;
|
|
2565
2322
|
}
|
|
2566
2323
|
|
|
2567
2324
|
.e-toolbar-item.e-active,
|
|
2568
2325
|
.e-toolbar-item:not(.e-separator):last-child.e-active {
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
&::before {
|
|
2574
|
-
content: none;
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2326
|
+
.e-text-wrap {
|
|
2327
|
+
position: $tab-nrml-vertical-text-position;
|
|
2328
|
+
}
|
|
2577
2329
|
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2330
|
+
.e-text-wrap::before {
|
|
2331
|
+
border: $tab-active-wrap-before-border;
|
|
2332
|
+
content: $tab-active-wrap-before-content;
|
|
2333
|
+
display: none;
|
|
2334
|
+
position: $tab-active-wrap-before-position;
|
|
2335
|
+
top: $tab-active-wrap-before-top;
|
|
2336
|
+
width: $tab-active-wrap-before-width;
|
|
2337
|
+
}
|
|
2584
2338
|
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2339
|
+
.e-tab-wrap::before {
|
|
2340
|
+
content: $tab-nrml-vertical-wrap-before-content;
|
|
2341
|
+
display: $tab-nrml-vertical-wrap-before-display;
|
|
2342
|
+
position: $tab-nrml-vertical-wrap-before-position;
|
|
2343
|
+
top: $tab-nrml-vertical-wrap-before-top;
|
|
2344
|
+
width: $tab-nrml-vertical-wrap-before-width;
|
|
2345
|
+
border: $tab-nrml-vertical-wrap-before-border;
|
|
2592
2346
|
}
|
|
2593
2347
|
}
|
|
2594
2348
|
|
|
2595
2349
|
.e-scroll-nav {
|
|
2596
|
-
height:
|
|
2350
|
+
height: $tab-nrml-icon-top-bottom-item-height;
|
|
2597
2351
|
}
|
|
2598
2352
|
|
|
2599
2353
|
.e-hor-nav {
|
|
2600
|
-
height:
|
|
2354
|
+
height: $tab-nrml-icon-top-bottom-item-height;
|
|
2601
2355
|
|
|
2602
2356
|
.e-popup-up-icon::before,
|
|
2603
2357
|
.e-popup-down-icon::before {
|
|
@@ -2611,10 +2365,7 @@
|
|
|
2611
2365
|
&.e-vertical {
|
|
2612
2366
|
|
|
2613
2367
|
.e-indicator {
|
|
2614
|
-
|
|
2615
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
2616
|
-
width: 3px;
|
|
2617
|
-
}
|
|
2368
|
+
width: $tab-nrml-vertical-indicator-width;
|
|
2618
2369
|
}
|
|
2619
2370
|
|
|
2620
2371
|
.e-toolbar-item.e-active,
|
|
@@ -2634,23 +2385,19 @@
|
|
|
2634
2385
|
}
|
|
2635
2386
|
}
|
|
2636
2387
|
|
|
2637
|
-
|
|
2388
|
+
&.e-horizontal-bottom {
|
|
2638
2389
|
|
|
2639
2390
|
.e-toolbar-item.e-active,
|
|
2640
2391
|
.e-toolbar-item:not(.e-separator):last-child.e-active {
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
top: 0;
|
|
2644
|
-
}
|
|
2392
|
+
.e-tab-wrap::before {
|
|
2393
|
+
top: $tab-nrml-bottom-wrap-before-top;
|
|
2645
2394
|
}
|
|
2646
2395
|
}
|
|
2647
2396
|
}
|
|
2648
2397
|
}
|
|
2649
2398
|
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
margin: 0 0 0 2px;
|
|
2653
|
-
}
|
|
2399
|
+
&.e-rtl .e-tab-header .e-toolbar-item.e-active {
|
|
2400
|
+
margin: $tab-nrml-vertical-rtl-active-margin;
|
|
2654
2401
|
}
|
|
2655
2402
|
|
|
2656
2403
|
&.e-vertical-tab {
|
|
@@ -2669,14 +2416,7 @@
|
|
|
2669
2416
|
height: $tab-nrml-height;
|
|
2670
2417
|
|
|
2671
2418
|
.e-text-wrap {
|
|
2672
|
-
height: $tab-nrml-height;
|
|
2673
|
-
|
|
2674
|
-
@if $skin-name == 'fabric' {
|
|
2675
|
-
height: $tab-nrml-height - 2;
|
|
2676
|
-
}
|
|
2677
|
-
@else if $skin-name == 'highcontrast' {
|
|
2678
|
-
height: $tab-nrml-height - 4;
|
|
2679
|
-
}
|
|
2419
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
2680
2420
|
}
|
|
2681
2421
|
}
|
|
2682
2422
|
|
|
@@ -2705,14 +2445,7 @@
|
|
|
2705
2445
|
height: $tab-nrml-pop-item-height;
|
|
2706
2446
|
|
|
2707
2447
|
.e-text-wrap {
|
|
2708
|
-
height: $tab-nrml-pop-item-height;
|
|
2709
|
-
|
|
2710
|
-
@if $skin-name == 'fabric' {
|
|
2711
|
-
height: $tab-nrml-pop-item-height - 2;
|
|
2712
|
-
}
|
|
2713
|
-
@else if $skin-name == 'highcontrast' {
|
|
2714
|
-
height: $tab-nrml-pop-item-height - 4;
|
|
2715
|
-
}
|
|
2448
|
+
height: $tab-nrml-pop-item-textwrap-height;
|
|
2716
2449
|
}
|
|
2717
2450
|
}
|
|
2718
2451
|
|
|
@@ -2723,31 +2456,15 @@
|
|
|
2723
2456
|
}
|
|
2724
2457
|
}
|
|
2725
2458
|
|
|
2726
|
-
.e-tab-header
|
|
2459
|
+
.e-tab-header .e-horizontal-bottom {
|
|
2727
2460
|
|
|
2728
2461
|
.e-toolbar-item {
|
|
2729
2462
|
|
|
2730
2463
|
&.e-active {
|
|
2731
2464
|
|
|
2732
2465
|
.e-tab-wrap:focus .e-text-wrap {
|
|
2733
|
-
height: $tab-nrml-height;
|
|
2466
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
2734
2467
|
padding: 0;
|
|
2735
|
-
|
|
2736
|
-
@if $skin-name == 'fabric' {
|
|
2737
|
-
height: $tab-nrml-height - 2;
|
|
2738
|
-
}
|
|
2739
|
-
@else if $skin-name == 'highcontrast' {
|
|
2740
|
-
height: $tab-nrml-height - 4;
|
|
2741
|
-
}
|
|
2742
|
-
}
|
|
2743
|
-
|
|
2744
|
-
&.e-ileft {
|
|
2745
|
-
|
|
2746
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
2747
|
-
.e-tab-wrap:focus .e-tab-text {
|
|
2748
|
-
align-self: auto;
|
|
2749
|
-
}
|
|
2750
|
-
}
|
|
2751
2468
|
}
|
|
2752
2469
|
}
|
|
2753
2470
|
|
|
@@ -2927,12 +2644,6 @@
|
|
|
2927
2644
|
min-height: $tab-mob-fill-height;
|
|
2928
2645
|
}
|
|
2929
2646
|
|
|
2930
|
-
@if $skin-name == 'bootstrap' {
|
|
2931
|
-
&::before {
|
|
2932
|
-
display: none;
|
|
2933
|
-
}
|
|
2934
|
-
}
|
|
2935
|
-
|
|
2936
2647
|
.e-indicator {
|
|
2937
2648
|
display: none;
|
|
2938
2649
|
}
|
|
@@ -2948,7 +2659,7 @@
|
|
|
2948
2659
|
&:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
2949
2660
|
&:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
2950
2661
|
margin: $tab-nrml-alt-first-item-margin;
|
|
2951
|
-
padding:
|
|
2662
|
+
padding: $tab-nrml-background-active-padding;
|
|
2952
2663
|
}
|
|
2953
2664
|
}
|
|
2954
2665
|
|
|
@@ -2958,6 +2669,7 @@
|
|
|
2958
2669
|
height: $tab-nrml-fill-height;
|
|
2959
2670
|
margin: $tab-alt-item-margin;
|
|
2960
2671
|
min-height: $tab-nrml-fill-height;
|
|
2672
|
+
padding: $tab-nrml-background-active-padding;
|
|
2961
2673
|
|
|
2962
2674
|
@media screen and (max-width: 480px) {
|
|
2963
2675
|
height: $tab-mob-fill-height;
|
|
@@ -2982,42 +2694,26 @@
|
|
|
2982
2694
|
}
|
|
2983
2695
|
|
|
2984
2696
|
.e-text-wrap {
|
|
2985
|
-
height: $tab-nrml-fill-height;
|
|
2697
|
+
height: $tab-nrml-fill-item-textwrap-height;
|
|
2986
2698
|
|
|
2987
2699
|
@media screen and (max-width: 480px) {
|
|
2988
2700
|
height: $tab-mob-fill-height;
|
|
2989
2701
|
}
|
|
2990
|
-
|
|
2991
|
-
@if $skin-name == 'fabric' {
|
|
2992
|
-
height: $tab-nrml-fill-height - 2;
|
|
2993
|
-
}
|
|
2994
|
-
|
|
2995
|
-
@if $skin-name == 'highcontrast' {
|
|
2996
|
-
height: $tab-nrml-fill-height - 4;
|
|
2997
|
-
}
|
|
2998
2702
|
}
|
|
2999
2703
|
|
|
3000
2704
|
&.e-active {
|
|
3001
|
-
padding: $tab-
|
|
2705
|
+
padding: $tab-nrml-background-active-padding;
|
|
3002
2706
|
|
|
3003
2707
|
.e-tab-wrap {
|
|
3004
2708
|
margin-bottom: $tab-fill-nrml-active-item-wrap-margin-bottom;
|
|
3005
2709
|
}
|
|
3006
2710
|
|
|
3007
2711
|
.e-text-wrap {
|
|
3008
|
-
height: $tab-nrml-fill-height;
|
|
2712
|
+
height: $tab-nrml-fill-item-textwrap-height;
|
|
3009
2713
|
|
|
3010
2714
|
@media screen and (max-width: 480px) {
|
|
3011
2715
|
height: $tab-mob-fill-height;
|
|
3012
2716
|
}
|
|
3013
|
-
|
|
3014
|
-
@if $skin-name == 'fabric' {
|
|
3015
|
-
height: $tab-nrml-fill-height - 2;
|
|
3016
|
-
}
|
|
3017
|
-
|
|
3018
|
-
@if $skin-name == 'highcontrast' {
|
|
3019
|
-
height: $tab-nrml-fill-height - 4;
|
|
3020
|
-
}
|
|
3021
2717
|
}
|
|
3022
2718
|
|
|
3023
2719
|
.e-tab-text {
|
|
@@ -3031,13 +2727,6 @@
|
|
|
3031
2727
|
@media screen and (max-width: 480px) {
|
|
3032
2728
|
height: $tab-fill-big-active-it-text-container-height;
|
|
3033
2729
|
}
|
|
3034
|
-
|
|
3035
|
-
@if $skin-name == 'fabric' {
|
|
3036
|
-
height: $tab-nrml-fill-height - 2;
|
|
3037
|
-
}
|
|
3038
|
-
@else if $skin-name == 'highcontrast' {
|
|
3039
|
-
height: $tab-nrml-fill-height - 4;
|
|
3040
|
-
}
|
|
3041
2730
|
}
|
|
3042
2731
|
}
|
|
3043
2732
|
|
|
@@ -3060,7 +2749,7 @@
|
|
|
3060
2749
|
}
|
|
3061
2750
|
}
|
|
3062
2751
|
|
|
3063
|
-
|
|
2752
|
+
&.e-horizontal-bottom {
|
|
3064
2753
|
|
|
3065
2754
|
.e-toolbar-items:not(.e-tbar-pos) {
|
|
3066
2755
|
|
|
@@ -3086,19 +2775,11 @@
|
|
|
3086
2775
|
padding: 0;
|
|
3087
2776
|
|
|
3088
2777
|
.e-text-wrap {
|
|
3089
|
-
height: $tab-nrml-fill-height;
|
|
2778
|
+
height: $tab-nrml-fill-item-textwrap-height;
|
|
3090
2779
|
|
|
3091
2780
|
@media screen and (max-width: 480px) {
|
|
3092
2781
|
height: $tab-mob-fill-height;
|
|
3093
2782
|
}
|
|
3094
|
-
|
|
3095
|
-
@if $skin-name == 'fabric' {
|
|
3096
|
-
height: $tab-nrml-fill-height - 2;
|
|
3097
|
-
}
|
|
3098
|
-
|
|
3099
|
-
@if $skin-name == 'highcontrast' {
|
|
3100
|
-
height: $tab-nrml-fill-height - 4;
|
|
3101
|
-
}
|
|
3102
2783
|
}
|
|
3103
2784
|
}
|
|
3104
2785
|
|
|
@@ -3139,39 +2820,20 @@
|
|
|
3139
2820
|
height: $tab-focus-nrml-fill-height;
|
|
3140
2821
|
|
|
3141
2822
|
.e-text-wrap {
|
|
3142
|
-
height: $tab-
|
|
3143
|
-
|
|
3144
|
-
@if $skin-name == 'fabric' {
|
|
3145
|
-
height: $tab-nrml-fill-height - 2;
|
|
3146
|
-
}
|
|
3147
|
-
|
|
3148
|
-
@if $skin-name == 'highcontrast' {
|
|
3149
|
-
height: $tab-nrml-fill-height - 4;
|
|
3150
|
-
}
|
|
2823
|
+
height: $tab-nrml-fill-focused-wrap-height;
|
|
3151
2824
|
}
|
|
3152
2825
|
}
|
|
3153
2826
|
|
|
3154
2827
|
&.e-active .e-tab-wrap:focus {
|
|
3155
2828
|
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
@if $skin-name == 'fabric' {
|
|
3159
|
-
height: $tab-nrml-fill-height - 2;
|
|
3160
|
-
}
|
|
3161
|
-
@else if $skin-name == 'highcontrast' {
|
|
3162
|
-
height: $tab-nrml-fill-height - 4;
|
|
3163
|
-
}
|
|
3164
|
-
}
|
|
3165
|
-
|
|
3166
|
-
.e-close-icon::before {
|
|
3167
|
-
top: 1px;
|
|
3168
|
-
}
|
|
2829
|
+
.e-text-wrap {
|
|
2830
|
+
height: $tab-nrml-fill-focused-wrap-height;
|
|
3169
2831
|
}
|
|
3170
2832
|
}
|
|
3171
2833
|
|
|
3172
2834
|
&.e-itop .e-tab-wrap:focus,
|
|
3173
2835
|
&.e-ibottom .e-tab-wrap:focus {
|
|
3174
|
-
height:
|
|
2836
|
+
height: $tab-nrml-focus-fill-icon-top-bottom-item-height;
|
|
3175
2837
|
|
|
3176
2838
|
.e-text-wrap {
|
|
3177
2839
|
height: auto;
|
|
@@ -3193,7 +2855,7 @@
|
|
|
3193
2855
|
|
|
3194
2856
|
&.e-vertical-icon {
|
|
3195
2857
|
|
|
3196
|
-
.e-tab-header {
|
|
2858
|
+
> .e-tab-header {
|
|
3197
2859
|
height: $tab-nrml-tb-icon-height - 2;
|
|
3198
2860
|
min-height: $tab-nrml-tb-icon-height - 2;
|
|
3199
2861
|
}
|
|
@@ -3204,31 +2866,17 @@
|
|
|
3204
2866
|
|
|
3205
2867
|
.e-tab-header {
|
|
3206
2868
|
|
|
3207
|
-
@if $skin-name == 'bootstrap' {
|
|
3208
|
-
&::before {
|
|
3209
|
-
display: none;
|
|
3210
|
-
}
|
|
3211
|
-
}
|
|
3212
|
-
|
|
3213
2869
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
|
|
3214
2870
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
3215
2871
|
margin: $tab-nrml-alt-first-item-margin;
|
|
3216
|
-
padding:
|
|
2872
|
+
padding: $tab-nrml-background-active-padding;
|
|
3217
2873
|
}
|
|
3218
2874
|
|
|
3219
2875
|
.e-toolbar-item {
|
|
3220
2876
|
|
|
3221
2877
|
&:not(.e-separator) {
|
|
3222
|
-
margin:
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
&:hover {
|
|
3226
|
-
@if $skin-name == 'highcontrast' {
|
|
3227
|
-
&.e-itop .e-text-wrap,
|
|
3228
|
-
&.e-ibottom .e-text-wrap {
|
|
3229
|
-
height: auto;
|
|
3230
|
-
}
|
|
3231
|
-
}
|
|
2878
|
+
margin: 0;
|
|
2879
|
+
padding: $tab-nrml-background-active-padding;
|
|
3232
2880
|
}
|
|
3233
2881
|
|
|
3234
2882
|
.e-tab-wrap {
|
|
@@ -3240,37 +2888,22 @@
|
|
|
3240
2888
|
}
|
|
3241
2889
|
|
|
3242
2890
|
&.e-active {
|
|
3243
|
-
padding: $tab-
|
|
2891
|
+
padding: $tab-nrml-background-active-padding;
|
|
3244
2892
|
|
|
3245
2893
|
.e-tab-wrap {
|
|
3246
2894
|
margin-bottom: $tab-bg-nrml-active-item-wrap-margin-bottom;
|
|
3247
2895
|
}
|
|
3248
2896
|
|
|
3249
|
-
.e-text-wrap {
|
|
3250
|
-
height: $tab-nrml-height;
|
|
3251
|
-
|
|
3252
|
-
@if $skin-name == 'fabric' {
|
|
3253
|
-
height: $tab-nrml-height - 2;
|
|
3254
|
-
}
|
|
3255
|
-
|
|
3256
|
-
@if $skin-name == 'highcontrast' {
|
|
3257
|
-
height: $tab-nrml-height - 4;
|
|
3258
|
-
}
|
|
3259
|
-
}
|
|
3260
|
-
|
|
3261
2897
|
.e-tab-text {
|
|
3262
|
-
font-weight: $tab-
|
|
2898
|
+
font-weight: $tab-background-active-text-font-weight;
|
|
3263
2899
|
}
|
|
3264
2900
|
}
|
|
3265
2901
|
}
|
|
3266
2902
|
|
|
3267
2903
|
&.e-vertical {
|
|
3268
2904
|
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
.e-indicator {
|
|
3272
|
-
display: none;
|
|
3273
|
-
}
|
|
2905
|
+
.e-indicator {
|
|
2906
|
+
display: $tab-nrml-background-vertical-indicator-display;
|
|
3274
2907
|
}
|
|
3275
2908
|
|
|
3276
2909
|
.e-toolbar-items {
|
|
@@ -3284,7 +2917,7 @@
|
|
|
3284
2917
|
}
|
|
3285
2918
|
}
|
|
3286
2919
|
|
|
3287
|
-
|
|
2920
|
+
&.e-horizontal-bottom {
|
|
3288
2921
|
|
|
3289
2922
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child.e-active,
|
|
3290
2923
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
|
|
@@ -3304,14 +2937,7 @@
|
|
|
3304
2937
|
&.e-active {
|
|
3305
2938
|
|
|
3306
2939
|
.e-text-wrap {
|
|
3307
|
-
height: $tab-nrml-pop-item-height;
|
|
3308
|
-
|
|
3309
|
-
@if $skin-name == 'fabric' {
|
|
3310
|
-
height: $tab-nrml-pop-item-height - 2;
|
|
3311
|
-
}
|
|
3312
|
-
@else if $skin-name == 'highcontrast' {
|
|
3313
|
-
height: $tab-nrml-pop-item-height - 4;
|
|
3314
|
-
}
|
|
2940
|
+
height: $tab-nrml-pop-item-textwrap-height;
|
|
3315
2941
|
}
|
|
3316
2942
|
}
|
|
3317
2943
|
}
|
|
@@ -3338,15 +2964,13 @@
|
|
|
3338
2964
|
margin: $tab-nrml-rtl-item-margin;
|
|
3339
2965
|
}
|
|
3340
2966
|
|
|
3341
|
-
@if $skin-name == 'bootstrap' {
|
|
3342
|
-
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
|
|
3343
|
-
margin: $tab-nrml-rtl-item-margin;
|
|
3344
|
-
}
|
|
3345
|
-
}
|
|
3346
|
-
|
|
3347
2967
|
.e-toolbar-item:not(.e-separator) {
|
|
3348
2968
|
margin: $tab-nrml-rtl-item-margin;
|
|
3349
2969
|
|
|
2970
|
+
.e-icon-right {
|
|
2971
|
+
margin: $tab-nrml-rtl-icon-right-margin;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
3350
2974
|
.e-icon-left + .e-tab-text {
|
|
3351
2975
|
margin: $tab-rtl-nrml-it-text-margin;
|
|
3352
2976
|
}
|
|
@@ -3371,20 +2995,10 @@
|
|
|
3371
2995
|
}
|
|
3372
2996
|
}
|
|
3373
2997
|
|
|
3374
|
-
|
|
3375
|
-
&:nth-child(even) {
|
|
3376
|
-
|
|
3377
|
-
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
|
|
3378
|
-
margin: 0 0 0 2px;
|
|
2998
|
+
&.e-horizontal-bottom {
|
|
3379
2999
|
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
.e-tab-text {
|
|
3384
|
-
margin-bottom: 0;
|
|
3385
|
-
}
|
|
3386
|
-
}
|
|
3387
|
-
}
|
|
3000
|
+
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
|
|
3001
|
+
margin: $tab-nrml-vertical-rtl-active-margin;
|
|
3388
3002
|
}
|
|
3389
3003
|
}
|
|
3390
3004
|
|
|
@@ -3462,4 +3076,334 @@
|
|
|
3462
3076
|
}
|
|
3463
3077
|
}
|
|
3464
3078
|
}
|
|
3079
|
+
|
|
3080
|
+
.e-tab-clone-element {
|
|
3081
|
+
overflow: visible;
|
|
3082
|
+
z-index: 10000;
|
|
3083
|
+
|
|
3084
|
+
&:not(.e-separator) {
|
|
3085
|
+
height: $tab-nrml-height;
|
|
3086
|
+
margin: $tab-nrml-item-margin;
|
|
3087
|
+
min-height: $tab-nrml-height;
|
|
3088
|
+
min-width: auto;
|
|
3089
|
+
padding: $tab-nrml-item-padding;
|
|
3090
|
+
|
|
3091
|
+
@media screen and (max-width: 480px) {
|
|
3092
|
+
height: $tab-big-height;
|
|
3093
|
+
min-height: $tab-big-height;
|
|
3094
|
+
}
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
.e-tab-wrap {
|
|
3098
|
+
height: $tab-nrml-height;
|
|
3099
|
+
padding: $tab-nrml-wrap-padding;
|
|
3100
|
+
width: 100%;
|
|
3101
|
+
|
|
3102
|
+
@media screen and (max-width: 480px) {
|
|
3103
|
+
height: $tab-big-height;
|
|
3104
|
+
padding: $tab-mob-wrap-padding;
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
|
|
3108
|
+
.e-text-wrap {
|
|
3109
|
+
align-content: center;
|
|
3110
|
+
align-items: center;
|
|
3111
|
+
display: inline-flex;
|
|
3112
|
+
height: $tab-nrml-item-text-wrap-height;
|
|
3113
|
+
|
|
3114
|
+
@media screen and (max-width: 480px) {
|
|
3115
|
+
height: $tab-big-height;
|
|
3116
|
+
}
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
.e-tab-text {
|
|
3120
|
+
display: inherit;
|
|
3121
|
+
font-family: $tab-font-family;
|
|
3122
|
+
font-size: $tab-nrml-font-size;
|
|
3123
|
+
font-weight: $tab-font-weight;
|
|
3124
|
+
text-transform: $tab-text-transform;
|
|
3125
|
+
align-self: auto;
|
|
3126
|
+
|
|
3127
|
+
@media screen and (max-width: 480px) {
|
|
3128
|
+
font-size: $tab-big-font-size;
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
.e-icons.e-close-icon {
|
|
3133
|
+
display: none;
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
.e-close-icon,
|
|
3137
|
+
.e-close-icon::before {
|
|
3138
|
+
font-size: $tab-nrml-close-icon-size;
|
|
3139
|
+
|
|
3140
|
+
@media screen and (max-width: 480px) {
|
|
3141
|
+
font-size: $tab-mob-close-icon-size;
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
.e-close-icon::before {
|
|
3146
|
+
top: 1px;
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
.e-icons.e-tab-icon {
|
|
3150
|
+
display: inline-flex;
|
|
3151
|
+
height: $tab-nrml-icon-container-size;
|
|
3152
|
+
min-width: $tab-nrml-icon-container-size;
|
|
3153
|
+
width: $tab-nrml-icon-container-size;
|
|
3154
|
+
line-height: $tab-nrml-item-tabicon-line-height;
|
|
3155
|
+
|
|
3156
|
+
@media screen and (max-width: 480px) {
|
|
3157
|
+
height: $tab-mob-icon-container-size;
|
|
3158
|
+
width: $tab-mob-icon-container-size;
|
|
3159
|
+
}
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
.e-tab-icon,
|
|
3163
|
+
.e-tab-icon::before {
|
|
3164
|
+
font-size: $tab-nrml-icon-size;
|
|
3165
|
+
|
|
3166
|
+
@media screen and (max-width: 480px) {
|
|
3167
|
+
font-size: $tab-mob-icon-size;
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
&.e-icon {
|
|
3172
|
+
|
|
3173
|
+
.e-tab-wrap {
|
|
3174
|
+
justify-content: center;
|
|
3175
|
+
padding: $tab-nrml-io-wrap-padding;
|
|
3176
|
+
|
|
3177
|
+
@media screen and (max-width: 480px) {
|
|
3178
|
+
padding: $tab-big-wrap-padding;
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
.e-icon-right {
|
|
3184
|
+
margin: 0 0 0 8px;
|
|
3185
|
+
|
|
3186
|
+
@media screen and (max-width: 480px) {
|
|
3187
|
+
margin: $tab-bgr-mob-item-iconright-margin;
|
|
3188
|
+
}
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
.e-icon-left + .e-tab-text {
|
|
3192
|
+
margin: $tab-nrml-it-text-margin;
|
|
3193
|
+
|
|
3194
|
+
@media screen and (max-width: 480px) {
|
|
3195
|
+
margin: $tab-mob-it-text-margin;
|
|
3196
|
+
}
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
&.e-itop,
|
|
3200
|
+
&.e-ibottom {
|
|
3201
|
+
height: $tab-nrml-icon-top-bottom-item-height;
|
|
3202
|
+
|
|
3203
|
+
@media screen and (max-width: 480px) {
|
|
3204
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.e-tab-wrap {
|
|
3208
|
+
align-items: center;
|
|
3209
|
+
display: flex;
|
|
3210
|
+
height: $tab-nrml-icon-top-bottom-item-height;
|
|
3211
|
+
position: relative;
|
|
3212
|
+
|
|
3213
|
+
@media screen and (max-width: 480px) {
|
|
3214
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
&:focus {
|
|
3218
|
+
|
|
3219
|
+
.e-text-wrap {
|
|
3220
|
+
height: auto;
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
.e-text-wrap {
|
|
3226
|
+
display: block;
|
|
3227
|
+
height: auto;
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
.e-close-icon {
|
|
3231
|
+
position: absolute;
|
|
3232
|
+
right: $tab-nrml-close-icon-top-bottom-right;
|
|
3233
|
+
top: calc(50% - 6px);
|
|
3234
|
+
|
|
3235
|
+
@media screen and (max-width: 480px) {
|
|
3236
|
+
right: $tab-mob-close-icon-top-bottom-right;
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
&.e-itop .e-tab-text {
|
|
3242
|
+
margin: $tab-nrml-icon-top-margin;
|
|
3243
|
+
|
|
3244
|
+
@media screen and (max-width: 480px) {
|
|
3245
|
+
margin: $tab-big-icon-top-margin;
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3249
|
+
&.e-ibottom .e-tab-text {
|
|
3250
|
+
margin: $tab-nrml-icon-bottom-margin;
|
|
3251
|
+
|
|
3252
|
+
@media screen and (max-width: 480px) {
|
|
3253
|
+
margin: $tab-big-icon-bottom-margin;
|
|
3254
|
+
}
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
.e-tab-icon.e-icon-top,
|
|
3258
|
+
.e-tab-icon.e-icon-bottom {
|
|
3259
|
+
align-items: center;
|
|
3260
|
+
display: flex;
|
|
3261
|
+
flex-direction: column;
|
|
3262
|
+
justify-content: center;
|
|
3263
|
+
margin: auto;
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
&.e-close-show {
|
|
3267
|
+
|
|
3268
|
+
.e-icons.e-close-icon {
|
|
3269
|
+
align-items: center;
|
|
3270
|
+
align-self: center;
|
|
3271
|
+
display: inline-flex;
|
|
3272
|
+
|
|
3273
|
+
@media screen and (max-width: 480px) {
|
|
3274
|
+
display: none;
|
|
3275
|
+
}
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
.e-toolbar-item.e-itop .e-text-wrap,
|
|
3279
|
+
.e-toolbar-item.e-ibottom .e-text-wrap {
|
|
3280
|
+
margin-right: $tab-nrml-text-container-margin-right;
|
|
3281
|
+
}
|
|
3282
|
+
}
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
.e-bigger .e-tab-clone-element {
|
|
3286
|
+
|
|
3287
|
+
&:not(.e-separator) {
|
|
3288
|
+
height: $tab-big-height;
|
|
3289
|
+
margin: $tab-big-item-margin;
|
|
3290
|
+
min-height: $tab-big-height;
|
|
3291
|
+
min-width: auto;
|
|
3292
|
+
padding: $tab-big-item-padding;
|
|
3293
|
+
|
|
3294
|
+
@media screen and (max-width: 480px) {
|
|
3295
|
+
margin: $tab-nrml-item-margin;
|
|
3296
|
+
}
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
&:not(.e-separator).e-itop,
|
|
3300
|
+
&:not(.e-separator).e-ibottom {
|
|
3301
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3302
|
+
min-height: $tab-big-icon-top-bottom-item-height;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.e-tab-wrap {
|
|
3306
|
+
height: $tab-big-height;
|
|
3307
|
+
padding: $tab-big-wrap-padding;
|
|
3308
|
+
|
|
3309
|
+
@media screen and (max-width: 480px) {
|
|
3310
|
+
padding: $tab-mob-wrap-padding;
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
.e-text-wrap {
|
|
3315
|
+
height: $tab-bgr-item-textwrap-height;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.e-tab-text {
|
|
3319
|
+
font-size: $tab-big-font-size;
|
|
3320
|
+
align-self: auto;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
.e-icons.e-close-icon {
|
|
3324
|
+
cursor: pointer;
|
|
3325
|
+
margin: $tab-big-close-icon-margin;
|
|
3326
|
+
|
|
3327
|
+
@media screen and (max-width: 480px) {
|
|
3328
|
+
margin: $tab-mob-close-icon-margin;
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
.e-icons.e-close-icon,
|
|
3333
|
+
.e-close-icon::before {
|
|
3334
|
+
font-size: $tab-big-close-icon-size;
|
|
3335
|
+
|
|
3336
|
+
@media screen and (max-width: 480px) {
|
|
3337
|
+
font-size: $tab-mob-close-icon-size;
|
|
3338
|
+
}
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3341
|
+
.e-icons.e-tab-icon {
|
|
3342
|
+
height: $tab-big-icon-container-size;
|
|
3343
|
+
min-width: $tab-big-icon-container-size;
|
|
3344
|
+
width: $tab-big-icon-container-size;
|
|
3345
|
+
line-height: $tab-bgr-icon-line-height;
|
|
3346
|
+
}
|
|
3347
|
+
|
|
3348
|
+
.e-tab-icon,
|
|
3349
|
+
.e-tab-icon::before {
|
|
3350
|
+
font-size: $tab-big-icon-size;
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
&.e-icon {
|
|
3354
|
+
|
|
3355
|
+
.e-tab-wrap {
|
|
3356
|
+
padding: $tab-big-io-wrap-padding;
|
|
3357
|
+
}
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
.e-icon-right {
|
|
3361
|
+
margin: 0 0 0 12px;
|
|
3362
|
+
|
|
3363
|
+
@media screen and (max-width: 480px) {
|
|
3364
|
+
margin: $tab-bgr-mob-item-iconright-margin;
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
.e-icon-left + .e-tab-text {
|
|
3369
|
+
margin: $tab-big-it-text-margin;
|
|
3370
|
+
|
|
3371
|
+
@media screen and (max-width: 480px) {
|
|
3372
|
+
margin: $tab-mob-it-text-margin;
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3376
|
+
&.e-itop,
|
|
3377
|
+
&.e-ibottom {
|
|
3378
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3379
|
+
|
|
3380
|
+
.e-tab-wrap {
|
|
3381
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3382
|
+
|
|
3383
|
+
&:focus .e-text-wrap {
|
|
3384
|
+
height: auto;
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
|
|
3388
|
+
&.e-active .e-tab-wrap {
|
|
3389
|
+
height: $tab-big-icon-top-bottom-item-height;
|
|
3390
|
+
|
|
3391
|
+
&:focus .e-text-wrap {
|
|
3392
|
+
height: auto;
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
.e-close-icon {
|
|
3397
|
+
right: $tab-big-close-icon-top-bottom-right;
|
|
3398
|
+
}
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
&.e-itop .e-tab-text {
|
|
3402
|
+
margin: $tab-big-icon-top-margin;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
&.e-ibottom .e-tab-text {
|
|
3406
|
+
margin: $tab-big-icon-bottom-margin;
|
|
3407
|
+
}
|
|
3408
|
+
}
|
|
3465
3409
|
}
|