@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/_theme.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@include export-module('tab-theme') {
|
|
2
|
+
|
|
2
3
|
/*! tab theme */
|
|
3
|
-
|
|
4
|
+
.e-tab {
|
|
4
5
|
background: $tab-bg-color;
|
|
5
6
|
border: $tab-border;
|
|
6
7
|
|
|
@@ -8,33 +9,26 @@
|
|
|
8
9
|
background: inherit;
|
|
9
10
|
border: 0;
|
|
10
11
|
border-radius: 0;
|
|
12
|
+
box-shadow: none;
|
|
13
|
+
font-weight: $tab-header-font-weight;
|
|
14
|
+
border-bottom: $tab-header-border-bottom;
|
|
11
15
|
|
|
12
|
-
|
|
16
|
+
&::before {
|
|
17
|
+
border-color: $tab-header-before-border-color;
|
|
18
|
+
border-style: solid;
|
|
19
|
+
}
|
|
13
20
|
|
|
21
|
+
&:not(.e-vertical) {
|
|
14
22
|
&::before {
|
|
15
|
-
border-
|
|
16
|
-
border-style: solid;
|
|
23
|
+
border-width: $tab-header-before-border-width;
|
|
17
24
|
}
|
|
18
|
-
|
|
19
|
-
&:not(.e-vertical) {
|
|
20
|
-
|
|
21
|
-
&::before {
|
|
22
|
-
border-width: 0 0 1px;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&[style*= 'overflow: hidden'] {
|
|
27
|
-
border: 0;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
@else {
|
|
31
|
-
border-bottom: $tab-hdr-border;
|
|
32
25
|
}
|
|
33
26
|
|
|
34
27
|
&:not(.e-vertical) {
|
|
35
28
|
|
|
36
29
|
.e-toolbar-item.e-active {
|
|
37
|
-
border-bottom: $tab-
|
|
30
|
+
border-bottom: $tab-item-active-border-bottom;
|
|
31
|
+
margin-bottom: 0;
|
|
38
32
|
}
|
|
39
33
|
}
|
|
40
34
|
|
|
@@ -50,23 +44,21 @@
|
|
|
50
44
|
background: inherit;
|
|
51
45
|
border: $tab-item-border;
|
|
52
46
|
|
|
47
|
+
&:hover {
|
|
48
|
+
background: $tab-item-hover-bg;
|
|
49
|
+
}
|
|
50
|
+
|
|
53
51
|
.e-ripple-element {
|
|
54
52
|
background: $tab-ripple-bg-color;
|
|
55
53
|
}
|
|
56
54
|
|
|
57
55
|
.e-tab-wrap {
|
|
58
|
-
border-radius: $tab-item-
|
|
56
|
+
border-radius: $tab-active-item-border-radius;
|
|
59
57
|
color: $tab-text-color;
|
|
60
|
-
|
|
61
|
-
@if $skin-name == 'fabric' {
|
|
62
|
-
border: 1px solid $tab-wrap-border-color;
|
|
63
|
-
}
|
|
64
|
-
@else if $skin-name == 'highcontrast' {
|
|
65
|
-
border: 2px solid $tab-wrap-border-color;
|
|
66
|
-
}
|
|
58
|
+
border: $tab-item-wrap-border;
|
|
67
59
|
|
|
68
60
|
.e-tab-icon {
|
|
69
|
-
color: $tab-
|
|
61
|
+
color: $tab-wrap-comb-icon-color;
|
|
70
62
|
}
|
|
71
63
|
|
|
72
64
|
@media screen and (max-width: 480px) {
|
|
@@ -83,6 +75,8 @@
|
|
|
83
75
|
|
|
84
76
|
&:hover {
|
|
85
77
|
background: $tab-item-hover-bg-color;
|
|
78
|
+
border: $tab-item-wrap-hover-border;
|
|
79
|
+
border-radius: $tab-item-wrap-hover-border-radius;
|
|
86
80
|
|
|
87
81
|
@media screen and (max-width: 480px) {
|
|
88
82
|
background: $tab-mob-item-hover-bg-color;
|
|
@@ -100,7 +94,7 @@
|
|
|
100
94
|
border-radius: $tab-top-active-item-border-radius;
|
|
101
95
|
|
|
102
96
|
.e-tab-wrap {
|
|
103
|
-
|
|
97
|
+
border: $tab-item-active-tabwrap-border;
|
|
104
98
|
&:hover {
|
|
105
99
|
|
|
106
100
|
.e-tab-text,
|
|
@@ -111,17 +105,15 @@
|
|
|
111
105
|
}
|
|
112
106
|
|
|
113
107
|
.e-text-wrap {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
width: 100%;
|
|
124
|
-
}
|
|
108
|
+
position: $tab-active-wrap-position;
|
|
109
|
+
|
|
110
|
+
&::before {
|
|
111
|
+
border: $tab-active-wrap-before-border;
|
|
112
|
+
content: $tab-active-wrap-before-content;
|
|
113
|
+
display: $tab-active-wrap-before-display;
|
|
114
|
+
position: $tab-active-wrap-before-position;
|
|
115
|
+
top: $tab-active-wrap-before-top;
|
|
116
|
+
width: $tab-active-wrap-before-width;
|
|
125
117
|
}
|
|
126
118
|
}
|
|
127
119
|
|
|
@@ -167,6 +159,10 @@
|
|
|
167
159
|
}
|
|
168
160
|
}
|
|
169
161
|
|
|
162
|
+
&.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
163
|
+
border: $tab-active-item-hide-border;
|
|
164
|
+
}
|
|
165
|
+
|
|
170
166
|
.e-toolbar-pop {
|
|
171
167
|
background: $tab-pop-bg-color;
|
|
172
168
|
border: $tab-pop-border;
|
|
@@ -193,34 +189,44 @@
|
|
|
193
189
|
|
|
194
190
|
&:hover {
|
|
195
191
|
background: $tab-hover-bg-color;
|
|
192
|
+
border: $tab-pop-wrap-hover-border;
|
|
193
|
+
border-radius: $tab-pop-wrap-hover-border-radius;
|
|
196
194
|
|
|
197
|
-
|
|
198
|
-
|
|
195
|
+
.e-tab-text,
|
|
196
|
+
.e-tab-icon,
|
|
197
|
+
.e-close-icon {
|
|
198
|
+
color: $tab-hover-text-color;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
.e-tab-icon,
|
|
202
|
+
.e-close-icon {
|
|
203
|
+
color: $tab-pop-wrap-hover-close-color;
|
|
203
204
|
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&:active {
|
|
208
|
+
background: $tab-active-bg-color;
|
|
209
|
+
border-color: $tab-pop-wrap-active-border-color;
|
|
204
210
|
|
|
205
211
|
.e-tab-text,
|
|
206
212
|
.e-tab-icon {
|
|
207
|
-
color: $tab-
|
|
213
|
+
color: $tab-pop-wrap-active-icon-font;
|
|
208
214
|
}
|
|
209
215
|
}
|
|
216
|
+
}
|
|
210
217
|
|
|
211
|
-
|
|
212
|
-
background: $tab-active-bg-color;
|
|
218
|
+
&.e-active .e-tab-wrap {
|
|
213
219
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
220
|
+
.e-tab-text,
|
|
221
|
+
.e-tab-icon {
|
|
222
|
+
color: $tab-active-text-color;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
218
225
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
}
|
|
226
|
+
&.e-disable.e-overlay {
|
|
227
|
+
.e-tab-text,
|
|
228
|
+
.e-tab-icon {
|
|
229
|
+
color: $tab-disable-text-color;
|
|
224
230
|
}
|
|
225
231
|
}
|
|
226
232
|
}
|
|
@@ -228,90 +234,61 @@
|
|
|
228
234
|
|
|
229
235
|
.e-scroll-nav,
|
|
230
236
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav {
|
|
231
|
-
background:
|
|
237
|
+
background: $tab-scroll-nav-bg;
|
|
232
238
|
border: 0;
|
|
233
239
|
|
|
234
240
|
.e-nav-arrow {
|
|
235
|
-
color: $tab-nav-
|
|
236
|
-
|
|
237
|
-
@if $skin-name == 'fabric' {
|
|
238
|
-
border: 1px solid $tab-wrap-border-color;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
@if $skin-name == 'highcontrast' {
|
|
242
|
-
border: 2px solid $tab-wrap-border-color;
|
|
243
|
-
}
|
|
241
|
+
color: $tab-scroll-nav-arrow-font;
|
|
242
|
+
border: $tab-item-active-wrap-border;
|
|
244
243
|
|
|
245
244
|
&:hover {
|
|
246
245
|
background: $tab-hover-nav-bg-color;
|
|
247
246
|
color: $tab-hover-nav-icon-color;
|
|
248
|
-
|
|
249
|
-
@if $skin-name == 'highcontrast' {
|
|
250
|
-
border: 2px solid $tab-wrap-hover-border-color;
|
|
251
|
-
}
|
|
247
|
+
border: $tab-scroll-arrow-hover-border;
|
|
252
248
|
}
|
|
253
249
|
|
|
254
250
|
&:active {
|
|
255
251
|
box-shadow: none;
|
|
256
|
-
|
|
257
|
-
@if $skin-name == 'fabric' {
|
|
258
|
-
border: 1px solid $tab-wrap-active-border-color;
|
|
259
|
-
}
|
|
252
|
+
border: $tab-scroll-arrow-active-border;
|
|
260
253
|
}
|
|
261
254
|
}
|
|
262
255
|
|
|
263
256
|
&:focus {
|
|
257
|
+
background: $tab-scroll-nav-bg;
|
|
264
258
|
|
|
265
259
|
.e-nav-arrow {
|
|
266
260
|
background: $tab-nav-focus-bg-color;
|
|
267
261
|
color: $tab-nav-focus-icon-color;
|
|
268
|
-
|
|
269
|
-
@if $skin-name == 'fabric' {
|
|
270
|
-
border: 1px solid $tab-wrap-focus-border-color;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
@if $skin-name == 'highcontrast' {
|
|
274
|
-
border: 2px solid $tab-wrap-focus-border-color;
|
|
275
|
-
}
|
|
262
|
+
border: $tab-scroll-focus-arrow-border;
|
|
276
263
|
|
|
277
264
|
&:hover {
|
|
278
265
|
background: $tab-hover-nav-bg-color;
|
|
279
266
|
color: $tab-hover-nav-icon-color;
|
|
280
|
-
|
|
281
|
-
@if $skin-name == 'highcontrast' {
|
|
282
|
-
border: 2px solid $tab-nav-focus-hover-border-color;
|
|
283
|
-
}
|
|
284
267
|
}
|
|
285
268
|
|
|
286
269
|
&:active {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
color: $tab-nav-focus-active-color;
|
|
291
|
-
}
|
|
270
|
+
background: $tab-scroll-focus-arrow-active-bg;
|
|
271
|
+
border-color: $tab-scroll-focus-arrow-active-border-color;
|
|
272
|
+
color: $tab-scroll-focus-arrow-active-color;
|
|
292
273
|
}
|
|
293
274
|
}
|
|
294
275
|
}
|
|
295
276
|
|
|
296
277
|
&:active {
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
}
|
|
278
|
+
box-shadow: none;
|
|
279
|
+
background: $tab-scroll-nav-bg;
|
|
280
|
+
border: $tab-scroll-active-border;
|
|
301
281
|
}
|
|
302
282
|
|
|
303
283
|
&.e-overlay {
|
|
304
284
|
|
|
305
285
|
.e-nav-arrow {
|
|
306
|
-
color: $tab-
|
|
286
|
+
color: $tab-scroll-overlay-arrow-color;
|
|
307
287
|
|
|
308
288
|
&:hover {
|
|
309
|
-
color: $tab-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
background: $tab-nav-disable-hover-bg-color;
|
|
313
|
-
border-color: $tab-nav-disable-hover-border-color;
|
|
314
|
-
}
|
|
289
|
+
color: $tab-scroll-overlay-arrow-hover-color;
|
|
290
|
+
background: $tab-scroll-overlay-arrow-hover-bg;
|
|
291
|
+
border-color: $tab-scroll-overlay-arrow-hover-border-color;
|
|
315
292
|
}
|
|
316
293
|
}
|
|
317
294
|
}
|
|
@@ -325,27 +302,12 @@
|
|
|
325
302
|
.e-popup-up-icon,
|
|
326
303
|
.e-popup-down-icon {
|
|
327
304
|
color: $tab-pop-icon-color;
|
|
328
|
-
|
|
329
|
-
@if $skin-name == 'fabric' {
|
|
330
|
-
border: 1px solid $tab-wrap-border-color;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
@if $skin-name == 'highcontrast' {
|
|
334
|
-
border: 2px solid $tab-wrap-border-color;
|
|
335
|
-
}
|
|
305
|
+
border: $tab-pop-icon-border;
|
|
336
306
|
|
|
337
307
|
&:hover {
|
|
338
308
|
background: $tab-pop-icon-hover-bg-color;
|
|
339
|
-
border: $tab-pop-icon-hover-border;
|
|
309
|
+
border: $tab-pop-up-icon-hover-border;
|
|
340
310
|
border-radius: $tab-active-item-border-radius;
|
|
341
|
-
|
|
342
|
-
@if $skin-name == 'fabric' {
|
|
343
|
-
border: 1px solid $tab-wrap-hover-border-color;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
@if $skin-name == 'highcontrast' {
|
|
347
|
-
border: 2px solid $tab-wrap-hover-border-color;
|
|
348
|
-
}
|
|
349
311
|
}
|
|
350
312
|
}
|
|
351
313
|
|
|
@@ -357,61 +319,33 @@
|
|
|
357
319
|
}
|
|
358
320
|
|
|
359
321
|
&:focus {
|
|
360
|
-
|
|
322
|
+
background: $tab-pop-focus-bg;
|
|
361
323
|
.e-popup-up-icon,
|
|
362
324
|
.e-popup-down-icon {
|
|
363
325
|
background: $tab-nav-focus-bg-color;
|
|
364
|
-
border: $tab-pop-icon-focus-border;
|
|
326
|
+
border: $tab-pop-up-icon-focus-border;
|
|
365
327
|
border-radius: $tab-active-item-border-radius;
|
|
366
328
|
color: $tab-nav-focus-icon-color;
|
|
367
329
|
|
|
368
|
-
@if $skin-name == 'fabric' {
|
|
369
|
-
border: 1px solid $tab-nav-focus-border-color;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
@if $skin-name == 'bootstrap' {
|
|
373
|
-
background: $tab-nav-focus-bg-color;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
@if $skin-name == 'highcontrast' {
|
|
377
|
-
border: 2px solid $tab-wrap-focus-border-color;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
330
|
&:hover {
|
|
381
331
|
background: $tab-pop-icon-hover-bg-color;
|
|
382
|
-
border: $tab-pop-icon-hover-border;
|
|
332
|
+
border: $tab-pop-up-down-icon-hover-border;
|
|
383
333
|
border-radius: $tab-active-item-border-radius;
|
|
384
|
-
|
|
385
|
-
@if $skin-name == 'fabric' {
|
|
386
|
-
border: 1px solid $tab-nav-focus-hover-border-color;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
@if $skin-name == 'highcontrast' {
|
|
390
|
-
border: 2px solid $tab-nav-focus-hover-border-color;
|
|
391
|
-
}
|
|
392
334
|
}
|
|
393
335
|
|
|
394
336
|
&:active {
|
|
395
|
-
background: $tab-pop-icon-
|
|
396
|
-
|
|
337
|
+
background: $tab-pop-focus-icon-active-bg;
|
|
338
|
+
color: $tab-pop-focus-icon-active-color;
|
|
339
|
+
border: $tab-pop-up-icon-active-border;
|
|
397
340
|
border-radius: $tab-active-item-border-radius;
|
|
398
341
|
box-shadow: $tab-pop-border-box-shadow;
|
|
399
|
-
|
|
400
|
-
@if $skin-name == 'fabric' {
|
|
401
|
-
border: 1px solid $tab-nav-focus-active-border-color;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
@if $skin-name == 'highcontrast' {
|
|
405
|
-
background: $tab-nav-focus-active-bg-color;
|
|
406
|
-
border: 2px solid $tab-nav-focus-active-border-color;
|
|
407
|
-
color: $tab-nav-focus-active-color;
|
|
408
|
-
}
|
|
409
342
|
}
|
|
410
343
|
}
|
|
411
344
|
}
|
|
412
345
|
|
|
413
346
|
&:hover {
|
|
414
347
|
border: 0;
|
|
348
|
+
background: $tab-pop-hover-bg;
|
|
415
349
|
|
|
416
350
|
&:active {
|
|
417
351
|
background: transparent;
|
|
@@ -419,66 +353,64 @@
|
|
|
419
353
|
}
|
|
420
354
|
|
|
421
355
|
&:active {
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
box-shadow: $tab-nav-active-box-shadow;
|
|
425
|
-
}
|
|
356
|
+
box-shadow: none;
|
|
357
|
+
background: $tab-pop-focus-bg;
|
|
426
358
|
}
|
|
427
359
|
|
|
428
360
|
&.e-nav-active {
|
|
429
|
-
background:
|
|
430
|
-
border:
|
|
361
|
+
background: $tab-pop-nav-active-bg;
|
|
362
|
+
border: $tab-pop-nav-active-border;
|
|
431
363
|
box-shadow: none;
|
|
364
|
+
border-radius: $tab-pop-nav-active-border-radius;
|
|
432
365
|
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
366
|
+
.e-icons {
|
|
367
|
+
color: $tab-pop-active-icons-color;
|
|
368
|
+
}
|
|
437
369
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
}
|
|
370
|
+
&:focus {
|
|
371
|
+
border: $tab-pop-nav-active-border;
|
|
441
372
|
}
|
|
442
373
|
}
|
|
443
374
|
}
|
|
444
375
|
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
376
|
+
&.e-horizontal-bottom {
|
|
377
|
+
border-color: $tab-bottom-border-color;
|
|
378
|
+
border-style: solid;
|
|
379
|
+
border-width: $tab-bottom-border-width;
|
|
448
380
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
&[style*= 'overflow: hidden'] .e-toolbar-items {
|
|
454
|
-
border-bottom: 0;
|
|
455
|
-
border-top: $tab-items-border;
|
|
456
|
-
}
|
|
381
|
+
&[style *= 'overflow: hidden'] {
|
|
382
|
+
border-color: $tab-bottom-border-color;
|
|
383
|
+
border-style: solid;
|
|
384
|
+
border-width: $tab-bottom-border-width;
|
|
457
385
|
}
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
border-
|
|
386
|
+
|
|
387
|
+
&[style *= 'overflow: hidden'] .e-toolbar-items {
|
|
388
|
+
border-color: $tab-bottom-hidden-items-border-color;
|
|
389
|
+
border-style: solid;
|
|
390
|
+
border-width: $tab-bottom-hidden-items-border-width;
|
|
461
391
|
}
|
|
462
392
|
|
|
463
393
|
.e-toolbar-item {
|
|
464
394
|
|
|
465
|
-
|
|
466
|
-
border-bottom: 0;
|
|
395
|
+
.e-tab-wrap:hover {
|
|
467
396
|
border-radius: $tab-bottom-active-item-border-radius;
|
|
468
|
-
|
|
469
|
-
border-top-color: $tab-active-item-border-color;
|
|
397
|
+
}
|
|
470
398
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
399
|
+
&.e-active {
|
|
400
|
+
border-color: $tab-bottom-active-border-color;
|
|
401
|
+
border-style: solid;
|
|
402
|
+
border-width: $tab-bottom-active-border-width;
|
|
403
|
+
margin-top: $tab-bottom-active-margin-top;
|
|
404
|
+
border-radius: $tab-bottom-active-item-border-radius;
|
|
474
405
|
}
|
|
475
406
|
}
|
|
476
407
|
}
|
|
477
408
|
|
|
478
409
|
&.e-vertical {
|
|
410
|
+
border-bottom: 0;
|
|
479
411
|
|
|
480
412
|
&::before {
|
|
481
|
-
border-width:
|
|
413
|
+
border-width: $tab-vertical-before-border-width;
|
|
482
414
|
}
|
|
483
415
|
|
|
484
416
|
.e-toolbar-item {
|
|
@@ -493,9 +425,13 @@
|
|
|
493
425
|
|
|
494
426
|
.e-toolbar-item {
|
|
495
427
|
|
|
428
|
+
.e-tab-wrap:hover {
|
|
429
|
+
border-radius: $tab-left-active-item-border-radius;
|
|
430
|
+
}
|
|
431
|
+
|
|
496
432
|
&.e-active {
|
|
497
433
|
border-radius: $tab-left-active-item-border-radius;
|
|
498
|
-
border-right: $tab-
|
|
434
|
+
border-right: $tab-item-active-border-bottom;
|
|
499
435
|
}
|
|
500
436
|
}
|
|
501
437
|
}
|
|
@@ -504,8 +440,12 @@
|
|
|
504
440
|
|
|
505
441
|
.e-toolbar-item {
|
|
506
442
|
|
|
443
|
+
.e-tab-wrap:hover {
|
|
444
|
+
border-radius: $tab-right-active-item-border-radius;
|
|
445
|
+
}
|
|
446
|
+
|
|
507
447
|
&.e-active {
|
|
508
|
-
border-left: $tab-
|
|
448
|
+
border-left: $tab-item-active-border-bottom;
|
|
509
449
|
border-radius: $tab-right-active-item-border-radius;
|
|
510
450
|
}
|
|
511
451
|
}
|
|
@@ -537,13 +477,10 @@
|
|
|
537
477
|
|
|
538
478
|
&:hover {
|
|
539
479
|
background: $tab-v-nav-hover-bg-color;
|
|
480
|
+
border-color: $tab-vertical-scroll-hover-border-color;
|
|
540
481
|
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
&:active:focus {
|
|
545
|
-
background: $selection-bg;
|
|
546
|
-
}
|
|
482
|
+
&:active:focus {
|
|
483
|
+
background: $tab-vertical-scroll-hover-active-bg;
|
|
547
484
|
}
|
|
548
485
|
|
|
549
486
|
.e-nav-arrow {
|
|
@@ -561,10 +498,7 @@
|
|
|
561
498
|
&:hover:active {
|
|
562
499
|
|
|
563
500
|
.e-nav-arrow {
|
|
564
|
-
|
|
565
|
-
@if $skin-name == 'highcontrast' {
|
|
566
|
-
color: $selection-font;
|
|
567
|
-
}
|
|
501
|
+
color: $tab-vertical-focus-active-arrow-color;
|
|
568
502
|
}
|
|
569
503
|
}
|
|
570
504
|
|
|
@@ -588,6 +522,7 @@
|
|
|
588
522
|
&:hover {
|
|
589
523
|
background: inherit;
|
|
590
524
|
border: 0;
|
|
525
|
+
color: $tab-vertical-pop-icon-hover-color;
|
|
591
526
|
}
|
|
592
527
|
}
|
|
593
528
|
|
|
@@ -607,10 +542,7 @@
|
|
|
607
542
|
}
|
|
608
543
|
|
|
609
544
|
&:active {
|
|
610
|
-
|
|
611
|
-
@if $skin-name == 'highcontrast' {
|
|
612
|
-
color: $content-font;
|
|
613
|
-
}
|
|
545
|
+
color: $tab-vertical-pop-icon-active-color;
|
|
614
546
|
}
|
|
615
547
|
}
|
|
616
548
|
}
|
|
@@ -626,25 +558,22 @@
|
|
|
626
558
|
}
|
|
627
559
|
}
|
|
628
560
|
|
|
629
|
-
&.e-focused .e-tab-header {
|
|
561
|
+
&.e-focused > .e-tab-header {
|
|
630
562
|
|
|
631
563
|
.e-toolbar-item {
|
|
632
564
|
|
|
633
565
|
.e-tab-wrap:focus {
|
|
634
566
|
background: $tab-focus-bg-color;
|
|
635
|
-
|
|
636
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
637
|
-
border-color: $tab-focused-wrap-focus-border-color;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
@if $skin-name == 'highcontrast' {
|
|
641
|
-
border-style: solid;
|
|
642
|
-
}
|
|
567
|
+
border: $tab-focused-wrap-focus-border;
|
|
643
568
|
|
|
644
569
|
.e-tab-icon,
|
|
645
570
|
.e-tab-text {
|
|
646
571
|
color: $tab-focus-text-color;
|
|
647
572
|
}
|
|
573
|
+
|
|
574
|
+
.e-tab-icon {
|
|
575
|
+
color: $tab-focused-wrap-focus-icon-color;
|
|
576
|
+
}
|
|
648
577
|
}
|
|
649
578
|
}
|
|
650
579
|
|
|
@@ -654,11 +583,6 @@
|
|
|
654
583
|
|
|
655
584
|
.e-nav-arrow {
|
|
656
585
|
color: $tab-nav-focus-icon-color;
|
|
657
|
-
|
|
658
|
-
@if $skin-name == 'highcontrast' {
|
|
659
|
-
background: inherit;
|
|
660
|
-
border: 2px solid $tab-focused-nav-focus-border-color;
|
|
661
|
-
}
|
|
662
586
|
}
|
|
663
587
|
}
|
|
664
588
|
}
|
|
@@ -670,11 +594,8 @@
|
|
|
670
594
|
.e-popup-up-icon,
|
|
671
595
|
.e-popup-down-icon {
|
|
672
596
|
color: $tab-nav-focus-icon-color;
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
background: inherit;
|
|
676
|
-
border: 2px solid $tab-focused-nav-focus-border-color;
|
|
677
|
-
}
|
|
597
|
+
background: $tab-scroll-focused-nav-focus-icon-bg;
|
|
598
|
+
border: $tab-scroll-focused-nav-focus-icon-border;
|
|
678
599
|
}
|
|
679
600
|
}
|
|
680
601
|
}
|
|
@@ -684,14 +605,7 @@
|
|
|
684
605
|
.e-scroll-nav {
|
|
685
606
|
|
|
686
607
|
&:focus {
|
|
687
|
-
|
|
688
|
-
@if $skin-name == 'fabric' {
|
|
689
|
-
border-color: $neutral-secondary-alt;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
@if $skin-name == 'highcontrast' {
|
|
693
|
-
border-color: $tab-focused-nav-focus-border-color;
|
|
694
|
-
}
|
|
608
|
+
border-color: $tab-vertical-focused-nav-focus-border-color;
|
|
695
609
|
|
|
696
610
|
.e-nav-arrow {
|
|
697
611
|
border: 0;
|
|
@@ -708,18 +622,6 @@
|
|
|
708
622
|
|
|
709
623
|
&:focus {
|
|
710
624
|
outline: $tab-v-pop-focus-outline;
|
|
711
|
-
|
|
712
|
-
.e-popup-up-icon,
|
|
713
|
-
.e-popup-down-icon {
|
|
714
|
-
|
|
715
|
-
@if $skin-name == 'fabric' {
|
|
716
|
-
border-color: $neutral-secondary-alt;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
@if $skin-name == 'highcontrast' {
|
|
720
|
-
border-color: $tab-focused-nav-focus-border-color;
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
625
|
}
|
|
724
626
|
}
|
|
725
627
|
}
|
|
@@ -760,14 +662,12 @@
|
|
|
760
662
|
.e-tab-header {
|
|
761
663
|
border-bottom: $tab-fill-hdr-border;
|
|
762
664
|
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
border: 0;
|
|
766
|
-
}
|
|
665
|
+
.e-toolbar-items.e-hscroll {
|
|
666
|
+
border: 0;
|
|
767
667
|
}
|
|
768
668
|
|
|
769
669
|
.e-toolbar-item {
|
|
770
|
-
border:
|
|
670
|
+
border: 0;
|
|
771
671
|
|
|
772
672
|
.e-ripple-element {
|
|
773
673
|
background: $tab-fill-ripple-bg-color;
|
|
@@ -780,6 +680,10 @@
|
|
|
780
680
|
&:hover .e-tab-icon {
|
|
781
681
|
color: $tab-hover-text-color;
|
|
782
682
|
}
|
|
683
|
+
|
|
684
|
+
&:hover .e-tab-icon {
|
|
685
|
+
color: $tab-fill-wrap-hover-icon-color;
|
|
686
|
+
}
|
|
783
687
|
}
|
|
784
688
|
|
|
785
689
|
.e-text-wrap {
|
|
@@ -792,10 +696,7 @@
|
|
|
792
696
|
.e-tab-wrap {
|
|
793
697
|
background: $tab-fill-active-bg-color;
|
|
794
698
|
border-radius: $tab-active-item-border-radius;
|
|
795
|
-
|
|
796
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
797
|
-
border-color: $tab-fill-active-wrap-border-color;
|
|
798
|
-
}
|
|
699
|
+
border-color: $tab-fill-active-tabwrap-border-color;
|
|
799
700
|
|
|
800
701
|
&:hover .e-tab-text,
|
|
801
702
|
&:hover .e-tab-icon {
|
|
@@ -808,9 +709,7 @@
|
|
|
808
709
|
}
|
|
809
710
|
|
|
810
711
|
.e-text-wrap::before {
|
|
811
|
-
|
|
812
|
-
border: 0;
|
|
813
|
-
}
|
|
712
|
+
border: $tab-fill-active-text-before-border;
|
|
814
713
|
}
|
|
815
714
|
|
|
816
715
|
.e-tab-text,
|
|
@@ -823,7 +722,7 @@
|
|
|
823
722
|
}
|
|
824
723
|
|
|
825
724
|
.e-close-icon:hover {
|
|
826
|
-
color: $tab-
|
|
725
|
+
color: $tab-fill-active-close-hover-color;
|
|
827
726
|
}
|
|
828
727
|
}
|
|
829
728
|
}
|
|
@@ -831,17 +730,32 @@
|
|
|
831
730
|
.e-toolbar-pop {
|
|
832
731
|
|
|
833
732
|
.e-toolbar-item:active:hover {
|
|
733
|
+
.e-tab-text,
|
|
734
|
+
.e-tab-icon {
|
|
735
|
+
color: $tab-fill-pop-active-icon-color;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.e-tab-wrap {
|
|
740
|
+
&:hover {
|
|
741
|
+
background: $tab-fill-pop-wrap-hover-bg;
|
|
742
|
+
|
|
743
|
+
.e-tab-text {
|
|
744
|
+
color: $tab-fill-pop-wrap-hover-text-color;
|
|
745
|
+
}
|
|
834
746
|
|
|
835
|
-
@if $skin-name == 'highcontrast' {
|
|
836
|
-
.e-tab-text,
|
|
837
747
|
.e-tab-icon {
|
|
838
|
-
color: $tab-fill-pop-
|
|
748
|
+
color: $tab-fill-pop-wrap-hover-icon-color;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.e-close-icon {
|
|
752
|
+
color: $tab-fill-pop-wrap-hover-close-color;
|
|
839
753
|
}
|
|
840
754
|
}
|
|
841
755
|
}
|
|
842
756
|
}
|
|
843
757
|
|
|
844
|
-
|
|
758
|
+
&.e-horizontal-bottom {
|
|
845
759
|
border-bottom: 0;
|
|
846
760
|
border-top: $tab-fill-hdr-border;
|
|
847
761
|
|
|
@@ -877,7 +791,7 @@
|
|
|
877
791
|
}
|
|
878
792
|
}
|
|
879
793
|
|
|
880
|
-
|
|
794
|
+
&.e-horizontal-bottom {
|
|
881
795
|
|
|
882
796
|
.e-toolbar-item.e-active .e-tab-wrap {
|
|
883
797
|
border-radius: $tab-fill-even-active-wrap-corner;
|
|
@@ -914,7 +828,7 @@
|
|
|
914
828
|
}
|
|
915
829
|
}
|
|
916
830
|
|
|
917
|
-
|
|
831
|
+
&.e-horizontal-bottom {
|
|
918
832
|
border-bottom: 0;
|
|
919
833
|
border-top: $tab-fill-disable-hdr-border;
|
|
920
834
|
}
|
|
@@ -926,32 +840,26 @@
|
|
|
926
840
|
.e-toolbar-item {
|
|
927
841
|
|
|
928
842
|
.e-tab-wrap:focus .e-tab-icon,
|
|
929
|
-
.e-tab-wrap:focus .e-tab-text
|
|
930
|
-
|
|
843
|
+
.e-tab-wrap:focus .e-tab-text,
|
|
844
|
+
.e-tab-wrap:focus .e-close-icon {
|
|
845
|
+
color: $tab-hover-text-color;
|
|
931
846
|
}
|
|
932
847
|
|
|
933
848
|
&.e-active .e-tab-wrap:focus {
|
|
934
849
|
background: $tab-fill-focus-bg-color;
|
|
850
|
+
border-color: $tab-fill-focused-active-tabwrap-focus-border-color;
|
|
935
851
|
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
@if $skin-name == 'bootstrap' {
|
|
941
|
-
|
|
942
|
-
.e-tab-text,
|
|
943
|
-
.e-close-icon {
|
|
944
|
-
color: $tab-fill-focused-active-wrap-focus-color;
|
|
945
|
-
}
|
|
852
|
+
.e-tab-text {
|
|
853
|
+
color: $tab-fill-focused-active-wrap-focus-text-color;
|
|
946
854
|
}
|
|
947
855
|
|
|
948
|
-
|
|
949
|
-
|
|
856
|
+
.e-close-icon {
|
|
857
|
+
color: $tab-fill-focused-active-wrap-focus-close-color;
|
|
950
858
|
}
|
|
951
859
|
|
|
952
860
|
.e-tab-text,
|
|
953
861
|
.e-tab-icon {
|
|
954
|
-
color: $tab-alt-active-hover-
|
|
862
|
+
color: $tab-alt-active-style-hover-icon-color;
|
|
955
863
|
}
|
|
956
864
|
}
|
|
957
865
|
}
|
|
@@ -968,18 +876,17 @@
|
|
|
968
876
|
background: $tab-alt-item-bg-color;
|
|
969
877
|
}
|
|
970
878
|
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
border: 0;
|
|
974
|
-
}
|
|
879
|
+
.e-toolbar-items.e-hscroll {
|
|
880
|
+
border: 0;
|
|
975
881
|
}
|
|
976
882
|
|
|
977
883
|
.e-indicator {
|
|
978
884
|
background: $tab-alt-border-color;
|
|
885
|
+
bottom: $tab-background-indicator-bottom;
|
|
979
886
|
}
|
|
980
887
|
|
|
981
888
|
.e-toolbar-item {
|
|
982
|
-
border:
|
|
889
|
+
border: 0;
|
|
983
890
|
|
|
984
891
|
.e-ripple-element {
|
|
985
892
|
background: $tab-alt-ripple-bg-color;
|
|
@@ -987,127 +894,98 @@
|
|
|
987
894
|
|
|
988
895
|
.e-tab-wrap {
|
|
989
896
|
background: $tab-alt-item-bg-color;
|
|
897
|
+
border-color: $tab-background-wrap-border-color;
|
|
990
898
|
|
|
991
|
-
|
|
992
|
-
|
|
899
|
+
.e-tab-icon,
|
|
900
|
+
.e-close-icon {
|
|
901
|
+
color: $tab-alt-text-color;
|
|
993
902
|
}
|
|
994
903
|
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
.e-tab-text,
|
|
999
|
-
.e-tab-icon {
|
|
1000
|
-
color: $tab-alt-active-text-color;
|
|
904
|
+
.e-tab-text {
|
|
905
|
+
color: $tab-background-text-color;
|
|
906
|
+
}
|
|
1001
907
|
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
}
|
|
908
|
+
.e-close-icon:hover {
|
|
909
|
+
color: $tab-background-close-hover-color;
|
|
910
|
+
}
|
|
1006
911
|
|
|
1007
|
-
|
|
1008
|
-
|
|
912
|
+
&:hover {
|
|
913
|
+
background: $tab-bg-item-wrap-hover-bg-color;
|
|
914
|
+
background-color: $tab-background-wrap-hover-bg-color;
|
|
915
|
+
border-color: $tab-background-wrap-hover-border-color;
|
|
1009
916
|
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
color: $tab-alt-wrap-hover-close-icon-focus-or-active-color;
|
|
1013
|
-
}
|
|
1014
|
-
}
|
|
917
|
+
.e-tab-text {
|
|
918
|
+
color: $tab-background-wrap-hover-text-color;
|
|
1015
919
|
}
|
|
1016
920
|
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
.e-close-icon {
|
|
1020
|
-
color: $tab-alt-wrap-hover-color;
|
|
1021
|
-
}
|
|
921
|
+
.e-tab-icon {
|
|
922
|
+
color: $tab-background-wrap-hover-icon-color;
|
|
1022
923
|
}
|
|
1023
924
|
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
border-color: $tab-alt-wrap-hover-border-color;
|
|
1027
|
-
|
|
1028
|
-
.e-tab-text,
|
|
1029
|
-
.e-close-icon {
|
|
1030
|
-
color: $tab-alt-wrap-hover-color;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
.e-close-icon {
|
|
925
|
+
.e-close-icon {
|
|
926
|
+
color: $tab-background-wrap-hover-close-color;
|
|
1034
927
|
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
}
|
|
928
|
+
&:hover,
|
|
929
|
+
&:active {
|
|
930
|
+
color: $tab-background-close-hover-active-color;
|
|
1039
931
|
}
|
|
1040
932
|
}
|
|
1041
933
|
}
|
|
1042
934
|
}
|
|
1043
935
|
|
|
1044
|
-
.e-tab-text,
|
|
1045
|
-
.e-tab-icon,
|
|
1046
|
-
.e-close-icon {
|
|
1047
|
-
color: $tab-alt-text-color;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
.e-close-icon {
|
|
1051
|
-
color: $tab-alt-close-icon-color;
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
.e-close-icon:hover {
|
|
1055
|
-
color: $tab-alt-hover-text-color;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
936
|
&.e-active {
|
|
1059
937
|
border: 0;
|
|
938
|
+
margin: 0;
|
|
939
|
+
background: $tab-background-active-bg;
|
|
1060
940
|
|
|
1061
941
|
.e-tab-wrap {
|
|
1062
|
-
background: $tab-
|
|
1063
|
-
border-
|
|
942
|
+
background: $tab-background-active-wrap-bg;
|
|
943
|
+
border-color: $tab-background-active-wrap-border-color;
|
|
944
|
+
border-radius: $tab-background-active-wrap-border-radius;
|
|
945
|
+
border-style: solid;
|
|
946
|
+
border-width: $tab-background-active-wrap-border-width;
|
|
1064
947
|
|
|
1065
|
-
|
|
1066
|
-
|
|
948
|
+
.e-tab-text {
|
|
949
|
+
color: $tab-background-active-text-color;
|
|
1067
950
|
}
|
|
1068
951
|
|
|
1069
|
-
|
|
952
|
+
.e-tab-icon {
|
|
953
|
+
color: $tab-background-active-icon-color;
|
|
954
|
+
}
|
|
1070
955
|
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
}
|
|
956
|
+
.e-close-icon {
|
|
957
|
+
color: $tab-background-active-close-color;
|
|
958
|
+
}
|
|
1075
959
|
|
|
1076
|
-
|
|
1077
|
-
|
|
960
|
+
&:hover {
|
|
961
|
+
background: $tab-background-active-hover-bg;
|
|
962
|
+
border-color: $tab-background-active-hover-border-color;
|
|
963
|
+
.e-tab-text {
|
|
964
|
+
color: $tab-background-active-hover-text-color;
|
|
1078
965
|
}
|
|
1079
966
|
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
color: $tab-alt-active-wrap-hover-close-color;
|
|
1083
|
-
}
|
|
967
|
+
.e-tab-icon {
|
|
968
|
+
color: $tab-background-active-hover-icon-color;
|
|
1084
969
|
}
|
|
1085
970
|
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
border-color: $tab-alt-active-wrap-hover-border-color;
|
|
971
|
+
.e-close-icon {
|
|
972
|
+
color: $tab-background-active-hover-close-color;
|
|
1089
973
|
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
.e-close-icon {
|
|
1093
|
-
color: $tab-alt-active-wrap-hover-color;
|
|
974
|
+
&:hover {
|
|
975
|
+
color: $tab-background-active-close-hover-color;
|
|
1094
976
|
}
|
|
1095
977
|
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
&:hover,
|
|
1099
|
-
&:active {
|
|
1100
|
-
color: $tab-alt-active-wrap-hover-close-hover-or-active-color;
|
|
1101
|
-
}
|
|
978
|
+
&:active {
|
|
979
|
+
color: $tab-background-activeitem-close-active-color;
|
|
1102
980
|
}
|
|
981
|
+
}
|
|
1103
982
|
|
|
1104
|
-
|
|
1105
|
-
|
|
983
|
+
&:focus {
|
|
984
|
+
background: $tab-background-active-wrap-focus-bg;
|
|
1106
985
|
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
}
|
|
986
|
+
.e-tab-icon,
|
|
987
|
+
.e-tab-text {
|
|
988
|
+
color: $tab-background-active-wrap-focus-text-color;
|
|
1111
989
|
}
|
|
1112
990
|
}
|
|
1113
991
|
}
|
|
@@ -1117,39 +995,38 @@
|
|
|
1117
995
|
|
|
1118
996
|
.e-tab-text,
|
|
1119
997
|
.e-tab-icon {
|
|
1120
|
-
color: $tab-
|
|
998
|
+
color: $tab-background-active-wrap-focus-icon;
|
|
1121
999
|
}
|
|
1122
1000
|
}
|
|
1123
1001
|
|
|
1124
1002
|
&:focus:hover {
|
|
1125
1003
|
|
|
1126
|
-
|
|
1004
|
+
.e-tab-text {
|
|
1005
|
+
color: $tab-background-active-wrap-focushover-text-color;
|
|
1006
|
+
}
|
|
1127
1007
|
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
color: $tab-alt-active-text-color;
|
|
1131
|
-
}
|
|
1008
|
+
.e-close-icon {
|
|
1009
|
+
color: $tab-background-active-wrap-focushover-close-color;
|
|
1132
1010
|
}
|
|
1133
1011
|
}
|
|
1134
1012
|
}
|
|
1135
1013
|
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
border: 0;
|
|
1139
|
-
}
|
|
1014
|
+
.e-text-wrap::before {
|
|
1015
|
+
border: $tab-nrml-bottom-wrap-before-top;
|
|
1140
1016
|
}
|
|
1141
1017
|
|
|
1142
1018
|
.e-tab-text,
|
|
1143
1019
|
.e-tab-icon {
|
|
1144
|
-
color: $tab-
|
|
1020
|
+
color: $tab-background-active-text-icon-color;
|
|
1145
1021
|
}
|
|
1146
1022
|
|
|
1147
1023
|
.e-close-icon {
|
|
1148
|
-
color: $tab-
|
|
1024
|
+
color: $tab-background-active-close-icon-color;
|
|
1149
1025
|
}
|
|
1150
1026
|
|
|
1151
|
-
.e-close-icon:hover
|
|
1152
|
-
|
|
1027
|
+
.e-close-icon:hover,
|
|
1028
|
+
.e-tab-text:hover {
|
|
1029
|
+
color: $tab-background-active-close-text-hover-color;
|
|
1153
1030
|
}
|
|
1154
1031
|
|
|
1155
1032
|
&.e-itop .e-tab-wrap,
|
|
@@ -1175,72 +1052,55 @@
|
|
|
1175
1052
|
.e-tab-wrap {
|
|
1176
1053
|
|
|
1177
1054
|
.e-tab-text,
|
|
1178
|
-
.e-tab-icon
|
|
1179
|
-
|
|
1055
|
+
.e-tab-icon,
|
|
1056
|
+
.e-close-icon {
|
|
1057
|
+
color: $tab-background-pop-text-color;
|
|
1180
1058
|
}
|
|
1181
1059
|
|
|
1182
1060
|
&:hover {
|
|
1183
|
-
background: $tab-
|
|
1061
|
+
background: $tab-background-pop-wrap-hover-bg;
|
|
1184
1062
|
|
|
1185
1063
|
.e-tab-text,
|
|
1186
|
-
.e-tab-icon
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
@if $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'highcontrast' {
|
|
1190
|
-
color: $tab-alt-pop-wrap-hover-color;
|
|
1191
|
-
}
|
|
1064
|
+
.e-tab-icon,
|
|
1065
|
+
.e-close-icon {
|
|
1066
|
+
color: $tab-background-pop-wrap-hover-text-color;
|
|
1192
1067
|
}
|
|
1193
1068
|
}
|
|
1194
1069
|
|
|
1195
1070
|
&:active {
|
|
1196
|
-
|
|
1197
|
-
|
|
1071
|
+
.e-tab-text {
|
|
1072
|
+
color: $tab-background-pop-wrap-active-text-color;
|
|
1073
|
+
}
|
|
1198
1074
|
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1075
|
+
.e-tab-icon {
|
|
1076
|
+
color: $tab-background-pop-wrap-active-icon-color;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.e-close-icon {
|
|
1080
|
+
color: $tab-background-pop-wrap-active-close-color;
|
|
1203
1081
|
}
|
|
1204
1082
|
}
|
|
1205
1083
|
}
|
|
1206
1084
|
}
|
|
1207
1085
|
}
|
|
1208
1086
|
|
|
1087
|
+
.e-hscroll:not(.e-scroll-device) .e-scroll-nav,
|
|
1209
1088
|
.e-scroll-nav {
|
|
1089
|
+
background: $tab-background-scroll-bg;
|
|
1210
1090
|
|
|
1211
1091
|
.e-nav-arrow {
|
|
1212
1092
|
color: $tab-alt-nav-icon-color;
|
|
1213
|
-
|
|
1214
|
-
@if $skin-name == 'fabric' {
|
|
1215
|
-
border: 1px solid $tab-alt-nav-border-color;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
@if $skin-name == 'highcontrast' {
|
|
1219
|
-
border: 2px solid $tab-alt-nav-border-color;
|
|
1220
|
-
}
|
|
1093
|
+
border: $tab-background-scroll-arrow-border;
|
|
1221
1094
|
|
|
1222
1095
|
&:hover {
|
|
1223
|
-
background: $tab-
|
|
1096
|
+
background: $tab-background-scroll-arrow-hover-bg;
|
|
1224
1097
|
color: $tab-bg-hover-nav-icon-color;
|
|
1225
|
-
|
|
1226
|
-
@if $skin-name == 'highcontrast' {
|
|
1227
|
-
border-color: $tab-alt-nav-hover-border-color;
|
|
1228
|
-
color: $tab-alt-nav-hover-color;
|
|
1229
|
-
}
|
|
1098
|
+
border-color: $tab-background-scroll-arrow-hover-border-color;
|
|
1230
1099
|
}
|
|
1231
1100
|
|
|
1232
1101
|
&:active {
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
background: $tab-alt-nav-active-bg-color;
|
|
1236
|
-
color: $tab-alt-nav-active-color;
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
.e-icons {
|
|
1240
|
-
@if $skin-name == 'highcontrast' {
|
|
1241
|
-
color: $tab-alt-nav-active-color;
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
1102
|
+
background: $tab-background-scroll-arrow-active-bg;
|
|
1103
|
+
color: $tab-background-scroll-arrow-active-color;
|
|
1244
1104
|
}
|
|
1245
1105
|
}
|
|
1246
1106
|
|
|
@@ -1248,32 +1108,18 @@
|
|
|
1248
1108
|
|
|
1249
1109
|
.e-nav-arrow {
|
|
1250
1110
|
color: $tab-bg-hover-nav-icon-color;
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
border: 1px solid $tab-nav-focus-border-color;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
@if $skin-name == 'highcontrast' {
|
|
1257
|
-
background: transparent;
|
|
1258
|
-
border: 2px solid $tab-alt-nav-focus-border-color;
|
|
1259
|
-
}
|
|
1111
|
+
border: $tab-background-scroll-focus-arrow-border;
|
|
1112
|
+
background: $tab-background-scroll-focus-arrow-bg;
|
|
1260
1113
|
|
|
1261
1114
|
&:hover {
|
|
1262
1115
|
background: $tab-bg-hover-nav-bg-color;
|
|
1263
1116
|
color: $tab-bg-hover-nav-icon-color;
|
|
1264
|
-
|
|
1265
|
-
@if $skin-name == 'highcontrast' {
|
|
1266
|
-
border: 2px solid $tab-nav-focus-hover-border-color;
|
|
1267
|
-
color: $tab-alt-nav-focus-hover-color;
|
|
1268
|
-
}
|
|
1269
1117
|
}
|
|
1270
1118
|
|
|
1271
1119
|
&:active {
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
color: $tab-nav-focus-active-color;
|
|
1276
|
-
}
|
|
1120
|
+
background: $tab-background-nav-focus-active-bg;
|
|
1121
|
+
border-color: $tab-background-nav-focus-active-border-color;
|
|
1122
|
+
color: $tab-background-nav-focus-active-color;
|
|
1277
1123
|
}
|
|
1278
1124
|
}
|
|
1279
1125
|
}
|
|
@@ -1283,48 +1129,25 @@
|
|
|
1283
1129
|
}
|
|
1284
1130
|
}
|
|
1285
1131
|
|
|
1132
|
+
.e-hor-nav:not(.e-expended-nav),
|
|
1286
1133
|
.e-hor-nav {
|
|
1134
|
+
background: $tab-background-hor-nav-bg;
|
|
1287
1135
|
|
|
1288
1136
|
.e-popup-up-icon,
|
|
1289
1137
|
.e-popup-down-icon {
|
|
1290
|
-
color: $tab-
|
|
1291
|
-
|
|
1292
|
-
@if $skin-name == 'fabric' {
|
|
1293
|
-
border: 1px solid $tab-alt-nav-border-color;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
@if $skin-name == 'highcontrast' {
|
|
1297
|
-
border: 2px solid $tab-alt-nav-border-color;
|
|
1298
|
-
}
|
|
1138
|
+
color: $tab-background-pop-icon-color;
|
|
1139
|
+
border: $tab-background-pop-icon-border;
|
|
1299
1140
|
|
|
1300
1141
|
&:hover {
|
|
1301
|
-
background: $tab-
|
|
1142
|
+
background: $tab-background-pop-icon-hover-bg;
|
|
1143
|
+
border-color: $tab-background-pop-icon-hover-border-color;
|
|
1302
1144
|
color: $tab-bg-hover-nav-icon-color;
|
|
1303
|
-
|
|
1304
|
-
@if $skin-name == 'bootstrap' {
|
|
1305
|
-
background: $tab-alt-nav-hover-bg-color;
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
@if $skin-name == 'highcontrast' {
|
|
1309
|
-
border-color: $tab-alt-nav-hover-border-color;
|
|
1310
|
-
color: $tab-alt-nav-hover-color;
|
|
1311
|
-
}
|
|
1312
1145
|
}
|
|
1313
1146
|
|
|
1314
1147
|
&:active {
|
|
1315
|
-
|
|
1316
|
-
.e-icons {
|
|
1317
|
-
@if $skin-name == 'highcontrast' {
|
|
1318
|
-
color: $tab-alt-nav-active-color;
|
|
1319
|
-
}
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
1148
|
&:hover {
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
background: $tab-alt-nav-active-bg-color;
|
|
1326
|
-
color: $tab-alt-nav-active-color;
|
|
1327
|
-
}
|
|
1149
|
+
background: $tab-background-pop-active-hover-bg;
|
|
1150
|
+
color: $tab-background-pop-active-hover-color;
|
|
1328
1151
|
}
|
|
1329
1152
|
}
|
|
1330
1153
|
}
|
|
@@ -1334,31 +1157,17 @@
|
|
|
1334
1157
|
.e-popup-up-icon,
|
|
1335
1158
|
.e-popup-down-icon {
|
|
1336
1159
|
color: $tab-bg-hover-nav-icon-color;
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
border: 1px solid $tab-nav-focus-border-color;
|
|
1340
|
-
}
|
|
1341
|
-
|
|
1342
|
-
@if $skin-name == 'highcontrast' {
|
|
1343
|
-
background: $tab-alt-nav-focus-bg-color;
|
|
1344
|
-
border: 2px solid $tab-alt-nav-focus-border-color;
|
|
1345
|
-
}
|
|
1160
|
+
background: $tab-background-focus-pop-bg;
|
|
1161
|
+
border: $tab-background-focus-pop-border;
|
|
1346
1162
|
|
|
1347
1163
|
&:hover {
|
|
1348
|
-
|
|
1349
|
-
@if $skin-name == 'highcontrast' {
|
|
1350
|
-
background: $tab-alt-nav-focus-hover-bg-color;
|
|
1351
|
-
border: 2px solid $tab-nav-focus-hover-border-color;
|
|
1352
|
-
color: $tab-alt-nav-focus-hover-color;
|
|
1353
|
-
}
|
|
1164
|
+
background: $tab-background-focus-pop-hover-bg;
|
|
1354
1165
|
}
|
|
1355
1166
|
|
|
1356
1167
|
&:active {
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
color: $tab-nav-focus-active-color;
|
|
1361
|
-
}
|
|
1168
|
+
background: $tab-background-popicon-focus-active-bg;
|
|
1169
|
+
border-color: $tab-background-popicon-focus-active-border-color;
|
|
1170
|
+
color: $tab-background-popicon-focus-active-color;
|
|
1362
1171
|
}
|
|
1363
1172
|
}
|
|
1364
1173
|
}
|
|
@@ -1368,15 +1177,60 @@
|
|
|
1368
1177
|
}
|
|
1369
1178
|
|
|
1370
1179
|
&.e-nav-active {
|
|
1371
|
-
|
|
1372
1180
|
.e-popup-up-icon {
|
|
1373
1181
|
color: $tab-bg-hover-nav-icon-color;
|
|
1374
1182
|
}
|
|
1375
1183
|
}
|
|
1376
1184
|
}
|
|
1377
1185
|
|
|
1186
|
+
&.e-horizontal-bottom {
|
|
1187
|
+
.e-toolbar-item.e-active {
|
|
1188
|
+
border: 0;
|
|
1189
|
+
margin: 0;
|
|
1190
|
+
|
|
1191
|
+
.e-tab-wrap {
|
|
1192
|
+
border-color: $tab-background-bottom-active-wrap-border-color;
|
|
1193
|
+
border-radius: $tab-background-bottom-active-wrap-border-radius;
|
|
1194
|
+
border-style: solid;
|
|
1195
|
+
border-width: $tab-background-bottom-active-wrap-border-width;
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1378
1200
|
&.e-vertical {
|
|
1379
1201
|
|
|
1202
|
+
&.e-vertical-left {
|
|
1203
|
+
.e-toolbar-item.e-active {
|
|
1204
|
+
border-color: $tab-background-vertical-left-active-border-color;
|
|
1205
|
+
border-style: solid;
|
|
1206
|
+
border-width: $tab-background-vertical-left-active-border-width;
|
|
1207
|
+
margin: 0;
|
|
1208
|
+
|
|
1209
|
+
.e-tab-wrap {
|
|
1210
|
+
border-color: $tab-background-bottom-active-wrap-border-color;
|
|
1211
|
+
border-radius: $tab-background-vertical-left-active-wrap-border-radius;
|
|
1212
|
+
border-style: solid;
|
|
1213
|
+
border-width: $tab-background-vertical-left-active-wrap-border-width;
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
&.e-vertical-right {
|
|
1219
|
+
.e-toolbar-item.e-active {
|
|
1220
|
+
border-color: $tab-background-vertical-left-active-border-color;
|
|
1221
|
+
border-style: solid;
|
|
1222
|
+
border-width: $tab-background-vertical-right-active-border-width;
|
|
1223
|
+
margin: 0;
|
|
1224
|
+
|
|
1225
|
+
.e-tab-wrap {
|
|
1226
|
+
border-color: $tab-background-bottom-active-wrap-border-color;
|
|
1227
|
+
border-radius: $tab-background-vertical-right-active-wrap-border-radius;
|
|
1228
|
+
border-style: solid;
|
|
1229
|
+
border-width: $tab-background-vertical-right-active-wrap-border-width;
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1380
1234
|
.e-scroll-nav {
|
|
1381
1235
|
|
|
1382
1236
|
.e-nav-arrow {
|
|
@@ -1475,7 +1329,7 @@
|
|
|
1475
1329
|
&.e-accent .e-tab-header {
|
|
1476
1330
|
|
|
1477
1331
|
.e-indicator {
|
|
1478
|
-
background: $tab-
|
|
1332
|
+
background: $tab-background-accent-indicator-bg;
|
|
1479
1333
|
}
|
|
1480
1334
|
|
|
1481
1335
|
&.e-disable {
|
|
@@ -1491,73 +1345,68 @@
|
|
|
1491
1345
|
.e-toolbar-item {
|
|
1492
1346
|
|
|
1493
1347
|
.e-tab-wrap:focus {
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
background: $tab-alt-hover-bg-color;
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1500
|
-
border-color: $tab-wrap-focus-border-color;
|
|
1501
|
-
}
|
|
1502
|
-
|
|
1503
|
-
@if $skin-name == 'highcontrast' {
|
|
1504
|
-
border-style: solid;
|
|
1505
|
-
}
|
|
1348
|
+
background: $tab-background-focused-wrap-focus-bg;
|
|
1349
|
+
border-color: $tab-background-focused-wrap-focus-border-color;
|
|
1506
1350
|
|
|
1507
1351
|
.e-tab-icon,
|
|
1508
|
-
.e-tab-text
|
|
1509
|
-
|
|
1352
|
+
.e-tab-text,
|
|
1353
|
+
.e-close-icon {
|
|
1354
|
+
color: $tab-background-focused-wrap-focus-close-color;
|
|
1510
1355
|
}
|
|
1511
1356
|
}
|
|
1512
1357
|
|
|
1513
1358
|
&.e-active {
|
|
1514
1359
|
|
|
1515
1360
|
.e-tab-wrap:focus {
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
background: $tab-key-alt-active-focus-bg-color;
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
@if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
1522
|
-
border-color: $tab-alt-focused-active-wrap-focus-border-color;
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
@if $skin-name == 'highcontrast' {
|
|
1526
|
-
border-style: solid;
|
|
1527
|
-
}
|
|
1361
|
+
background: $tab-background-focused-active-wrap-focus-bg;
|
|
1362
|
+
border-color: $tab-background-focused-active-wrap-focus-border-color;
|
|
1528
1363
|
}
|
|
1529
1364
|
|
|
1530
1365
|
.e-tab-wrap:focus .e-tab-text,
|
|
1531
1366
|
.e-tab-wrap:focus .e-tab-icon {
|
|
1532
|
-
color: $tab-
|
|
1367
|
+
color: $tab-background-focused-active-wrap-icon-color;
|
|
1533
1368
|
}
|
|
1534
1369
|
|
|
1535
1370
|
.e-tab-wrap:hover {
|
|
1371
|
+
background: $tab-background-focused-active-wrap-hover-bg;
|
|
1372
|
+
border: $tab-background-focused-active-wrap-hover-border;
|
|
1373
|
+
border-radius: $tab-background-focused-active-wrap-hover-border-radius;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.e-tab-wrap:focus {
|
|
1377
|
+
.e-tab-text {
|
|
1378
|
+
color: $tab-background-focused-active-wrap-focus-text-color;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.e-tab-icon {
|
|
1382
|
+
color: $tab-background-focused-active-wrap-focus-icon-color;
|
|
1383
|
+
}
|
|
1536
1384
|
|
|
1537
|
-
|
|
1538
|
-
|
|
1385
|
+
.e-close-icon {
|
|
1386
|
+
color: $tab-background-focused-active-wrap-focus-close-color;
|
|
1539
1387
|
}
|
|
1540
1388
|
}
|
|
1541
1389
|
|
|
1542
|
-
.e-tab-wrap:focus,
|
|
1543
1390
|
.e-tab-wrap:hover {
|
|
1391
|
+
.e-tab-text {
|
|
1392
|
+
color: $tab-background-focused-active-wrap-hover-text-color;
|
|
1393
|
+
}
|
|
1544
1394
|
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1395
|
+
.e-tab-icon {
|
|
1396
|
+
color: $tab-background-focused-active-wrap-hover-icon-color;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
.e-close-icon {
|
|
1400
|
+
color: $tab-background-focused-active-wrap-hover-close-color;
|
|
1550
1401
|
}
|
|
1551
1402
|
}
|
|
1552
1403
|
|
|
1553
1404
|
.e-tab-wrap:focus:hover {
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
color: $tab-alt-focused-active-wrap-focus-and-hover-color;
|
|
1560
|
-
}
|
|
1405
|
+
.e-tab-text {
|
|
1406
|
+
color: $tab-background-focused-active-focus-hover-text-color;
|
|
1407
|
+
}
|
|
1408
|
+
.e-close-icon {
|
|
1409
|
+
color: $tab-background-focused-active-focus-hover-close-color;
|
|
1561
1410
|
}
|
|
1562
1411
|
}
|
|
1563
1412
|
|
|
@@ -1614,6 +1463,22 @@
|
|
|
1614
1463
|
.e-item {
|
|
1615
1464
|
background: inherit;
|
|
1616
1465
|
color: $tab-content-font-color;
|
|
1466
|
+
font-size: $tab-content-font-size;
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.e-tab-clone-element {
|
|
1472
|
+
background: $tab-clone-item-bg-color;
|
|
1473
|
+
color: $tab-clone-text-color;
|
|
1474
|
+
|
|
1475
|
+
.e-tab-wrap {
|
|
1476
|
+
border-radius: $tab-active-item-border-radius;
|
|
1477
|
+
color: $tab-clone-text-color;
|
|
1478
|
+
border: $tab-clone-item-wrap-border;
|
|
1479
|
+
|
|
1480
|
+
.e-tab-icon {
|
|
1481
|
+
color: $tab-clone-text-color;
|
|
1617
1482
|
}
|
|
1618
1483
|
}
|
|
1619
1484
|
}
|