@syncfusion/ej2-navigations 28.1.41 → 28.2.3-1479479
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 +243 -260
- package/README.md +301 -301
- package/blazorGlobalSrc/accordion/accordion-model.d.ts +285 -0
- package/blazorGlobalSrc/accordion/accordion.d.ts +458 -0
- package/blazorGlobalSrc/accordion/accordion.js +1411 -0
- package/blazorGlobalSrc/accordion/index.d.ts +5 -0
- package/blazorGlobalSrc/accordion/index.js +4 -0
- package/blazorGlobalSrc/appbar/appbar-model.d.ts +76 -0
- package/blazorGlobalSrc/appbar/appbar.d.ts +115 -0
- package/blazorGlobalSrc/appbar/appbar.js +221 -0
- package/blazorGlobalSrc/appbar/index.d.ts +3 -0
- package/blazorGlobalSrc/appbar/index.js +2 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb-model.d.ts +170 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb.d.ts +297 -0
- package/blazorGlobalSrc/breadcrumb/breadcrumb.js +833 -0
- package/blazorGlobalSrc/breadcrumb/index.d.ts +5 -0
- package/blazorGlobalSrc/breadcrumb/index.js +4 -0
- package/blazorGlobalSrc/carousel/carousel-model.d.ts +282 -0
- package/blazorGlobalSrc/carousel/carousel.d.ts +439 -0
- package/blazorGlobalSrc/carousel/carousel.js +1353 -0
- package/blazorGlobalSrc/carousel/index.d.ts +3 -0
- package/blazorGlobalSrc/carousel/index.js +2 -0
- package/blazorGlobalSrc/common/h-scroll-model.d.ts +16 -0
- package/blazorGlobalSrc/common/h-scroll.d.ts +105 -0
- package/blazorGlobalSrc/common/h-scroll.js +499 -0
- package/blazorGlobalSrc/common/index.d.ts +9 -0
- package/blazorGlobalSrc/common/index.js +8 -0
- package/blazorGlobalSrc/common/menu-base-model.d.ts +308 -0
- package/blazorGlobalSrc/common/menu-base.d.ts +553 -0
- package/blazorGlobalSrc/common/menu-base.js +2502 -0
- package/blazorGlobalSrc/common/menu-scroll.d.ts +29 -0
- package/blazorGlobalSrc/common/menu-scroll.js +103 -0
- package/blazorGlobalSrc/common/v-scroll-model.d.ts +16 -0
- package/blazorGlobalSrc/common/v-scroll.d.ts +106 -0
- package/blazorGlobalSrc/common/v-scroll.js +471 -0
- package/blazorGlobalSrc/context-menu/context-menu-model.d.ts +47 -0
- package/blazorGlobalSrc/context-menu/context-menu.d.ts +101 -0
- package/blazorGlobalSrc/context-menu/context-menu.js +143 -0
- package/blazorGlobalSrc/context-menu/index.d.ts +5 -0
- package/blazorGlobalSrc/context-menu/index.js +4 -0
- package/blazorGlobalSrc/global.js +1 -0
- package/blazorGlobalSrc/index.d.ts +16 -0
- package/blazorGlobalSrc/index.js +16 -0
- package/blazorGlobalSrc/menu/index.d.ts +5 -0
- package/blazorGlobalSrc/menu/index.js +4 -0
- package/blazorGlobalSrc/menu/menu-model.d.ts +70 -0
- package/blazorGlobalSrc/menu/menu.d.ts +127 -0
- package/blazorGlobalSrc/menu/menu.js +288 -0
- package/blazorGlobalSrc/sidebar/index.d.ts +5 -0
- package/blazorGlobalSrc/sidebar/index.js +4 -0
- package/blazorGlobalSrc/sidebar/sidebar-model.d.ts +200 -0
- package/blazorGlobalSrc/sidebar/sidebar.d.ts +335 -0
- package/blazorGlobalSrc/sidebar/sidebar.js +729 -0
- package/blazorGlobalSrc/stepper/index.d.ts +3 -0
- package/blazorGlobalSrc/stepper/index.js +2 -0
- package/blazorGlobalSrc/stepper/stepper-model.d.ts +159 -0
- package/blazorGlobalSrc/stepper/stepper.d.ts +381 -0
- package/blazorGlobalSrc/stepper/stepper.js +1305 -0
- package/blazorGlobalSrc/stepper-base/index.d.ts +5 -0
- package/blazorGlobalSrc/stepper-base/index.js +4 -0
- package/blazorGlobalSrc/stepper-base/stepper-base-model.d.ts +121 -0
- package/blazorGlobalSrc/stepper-base/stepper-base.d.ts +184 -0
- package/blazorGlobalSrc/stepper-base/stepper-base.js +230 -0
- package/blazorGlobalSrc/tab/index.d.ts +5 -0
- package/blazorGlobalSrc/tab/index.js +4 -0
- package/blazorGlobalSrc/tab/tab-model.d.ts +408 -0
- package/blazorGlobalSrc/tab/tab.d.ts +715 -0
- package/blazorGlobalSrc/tab/tab.js +2564 -0
- package/blazorGlobalSrc/toolbar/index.d.ts +5 -0
- package/blazorGlobalSrc/toolbar/index.js +4 -0
- package/blazorGlobalSrc/toolbar/toolbar-model.d.ts +287 -0
- package/blazorGlobalSrc/toolbar/toolbar.d.ts +522 -0
- package/blazorGlobalSrc/toolbar/toolbar.js +2408 -0
- package/blazorGlobalSrc/treeview/index.d.ts +5 -0
- package/blazorGlobalSrc/treeview/index.js +4 -0
- package/blazorGlobalSrc/treeview/treeview-model.d.ts +630 -0
- package/blazorGlobalSrc/treeview/treeview.d.ts +1509 -0
- package/blazorGlobalSrc/treeview/treeview.js +5766 -0
- package/dist/ej2-navigations.min.js +1 -10
- 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 +107 -96
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +301 -290
- 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/dist/ts/undefined +285 -0
- package/license +10 -10
- package/package.json +166 -166
- package/src/accordion/accordion-model.d.ts +199 -199
- package/src/accordion/accordion.js +19 -19
- package/src/appbar/appbar-model.d.ts +51 -51
- package/src/appbar/appbar.js +19 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +114 -114
- package/src/breadcrumb/breadcrumb.js +19 -19
- package/src/carousel/carousel-model.d.ts +204 -204
- package/src/carousel/carousel.js +19 -19
- package/src/common/h-scroll-model.d.ts +6 -6
- package/src/common/h-scroll.js +19 -19
- package/src/common/menu-base-model.d.ts +234 -234
- package/src/common/menu-base.js +26 -19
- package/src/common/v-scroll-model.d.ts +6 -6
- package/src/common/v-scroll.js +19 -19
- package/src/context-menu/context-menu-model.d.ts +29 -29
- package/src/context-menu/context-menu.js +19 -19
- package/src/menu/menu-model.d.ts +45 -45
- package/src/menu/menu.js +19 -19
- package/src/sidebar/sidebar-model.d.ts +189 -189
- package/src/sidebar/sidebar.js +19 -19
- package/src/stepper/stepper.js +19 -19
- package/src/stepper-base/stepper-base.js +19 -19
- package/src/tab/tab-model.d.ts +305 -305
- package/src/tab/tab.js +19 -19
- package/src/toolbar/toolbar-model.d.ts +209 -209
- package/src/toolbar/toolbar.js +19 -19
- package/src/treeview/treeview-model.d.ts +520 -520
- package/src/treeview/treeview.d.ts +2 -1
- package/src/treeview/treeview.js +28 -24
- package/styles/accordion/_all.scss +2 -2
- package/styles/accordion/_bds-definition.scss +167 -167
- package/styles/accordion/_bigger.scss +121 -121
- package/styles/accordion/_bootstrap-dark-definition.scss +169 -167
- package/styles/accordion/_bootstrap-definition.scss +167 -167
- package/styles/accordion/_bootstrap4-definition.scss +177 -175
- package/styles/accordion/_bootstrap5-definition.scss +168 -168
- package/styles/accordion/_bootstrap5.3-definition.scss +168 -168
- package/styles/accordion/_fabric-dark-definition.scss +171 -171
- package/styles/accordion/_fabric-definition.scss +171 -171
- package/styles/accordion/_fluent-definition.scss +168 -168
- package/styles/accordion/_fluent2-definition.scss +167 -167
- package/styles/accordion/_fusionnew-definition.scss +168 -168
- package/styles/accordion/_highcontrast-definition.scss +193 -193
- package/styles/accordion/_highcontrast-light-definition.scss +193 -193
- package/styles/accordion/_layout.scss +236 -236
- package/styles/accordion/_material-dark-definition.scss +171 -171
- package/styles/accordion/_material-definition.scss +165 -165
- package/styles/accordion/_material3-definition.scss +168 -168
- package/styles/accordion/_tailwind-definition.scss +167 -167
- package/styles/accordion/_tailwind3-definition.scss +168 -168
- package/styles/accordion/_theme.scss +418 -418
- package/styles/accordion/bootstrap-dark.css +12 -12
- package/styles/accordion/bootstrap4.css +4 -4
- package/styles/accordion/bootstrap5-dark.css +37 -37
- package/styles/accordion/bootstrap5.css +16 -16
- package/styles/accordion/fabric.css +11 -11
- package/styles/accordion/icons/_bds.scss +15 -15
- package/styles/accordion/icons/_bootstrap-dark.scss +15 -15
- package/styles/accordion/icons/_bootstrap.scss +15 -15
- package/styles/accordion/icons/_bootstrap4.scss +15 -15
- package/styles/accordion/icons/_bootstrap5.3.scss +15 -15
- package/styles/accordion/icons/_bootstrap5.scss +15 -15
- package/styles/accordion/icons/_fabric-dark.scss +15 -15
- package/styles/accordion/icons/_fabric.scss +15 -15
- package/styles/accordion/icons/_fluent.scss +15 -15
- package/styles/accordion/icons/_fluent2.scss +15 -15
- package/styles/accordion/icons/_fusionnew.scss +15 -15
- package/styles/accordion/icons/_highcontrast-light.scss +15 -15
- package/styles/accordion/icons/_highcontrast.scss +15 -15
- package/styles/accordion/icons/_material-dark.scss +15 -15
- package/styles/accordion/icons/_material.scss +15 -15
- package/styles/accordion/icons/_material3.scss +15 -15
- package/styles/accordion/icons/_tailwind.scss +15 -15
- package/styles/accordion/icons/_tailwind3.scss +15 -15
- package/styles/accordion/material3-dark.scss +1 -1
- package/styles/accordion/material3.scss +1 -1
- package/styles/accordion/tailwind-dark.css +2 -2
- package/styles/appbar/_all.scss +2 -2
- package/styles/appbar/_bds-definition.scss +24 -24
- package/styles/appbar/_bigger.scss +15 -15
- package/styles/appbar/_bootstrap-dark-definition.scss +6 -6
- package/styles/appbar/_bootstrap-definition.scss +6 -6
- package/styles/appbar/_bootstrap4-definition.scss +6 -6
- package/styles/appbar/_bootstrap5-definition.scss +6 -6
- package/styles/appbar/_bootstrap5.3-definition.scss +6 -6
- package/styles/appbar/_fabric-dark-definition.scss +6 -6
- package/styles/appbar/_fabric-definition.scss +6 -6
- package/styles/appbar/_fluent-definition.scss +6 -6
- package/styles/appbar/_fluent2-definition.scss +23 -23
- package/styles/appbar/_fusionnew-definition.scss +6 -6
- package/styles/appbar/_highcontrast-definition.scss +6 -6
- package/styles/appbar/_highcontrast-light-definition.scss +6 -6
- package/styles/appbar/_layout.scss +76 -76
- package/styles/appbar/_material-dark-definition.scss +6 -6
- package/styles/appbar/_material-definition.scss +6 -6
- package/styles/appbar/_material3-definition.scss +6 -6
- package/styles/appbar/_tailwind-definition.scss +6 -6
- package/styles/appbar/_tailwind3-definition.scss +6 -6
- package/styles/appbar/_theme.scss +216 -216
- package/styles/appbar/material3-dark.scss +1 -1
- package/styles/appbar/material3.scss +1 -1
- package/styles/bds-lite.css +70 -5
- package/styles/bds.css +72 -7
- package/styles/bootstrap-dark-lite.css +120 -55
- package/styles/bootstrap-dark.css +124 -59
- package/styles/bootstrap-lite.css +72 -7
- package/styles/bootstrap.css +76 -11
- package/styles/bootstrap4-lite.css +153 -88
- package/styles/bootstrap4.css +156 -91
- package/styles/bootstrap5-dark-lite.css +288 -229
- package/styles/bootstrap5-dark.css +291 -232
- package/styles/bootstrap5-lite.css +150 -91
- package/styles/bootstrap5.3-lite.css +88 -27
- package/styles/bootstrap5.3.css +96 -29
- package/styles/bootstrap5.css +153 -94
- package/styles/breadcrumb/_all.scss +2 -2
- package/styles/breadcrumb/_bds-definition.scss +60 -60
- package/styles/breadcrumb/_bigger.scss +168 -166
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -54
- package/styles/breadcrumb/_bootstrap-definition.scss +54 -54
- package/styles/breadcrumb/_bootstrap4-definition.scss +56 -54
- package/styles/breadcrumb/_bootstrap5-definition.scss +65 -63
- package/styles/breadcrumb/_bootstrap5.3-definition.scss +61 -61
- package/styles/breadcrumb/_fabric-dark-definition.scss +59 -59
- package/styles/breadcrumb/_fabric-definition.scss +59 -59
- package/styles/breadcrumb/_fluent-definition.scss +63 -63
- package/styles/breadcrumb/_fluent2-definition.scss +61 -61
- package/styles/breadcrumb/_fusionnew-definition.scss +65 -59
- package/styles/breadcrumb/_highcontrast-definition.scss +61 -61
- package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -61
- package/styles/breadcrumb/_layout.scss +465 -449
- package/styles/breadcrumb/_material-dark-definition.scss +50 -50
- package/styles/breadcrumb/_material-definition.scss +50 -50
- package/styles/breadcrumb/_material3-definition.scss +60 -60
- package/styles/breadcrumb/_tailwind-definition.scss +60 -60
- package/styles/breadcrumb/_tailwind3-definition.scss +61 -61
- package/styles/breadcrumb/_theme.scss +296 -296
- package/styles/breadcrumb/bds.css +15 -0
- package/styles/breadcrumb/bootstrap-dark.css +17 -2
- package/styles/breadcrumb/bootstrap.css +15 -0
- package/styles/breadcrumb/bootstrap4.css +19 -4
- package/styles/breadcrumb/bootstrap5-dark.css +27 -12
- package/styles/breadcrumb/bootstrap5.3.css +15 -0
- package/styles/breadcrumb/bootstrap5.css +18 -3
- package/styles/breadcrumb/fabric-dark.css +18 -3
- package/styles/breadcrumb/fabric.css +15 -0
- package/styles/breadcrumb/fluent-dark.css +15 -0
- package/styles/breadcrumb/fluent.css +15 -0
- package/styles/breadcrumb/fluent2.css +15 -0
- package/styles/breadcrumb/highcontrast-light.css +15 -0
- package/styles/breadcrumb/highcontrast.css +15 -0
- package/styles/breadcrumb/icons/_bds.scss +23 -23
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap4.scss +12 -12
- package/styles/breadcrumb/icons/_bootstrap5.3.scss +23 -23
- package/styles/breadcrumb/icons/_bootstrap5.scss +23 -23
- package/styles/breadcrumb/icons/_fabric-dark.scss +12 -12
- package/styles/breadcrumb/icons/_fabric.scss +12 -12
- package/styles/breadcrumb/icons/_fluent.scss +23 -23
- package/styles/breadcrumb/icons/_fluent2.scss +23 -23
- package/styles/breadcrumb/icons/_fusionnew.scss +23 -23
- package/styles/breadcrumb/icons/_highcontrast-light.scss +12 -12
- package/styles/breadcrumb/icons/_highcontrast.scss +12 -12
- package/styles/breadcrumb/icons/_material-dark.scss +23 -23
- package/styles/breadcrumb/icons/_material.scss +23 -23
- package/styles/breadcrumb/icons/_material3.scss +12 -12
- package/styles/breadcrumb/icons/_tailwind-dark.scss +23 -23
- package/styles/breadcrumb/icons/_tailwind.scss +23 -23
- package/styles/breadcrumb/icons/_tailwind3.scss +23 -23
- package/styles/breadcrumb/material-dark.css +15 -0
- package/styles/breadcrumb/material.css +15 -0
- package/styles/breadcrumb/material3-dark.css +15 -0
- package/styles/breadcrumb/material3-dark.scss +1 -1
- package/styles/breadcrumb/material3.css +15 -0
- package/styles/breadcrumb/material3.scss +1 -1
- package/styles/breadcrumb/tailwind-dark.css +15 -0
- package/styles/breadcrumb/tailwind.css +15 -0
- package/styles/breadcrumb/tailwind3.css +15 -0
- package/styles/carousel/_all.scss +2 -2
- package/styles/carousel/_bds-definition.scss +20 -20
- package/styles/carousel/_bootstrap-dark-definition.scss +20 -20
- package/styles/carousel/_bootstrap-definition.scss +20 -20
- package/styles/carousel/_bootstrap4-definition.scss +20 -20
- package/styles/carousel/_bootstrap5-definition.scss +20 -20
- package/styles/carousel/_bootstrap5.3-definition.scss +20 -20
- package/styles/carousel/_fabric-dark-definition.scss +20 -20
- package/styles/carousel/_fabric-definition.scss +20 -20
- package/styles/carousel/_fluent-definition.scss +20 -20
- package/styles/carousel/_fluent2-definition.scss +23 -23
- package/styles/carousel/_fusionnew-definition.scss +20 -20
- package/styles/carousel/_highcontrast-definition.scss +20 -20
- package/styles/carousel/_highcontrast-light-definition.scss +20 -20
- package/styles/carousel/_layout.scss +257 -257
- package/styles/carousel/_material-dark-definition.scss +20 -20
- package/styles/carousel/_material-definition.scss +20 -20
- package/styles/carousel/_material3-definition.scss +21 -21
- package/styles/carousel/_tailwind-definition.scss +20 -20
- package/styles/carousel/_tailwind3-definition.scss +24 -24
- package/styles/carousel/_theme.scss +108 -108
- package/styles/carousel/icons/_bds.scss +30 -30
- package/styles/carousel/icons/_bootstrap-dark.scss +30 -30
- package/styles/carousel/icons/_bootstrap.scss +30 -30
- package/styles/carousel/icons/_bootstrap4.scss +30 -30
- package/styles/carousel/icons/_bootstrap5.3.scss +30 -30
- package/styles/carousel/icons/_bootstrap5.scss +30 -30
- package/styles/carousel/icons/_fabric-dark.scss +30 -30
- package/styles/carousel/icons/_fabric.scss +30 -30
- package/styles/carousel/icons/_fluent.scss +30 -30
- package/styles/carousel/icons/_fluent2.scss +30 -30
- package/styles/carousel/icons/_fusionnew.scss +30 -30
- package/styles/carousel/icons/_highcontrast-light.scss +30 -30
- package/styles/carousel/icons/_highcontrast.scss +30 -30
- package/styles/carousel/icons/_material-dark.scss +30 -30
- package/styles/carousel/icons/_material.scss +30 -30
- package/styles/carousel/icons/_material3.scss +30 -30
- package/styles/carousel/icons/_tailwind.scss +30 -30
- package/styles/carousel/icons/_tailwind3.scss +30 -30
- package/styles/carousel/material3-dark.scss +1 -1
- package/styles/carousel/material3.scss +1 -1
- package/styles/context-menu/_all.scss +2 -2
- package/styles/context-menu/_bds-definition.scss +67 -67
- package/styles/context-menu/_bigger.scss +111 -111
- package/styles/context-menu/_bootstrap-dark-definition.scss +50 -50
- package/styles/context-menu/_bootstrap-definition.scss +50 -50
- package/styles/context-menu/_bootstrap4-definition.scss +52 -50
- package/styles/context-menu/_bootstrap5-definition.scss +52 -52
- package/styles/context-menu/_bootstrap5.3-definition.scss +52 -52
- package/styles/context-menu/_fabric-dark-definition.scss +50 -50
- package/styles/context-menu/_fabric-definition.scss +50 -50
- package/styles/context-menu/_fluent-definition.scss +51 -51
- package/styles/context-menu/_fluent2-definition.scss +52 -52
- package/styles/context-menu/_fusionnew-definition.scss +52 -51
- package/styles/context-menu/_highcontrast-definition.scss +50 -50
- package/styles/context-menu/_highcontrast-light-definition.scss +50 -50
- package/styles/context-menu/_layout-mixin.scss +140 -140
- package/styles/context-menu/_layout.scss +179 -174
- package/styles/context-menu/_material-dark-definition.scss +50 -50
- package/styles/context-menu/_material-definition.scss +50 -50
- package/styles/context-menu/_material3-definition.scss +51 -51
- package/styles/context-menu/_tailwind-definition.scss +52 -52
- package/styles/context-menu/_tailwind3-definition.scss +55 -55
- package/styles/context-menu/_theme-mixin.scss +91 -91
- package/styles/context-menu/_theme.scss +77 -69
- package/styles/context-menu/bds.css +7 -1
- package/styles/context-menu/bootstrap-dark.css +7 -1
- package/styles/context-menu/bootstrap.css +7 -1
- package/styles/context-menu/bootstrap4.css +8 -2
- package/styles/context-menu/bootstrap5-dark.css +14 -8
- package/styles/context-menu/bootstrap5.3.css +7 -1
- package/styles/context-menu/bootstrap5.css +7 -1
- package/styles/context-menu/fabric-dark.css +7 -1
- package/styles/context-menu/fabric.css +7 -1
- package/styles/context-menu/fluent-dark.css +7 -1
- package/styles/context-menu/fluent.css +7 -1
- package/styles/context-menu/fluent2.css +7 -1
- package/styles/context-menu/highcontrast-light.css +7 -1
- package/styles/context-menu/highcontrast.css +7 -1
- package/styles/context-menu/icons/_bds.scss +31 -31
- package/styles/context-menu/icons/_bootstrap-dark.scss +31 -31
- package/styles/context-menu/icons/_bootstrap.scss +31 -31
- package/styles/context-menu/icons/_bootstrap4.scss +31 -31
- package/styles/context-menu/icons/_bootstrap5.3.scss +31 -31
- package/styles/context-menu/icons/_bootstrap5.scss +31 -31
- package/styles/context-menu/icons/_fabric-dark.scss +31 -31
- package/styles/context-menu/icons/_fabric.scss +31 -31
- package/styles/context-menu/icons/_fluent.scss +31 -31
- package/styles/context-menu/icons/_fluent2.scss +31 -31
- package/styles/context-menu/icons/_fusionnew.scss +31 -31
- package/styles/context-menu/icons/_highcontrast-light.scss +31 -31
- package/styles/context-menu/icons/_highcontrast.scss +31 -31
- package/styles/context-menu/icons/_material-dark.scss +31 -31
- package/styles/context-menu/icons/_material.scss +31 -31
- package/styles/context-menu/icons/_material3.scss +31 -31
- package/styles/context-menu/icons/_tailwind-dark.scss +31 -31
- package/styles/context-menu/icons/_tailwind.scss +31 -31
- package/styles/context-menu/icons/_tailwind3.scss +31 -31
- package/styles/context-menu/material-dark.css +8 -1
- package/styles/context-menu/material.css +7 -1
- package/styles/context-menu/material3-dark.css +8 -1
- package/styles/context-menu/material3-dark.scss +1 -1
- package/styles/context-menu/material3.css +8 -1
- package/styles/context-menu/material3.scss +1 -1
- package/styles/context-menu/tailwind-dark.css +7 -1
- package/styles/context-menu/tailwind.css +7 -1
- package/styles/context-menu/tailwind3.css +7 -1
- package/styles/fabric-dark-lite.css +76 -11
- package/styles/fabric-dark.css +78 -13
- package/styles/fabric-lite.css +108 -43
- package/styles/fabric.css +110 -45
- package/styles/fluent-dark-lite.css +88 -25
- package/styles/fluent-dark.css +91 -28
- package/styles/fluent-lite.css +88 -25
- package/styles/fluent.css +91 -28
- package/styles/fluent2-lite.css +91 -36
- package/styles/fluent2.css +93 -38
- package/styles/h-scroll/_all.scss +2 -2
- package/styles/h-scroll/_bds-definition.scss +83 -83
- package/styles/h-scroll/_bigger.scss +39 -39
- package/styles/h-scroll/_bootstrap-dark-definition.scss +57 -57
- package/styles/h-scroll/_bootstrap-definition.scss +56 -56
- package/styles/h-scroll/_bootstrap4-definition.scss +58 -56
- package/styles/h-scroll/_bootstrap5-definition.scss +83 -83
- package/styles/h-scroll/_bootstrap5.3-definition.scss +83 -83
- package/styles/h-scroll/_fabric-dark-definition.scss +58 -58
- package/styles/h-scroll/_fabric-definition.scss +55 -55
- package/styles/h-scroll/_fluent-definition.scss +83 -83
- package/styles/h-scroll/_fluent2-definition.scss +83 -83
- package/styles/h-scroll/_fusionnew-definition.scss +83 -83
- package/styles/h-scroll/_highcontrast-definition.scss +56 -56
- package/styles/h-scroll/_highcontrast-light-definition.scss +59 -59
- package/styles/h-scroll/_layout.scss +160 -160
- package/styles/h-scroll/_material-dark-definition.scss +85 -85
- package/styles/h-scroll/_material-definition.scss +82 -82
- package/styles/h-scroll/_material3-definition.scss +83 -83
- package/styles/h-scroll/_tailwind-definition.scss +83 -83
- package/styles/h-scroll/_tailwind3-definition.scss +83 -83
- package/styles/h-scroll/_theme.scss +146 -146
- package/styles/h-scroll/bds.css +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +6 -6
- package/styles/h-scroll/bootstrap5-dark.css +7 -7
- package/styles/h-scroll/bootstrap5.3.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +2 -2
- package/styles/h-scroll/fluent-dark.css +1 -1
- package/styles/h-scroll/fluent.css +1 -1
- package/styles/h-scroll/fluent2.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_bds.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap5.3.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -49
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
- package/styles/h-scroll/icons/_fabric.scss +49 -49
- package/styles/h-scroll/icons/_fluent.scss +49 -49
- package/styles/h-scroll/icons/_fluent2.scss +49 -49
- package/styles/h-scroll/icons/_fusionnew.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast.scss +49 -49
- package/styles/h-scroll/icons/_material-dark.scss +49 -49
- package/styles/h-scroll/icons/_material.scss +49 -49
- package/styles/h-scroll/icons/_material3.scss +49 -49
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/icons/_tailwind3.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/material3-dark.css +1 -1
- package/styles/h-scroll/material3-dark.scss +1 -1
- package/styles/h-scroll/material3.css +1 -1
- package/styles/h-scroll/material3.scss +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/h-scroll/tailwind3.css +1 -1
- package/styles/highcontrast-light-lite.css +70 -5
- package/styles/highcontrast-light.css +72 -7
- package/styles/highcontrast-lite.css +73 -8
- package/styles/highcontrast.css +75 -10
- package/styles/material-dark-lite.css +75 -9
- package/styles/material-dark.css +77 -11
- package/styles/material-lite.css +81 -16
- package/styles/material.css +83 -18
- package/styles/material3-dark-lite.css +81 -15
- package/styles/material3-dark.css +91 -20
- package/styles/material3-dark.scss +1 -1
- package/styles/material3-lite.css +81 -15
- package/styles/material3.css +91 -20
- package/styles/material3.scss +1 -1
- package/styles/menu/_all.scss +2 -2
- package/styles/menu/_bds-definition.scss +65 -65
- package/styles/menu/_bigger.scss +381 -381
- package/styles/menu/_bootstrap-dark-definition.scss +61 -61
- package/styles/menu/_bootstrap-definition.scss +65 -65
- package/styles/menu/_bootstrap4-definition.scss +66 -64
- package/styles/menu/_bootstrap5-definition.scss +66 -66
- package/styles/menu/_bootstrap5.3-definition.scss +66 -66
- package/styles/menu/_fabric-dark-definition.scss +61 -61
- package/styles/menu/_fabric-definition.scss +64 -64
- package/styles/menu/_fluent-definition.scss +66 -66
- package/styles/menu/_fluent2-definition.scss +67 -67
- package/styles/menu/_fusionnew-definition.scss +66 -66
- package/styles/menu/_highcontrast-definition.scss +65 -65
- package/styles/menu/_highcontrast-light-definition.scss +61 -61
- package/styles/menu/_layout.scss +501 -501
- package/styles/menu/_material-dark-definition.scss +61 -61
- package/styles/menu/_material-definition.scss +64 -64
- package/styles/menu/_material3-definition.scss +66 -66
- package/styles/menu/_tailwind-definition.scss +65 -65
- package/styles/menu/_tailwind3-definition.scss +66 -66
- package/styles/menu/_theme.scss +428 -418
- package/styles/menu/bootstrap4.css +13 -13
- package/styles/menu/bootstrap5-dark.css +14 -14
- package/styles/menu/fluent2.css +12 -3
- package/styles/menu/icons/_bds.scss +104 -104
- package/styles/menu/icons/_bootstrap-dark.scss +105 -105
- package/styles/menu/icons/_bootstrap.scss +104 -104
- package/styles/menu/icons/_bootstrap4.scss +104 -104
- package/styles/menu/icons/_bootstrap5.3.scss +104 -104
- package/styles/menu/icons/_bootstrap5.scss +104 -104
- package/styles/menu/icons/_fabric-dark.scss +104 -104
- package/styles/menu/icons/_fabric.scss +104 -104
- package/styles/menu/icons/_fluent.scss +104 -104
- package/styles/menu/icons/_fluent2.scss +104 -104
- package/styles/menu/icons/_fusionnew.scss +104 -104
- package/styles/menu/icons/_highcontrast-light.scss +104 -104
- package/styles/menu/icons/_highcontrast.scss +104 -104
- package/styles/menu/icons/_material-dark.scss +104 -104
- package/styles/menu/icons/_material.scss +104 -104
- package/styles/menu/icons/_material3.scss +104 -104
- package/styles/menu/icons/_tailwind-dark.scss +104 -104
- package/styles/menu/icons/_tailwind.scss +104 -104
- package/styles/menu/icons/_tailwind3.scss +104 -104
- package/styles/menu/material3-dark.scss +1 -1
- package/styles/menu/material3.scss +1 -1
- package/styles/pager/_all.scss +2 -2
- package/styles/pager/_bds-definition.scss +152 -152
- package/styles/pager/_bigger.scss +364 -363
- package/styles/pager/_bootstrap-dark-definition.scss +152 -151
- package/styles/pager/_bootstrap-definition.scss +151 -151
- package/styles/pager/_bootstrap4-definition.scss +152 -151
- package/styles/pager/_bootstrap5-definition.scss +166 -166
- package/styles/pager/_bootstrap5.3-definition.scss +166 -166
- package/styles/pager/_fabric-dark-definition.scss +149 -149
- package/styles/pager/_fabric-definition.scss +149 -149
- package/styles/pager/_fluent-definition.scss +153 -153
- package/styles/pager/_fluent2-definition.scss +152 -152
- package/styles/pager/_fusionnew-definition.scss +166 -166
- package/styles/pager/_highcontrast-definition.scss +149 -149
- package/styles/pager/_highcontrast-light-definition.scss +149 -149
- package/styles/pager/_layout.scss +776 -768
- package/styles/pager/_material-dark-definition.scss +150 -150
- package/styles/pager/_material-definition.scss +150 -150
- package/styles/pager/_material3-definition.scss +166 -166
- package/styles/pager/_tailwind-definition.scss +152 -152
- package/styles/pager/_tailwind3-definition.scss +166 -166
- package/styles/pager/_theme.scss +189 -189
- package/styles/pager/bds.css +13 -3
- package/styles/pager/bootstrap-dark.css +17 -7
- package/styles/pager/bootstrap.css +13 -3
- package/styles/pager/bootstrap4.css +14 -4
- package/styles/pager/bootstrap5-dark.css +21 -17
- package/styles/pager/bootstrap5.3.css +7 -3
- package/styles/pager/bootstrap5.css +12 -8
- package/styles/pager/fabric-dark.css +13 -3
- package/styles/pager/fabric.css +15 -5
- package/styles/pager/fluent-dark.css +14 -4
- package/styles/pager/fluent.css +14 -4
- package/styles/pager/fluent2.css +13 -3
- package/styles/pager/highcontrast-light.css +13 -3
- package/styles/pager/highcontrast.css +13 -3
- package/styles/pager/icons/_bds.scss +50 -50
- package/styles/pager/icons/_bootstrap-dark.scss +50 -50
- package/styles/pager/icons/_bootstrap.scss +50 -50
- package/styles/pager/icons/_bootstrap4.scss +50 -50
- package/styles/pager/icons/_bootstrap5.3.scss +50 -50
- package/styles/pager/icons/_bootstrap5.scss +50 -50
- package/styles/pager/icons/_fabric-dark.scss +50 -50
- package/styles/pager/icons/_fabric.scss +50 -50
- package/styles/pager/icons/_fluent.scss +50 -50
- package/styles/pager/icons/_fluent2.scss +50 -50
- package/styles/pager/icons/_fusionnew.scss +50 -50
- package/styles/pager/icons/_highcontrast-light.scss +50 -50
- package/styles/pager/icons/_highcontrast.scss +46 -46
- package/styles/pager/icons/_material-dark.scss +50 -50
- package/styles/pager/icons/_material.scss +46 -46
- package/styles/pager/icons/_material3.scss +50 -50
- package/styles/pager/icons/_tailwind.scss +50 -50
- package/styles/pager/icons/_tailwind3.scss +50 -50
- package/styles/pager/material-dark.css +13 -3
- package/styles/pager/material.css +13 -3
- package/styles/pager/material3-dark.css +20 -5
- package/styles/pager/material3-dark.scss +1 -1
- package/styles/pager/material3.css +20 -5
- package/styles/pager/material3.scss +1 -1
- package/styles/pager/tailwind-dark.css +13 -3
- package/styles/pager/tailwind.css +13 -3
- package/styles/pager/tailwind3.css +14 -4
- package/styles/sidebar/_all.scss +3 -3
- package/styles/sidebar/_bds-definition.scss +53 -53
- package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
- package/styles/sidebar/_bootstrap-definition.scss +4 -4
- package/styles/sidebar/_bootstrap4-definition.scss +4 -4
- package/styles/sidebar/_bootstrap5-definition.scss +6 -6
- package/styles/sidebar/_bootstrap5.3-definition.scss +6 -6
- package/styles/sidebar/_fabric-dark-definition.scss +4 -4
- package/styles/sidebar/_fabric-definition.scss +4 -4
- package/styles/sidebar/_fluent-definition.scss +6 -6
- package/styles/sidebar/_fluent2-definition.scss +8 -8
- package/styles/sidebar/_fusionnew-definition.scss +6 -6
- package/styles/sidebar/_highcontrast-definition.scss +4 -4
- package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_layout.scss +1 -1
- package/styles/sidebar/_material-dark-definition.scss +4 -4
- package/styles/sidebar/_material-definition.scss +6 -6
- package/styles/sidebar/_material3-definition.scss +4 -4
- package/styles/sidebar/_tailwind-definition.scss +6 -6
- package/styles/sidebar/_tailwind3-definition.scss +6 -6
- package/styles/sidebar/_theme.scss +251 -251
- package/styles/sidebar/bootstrap5-dark.css +1 -1
- package/styles/sidebar/material3-dark.scss +1 -1
- package/styles/sidebar/material3.scss +1 -1
- package/styles/stepper/_bds-definition.scss +72 -72
- package/styles/stepper/_bigger.scss +53 -53
- package/styles/stepper/_bootstrap4-definition.scss +4 -2
- package/styles/stepper/_bootstrap5.3-definition.scss +72 -72
- package/styles/stepper/_fluent2-definition.scss +72 -72
- package/styles/stepper/_material-dark-definition.scss +4 -2
- package/styles/stepper/_material-definition.scss +7 -5
- package/styles/stepper/_tailwind3-definition.scss +72 -72
- package/styles/stepper/bootstrap-dark.css +2 -2
- package/styles/stepper/bootstrap4.css +2 -2
- package/styles/stepper/bootstrap5-dark.css +20 -20
- package/styles/stepper/bootstrap5.css +2 -2
- package/styles/stepper/fabric-dark.css +2 -2
- package/styles/stepper/fabric.css +2 -2
- package/styles/stepper/fluent-dark.css +1 -1
- package/styles/stepper/fluent.css +1 -1
- package/styles/stepper/icons/_bds.scss +5 -5
- package/styles/stepper/icons/_bootstrap5.3.scss +5 -5
- package/styles/stepper/icons/_fluent2.scss +5 -5
- package/styles/stepper/icons/_tailwind3.scss +5 -5
- package/styles/stepper/material-dark.css +2 -2
- package/styles/stepper/material.css +8 -8
- package/styles/stepper/material3-dark.scss +1 -1
- package/styles/stepper/material3.scss +1 -1
- package/styles/tab/_all.scss +2 -2
- package/styles/tab/_bds-definition.scss +661 -661
- package/styles/tab/_bigger.scss +1276 -1276
- package/styles/tab/_bootstrap-dark-definition.scss +630 -628
- package/styles/tab/_bootstrap-definition.scss +629 -629
- package/styles/tab/_bootstrap4-definition.scss +637 -635
- package/styles/tab/_bootstrap5-definition.scss +635 -633
- package/styles/tab/_bootstrap5.3-definition.scss +636 -634
- package/styles/tab/_fabric-dark-definition.scss +641 -641
- package/styles/tab/_fabric-definition.scss +643 -643
- package/styles/tab/_fluent-definition.scss +637 -635
- package/styles/tab/_fluent2-definition.scss +664 -664
- package/styles/tab/_fusionnew-definition.scss +632 -632
- package/styles/tab/_highcontrast-definition.scss +667 -667
- package/styles/tab/_highcontrast-light-definition.scss +666 -666
- package/styles/tab/_icons.scss +34 -34
- package/styles/tab/_layout.scss +2191 -2187
- package/styles/tab/_material-dark-definition.scss +646 -646
- package/styles/tab/_material-definition.scss +645 -645
- package/styles/tab/_material3-definition.scss +634 -634
- package/styles/tab/_tailwind-definition.scss +648 -648
- package/styles/tab/_tailwind3-definition.scss +634 -634
- package/styles/tab/_theme.scss +1580 -1580
- package/styles/tab/bds.css +5 -0
- package/styles/tab/bootstrap-dark.css +35 -30
- package/styles/tab/bootstrap.css +7 -2
- package/styles/tab/bootstrap4.css +38 -33
- package/styles/tab/bootstrap5-dark.css +60 -55
- package/styles/tab/bootstrap5.3.css +18 -13
- package/styles/tab/bootstrap5.css +40 -35
- package/styles/tab/fabric-dark.css +5 -0
- package/styles/tab/fabric.css +10 -5
- package/styles/tab/fluent-dark.css +19 -14
- package/styles/tab/fluent.css +19 -14
- package/styles/tab/fluent2.css +7 -2
- package/styles/tab/highcontrast-light.css +5 -0
- package/styles/tab/highcontrast.css +6 -1
- package/styles/tab/icons/_bds.scss +90 -90
- package/styles/tab/icons/_bootstrap-dark.scss +98 -98
- package/styles/tab/icons/_bootstrap.scss +98 -98
- package/styles/tab/icons/_bootstrap4.scss +101 -101
- package/styles/tab/icons/_bootstrap5.3.scss +90 -90
- package/styles/tab/icons/_bootstrap5.scss +90 -90
- package/styles/tab/icons/_fabric-dark.scss +98 -98
- package/styles/tab/icons/_fabric.scss +98 -98
- package/styles/tab/icons/_fluent.scss +98 -98
- package/styles/tab/icons/_fluent2.scss +98 -98
- package/styles/tab/icons/_fusionnew.scss +90 -90
- package/styles/tab/icons/_highcontrast-light.scss +90 -90
- package/styles/tab/icons/_highcontrast.scss +101 -101
- package/styles/tab/icons/_material-dark.scss +90 -90
- package/styles/tab/icons/_material.scss +90 -90
- package/styles/tab/icons/_material3.scss +90 -90
- package/styles/tab/icons/_tailwind.scss +90 -90
- package/styles/tab/icons/_tailwind3.scss +90 -90
- package/styles/tab/material-dark.css +5 -0
- package/styles/tab/material.css +6 -1
- package/styles/tab/material3-dark.css +15 -10
- package/styles/tab/material3-dark.scss +1 -1
- package/styles/tab/material3.css +15 -10
- package/styles/tab/material3.scss +1 -1
- package/styles/tab/tailwind-dark.css +13 -8
- package/styles/tab/tailwind.css +13 -8
- package/styles/tab/tailwind3.css +32 -26
- package/styles/tailwind-dark-lite.css +80 -15
- package/styles/tailwind-dark.css +84 -19
- package/styles/tailwind-lite.css +78 -13
- package/styles/tailwind.css +82 -17
- package/styles/tailwind3-lite.css +105 -58
- package/styles/tailwind3.css +109 -61
- package/styles/toolbar/_all.scss +2 -2
- package/styles/toolbar/_bds-definition.scss +197 -197
- package/styles/toolbar/_bigger.scss +323 -323
- package/styles/toolbar/_bootstrap-dark-definition.scss +193 -193
- package/styles/toolbar/_bootstrap-definition.scss +203 -203
- package/styles/toolbar/_bootstrap4-definition.scss +200 -198
- package/styles/toolbar/_bootstrap5-definition.scss +198 -198
- package/styles/toolbar/_bootstrap5.3-definition.scss +198 -198
- package/styles/toolbar/_fabric-dark-definition.scss +207 -207
- package/styles/toolbar/_fabric-definition.scss +195 -195
- package/styles/toolbar/_fluent-definition.scss +197 -197
- package/styles/toolbar/_fluent2-definition.scss +198 -198
- package/styles/toolbar/_fusionnew-definition.scss +198 -198
- package/styles/toolbar/_highcontrast-definition.scss +204 -204
- package/styles/toolbar/_highcontrast-light-definition.scss +218 -218
- package/styles/toolbar/_layout.scss +781 -748
- package/styles/toolbar/_material-dark-definition.scss +233 -231
- package/styles/toolbar/_material-definition.scss +221 -219
- package/styles/toolbar/_material3-definition.scss +199 -199
- package/styles/toolbar/_tailwind-definition.scss +197 -197
- package/styles/toolbar/_tailwind3-definition.scss +199 -199
- package/styles/toolbar/_theme.scss +410 -436
- package/styles/toolbar/bds.css +23 -2
- package/styles/toolbar/bootstrap-dark.css +25 -4
- package/styles/toolbar/bootstrap.css +25 -4
- package/styles/toolbar/bootstrap4.css +35 -14
- package/styles/toolbar/bootstrap5-dark.css +70 -49
- package/styles/toolbar/bootstrap5.3.css +33 -4
- package/styles/toolbar/bootstrap5.css +46 -25
- package/styles/toolbar/fabric-dark.css +23 -2
- package/styles/toolbar/fabric.css +32 -11
- package/styles/toolbar/fluent-dark.css +23 -2
- package/styles/toolbar/fluent.css +23 -2
- package/styles/toolbar/fluent2.css +30 -28
- package/styles/toolbar/highcontrast-light.css +23 -2
- package/styles/toolbar/highcontrast.css +25 -4
- package/styles/toolbar/icons/_bds.scss +14 -14
- package/styles/toolbar/icons/_bootstrap-dark.scss +14 -14
- package/styles/toolbar/icons/_bootstrap.scss +14 -14
- package/styles/toolbar/icons/_bootstrap4.scss +14 -14
- package/styles/toolbar/icons/_bootstrap5.3.scss +14 -14
- package/styles/toolbar/icons/_bootstrap5.scss +14 -14
- package/styles/toolbar/icons/_fabric-dark.scss +14 -14
- package/styles/toolbar/icons/_fabric.scss +14 -14
- package/styles/toolbar/icons/_fluent.scss +14 -14
- package/styles/toolbar/icons/_fluent2.scss +14 -14
- package/styles/toolbar/icons/_fusionnew.scss +14 -14
- package/styles/toolbar/icons/_highcontrast-light.scss +14 -14
- package/styles/toolbar/icons/_highcontrast.scss +14 -14
- package/styles/toolbar/icons/_material-dark.scss +14 -14
- package/styles/toolbar/icons/_material.scss +14 -14
- package/styles/toolbar/icons/_material3.scss +14 -14
- package/styles/toolbar/icons/_tailwind.scss +14 -14
- package/styles/toolbar/icons/_tailwind3.scss +14 -14
- package/styles/toolbar/material-dark.css +25 -4
- package/styles/toolbar/material.css +25 -4
- package/styles/toolbar/material3-dark.css +23 -2
- package/styles/toolbar/material3-dark.scss +1 -1
- package/styles/toolbar/material3.css +23 -2
- package/styles/toolbar/material3.scss +1 -1
- package/styles/toolbar/tailwind-dark.css +23 -2
- package/styles/toolbar/tailwind.css +23 -2
- package/styles/toolbar/tailwind3.css +30 -28
- package/styles/treeview/_all.scss +2 -2
- package/styles/treeview/_bds-definition.scss +131 -131
- package/styles/treeview/_bigger.scss +410 -406
- package/styles/treeview/_bootstrap-dark-definition.scss +118 -118
- package/styles/treeview/_bootstrap-definition.scss +113 -113
- package/styles/treeview/_bootstrap4-definition.scss +143 -141
- package/styles/treeview/_bootstrap5-definition.scss +122 -120
- package/styles/treeview/_bootstrap5.3-definition.scss +119 -119
- package/styles/treeview/_fabric-dark-definition.scss +116 -116
- package/styles/treeview/_fabric-definition.scss +112 -112
- package/styles/treeview/_fluent-definition.scss +122 -120
- package/styles/treeview/_fluent2-definition.scss +128 -128
- package/styles/treeview/_fusionnew-definition.scss +120 -120
- package/styles/treeview/_highcontrast-definition.scss +118 -118
- package/styles/treeview/_highcontrast-light-definition.scss +123 -123
- package/styles/treeview/_layout.scss +769 -761
- package/styles/treeview/_material-dark-definition.scss +114 -114
- package/styles/treeview/_material-definition.scss +112 -112
- package/styles/treeview/_material3-definition.scss +110 -110
- package/styles/treeview/_tailwind-definition.scss +126 -124
- package/styles/treeview/_tailwind3-definition.scss +126 -126
- package/styles/treeview/_theme.scss +352 -350
- package/styles/treeview/bds.css +8 -0
- package/styles/treeview/bootstrap-dark.css +8 -0
- package/styles/treeview/bootstrap.css +8 -0
- package/styles/treeview/bootstrap4.css +17 -9
- package/styles/treeview/bootstrap5-dark.css +20 -12
- package/styles/treeview/bootstrap5.3.css +15 -7
- package/styles/treeview/bootstrap5.css +11 -3
- package/styles/treeview/fabric-dark.css +8 -0
- package/styles/treeview/fabric.css +15 -7
- package/styles/treeview/fluent-dark.css +11 -5
- package/styles/treeview/fluent.css +11 -5
- package/styles/treeview/fluent2.css +8 -0
- package/styles/treeview/highcontrast-light.css +8 -0
- package/styles/treeview/highcontrast.css +8 -0
- package/styles/treeview/icons/_bds.scss +44 -44
- package/styles/treeview/icons/_bootstrap-dark.scss +40 -40
- package/styles/treeview/icons/_bootstrap.scss +40 -40
- package/styles/treeview/icons/_bootstrap4.scss +40 -40
- package/styles/treeview/icons/_bootstrap5.3.scss +44 -44
- package/styles/treeview/icons/_bootstrap5.scss +44 -44
- package/styles/treeview/icons/_fabric-dark.scss +44 -44
- package/styles/treeview/icons/_fabric.scss +44 -44
- package/styles/treeview/icons/_fluent.scss +44 -44
- package/styles/treeview/icons/_fluent2.scss +44 -44
- package/styles/treeview/icons/_fusionnew.scss +44 -44
- package/styles/treeview/icons/_highcontrast-light.scss +44 -44
- package/styles/treeview/icons/_highcontrast.scss +44 -44
- package/styles/treeview/icons/_material-dark.scss +44 -44
- package/styles/treeview/icons/_material.scss +44 -44
- package/styles/treeview/icons/_material3.scss +44 -44
- package/styles/treeview/icons/_tailwind-dark.scss +44 -44
- package/styles/treeview/icons/_tailwind.scss +44 -44
- package/styles/treeview/icons/_tailwind3.scss +44 -44
- package/styles/treeview/material-dark.css +8 -0
- package/styles/treeview/material.css +8 -0
- package/styles/treeview/material3-dark.css +9 -1
- package/styles/treeview/material3-dark.scss +1 -1
- package/styles/treeview/material3.css +9 -1
- package/styles/treeview/material3.scss +1 -1
- package/styles/treeview/tailwind-dark.css +10 -2
- package/styles/treeview/tailwind.css +10 -2
- package/styles/treeview/tailwind3.css +10 -1
- package/styles/v-scroll/_all.scss +2 -2
- package/styles/v-scroll/_bds-definition.scss +49 -49
- package/styles/v-scroll/_bigger.scss +28 -28
- package/styles/v-scroll/_bootstrap-dark-definition.scss +51 -51
- package/styles/v-scroll/_bootstrap-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap5.3-definition.scss +49 -49
- package/styles/v-scroll/_fabric-dark-definition.scss +52 -52
- package/styles/v-scroll/_fabric-definition.scss +50 -50
- package/styles/v-scroll/_fluent-definition.scss +49 -49
- package/styles/v-scroll/_fluent2-definition.scss +49 -49
- package/styles/v-scroll/_fusionnew-definition.scss +49 -49
- package/styles/v-scroll/_highcontrast-definition.scss +50 -50
- package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
- package/styles/v-scroll/_layout.scss +135 -135
- package/styles/v-scroll/_material-dark-definition.scss +79 -79
- package/styles/v-scroll/_material-definition.scss +77 -77
- package/styles/v-scroll/_material3-definition.scss +49 -49
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/_tailwind3-definition.scss +49 -49
- package/styles/v-scroll/_theme.scss +114 -114
- package/styles/v-scroll/fabric-dark.css +1 -1
- package/styles/v-scroll/fabric.css +1 -1
- package/styles/v-scroll/icons/_bds.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap4.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap5.3.scss +27 -27
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -27
- package/styles/v-scroll/icons/_fabric-dark.scss +27 -27
- package/styles/v-scroll/icons/_fabric.scss +27 -27
- package/styles/v-scroll/icons/_fluent.scss +27 -27
- package/styles/v-scroll/icons/_fluent2.scss +27 -27
- package/styles/v-scroll/icons/_fusionnew.scss +27 -27
- package/styles/v-scroll/icons/_highcontrast-light.scss +27 -27
- package/styles/v-scroll/icons/_highcontrast.scss +27 -27
- package/styles/v-scroll/icons/_material-dark.scss +27 -27
- package/styles/v-scroll/icons/_material.scss +27 -27
- package/styles/v-scroll/icons/_material3.scss +27 -27
- package/styles/v-scroll/icons/_tailwind.scss +27 -27
- package/styles/v-scroll/icons/_tailwind3.scss +27 -27
- package/styles/v-scroll/material3-dark.scss +1 -1
- package/styles/v-scroll/material3.scss +1 -1
- package/tslint.json +111 -111
- package/helpers/e2e/accordionHelper.d.ts +0 -56
- package/helpers/e2e/accordionHelper.js +0 -71
- package/helpers/e2e/contextmenuHelper.d.ts +0 -37
- package/helpers/e2e/contextmenuHelper.js +0 -53
- package/helpers/e2e/index.d.ts +0 -7
- package/helpers/e2e/index.js +0 -14
- package/helpers/e2e/menuHelper.d.ts +0 -37
- package/helpers/e2e/menuHelper.js +0 -53
- package/helpers/e2e/sidebarHelper.d.ts +0 -94
- package/helpers/e2e/sidebarHelper.js +0 -110
- package/helpers/e2e/tabHelper.d.ts +0 -60
- package/helpers/e2e/tabHelper.js +0 -74
- package/helpers/e2e/toolbarHelper.d.ts +0 -60
- package/helpers/e2e/toolbarHelper.js +0 -74
- package/helpers/e2e/treeview.d.ts +0 -50
- package/helpers/e2e/treeview.js +0 -80
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
padding-right: 0;
|
|
68
68
|
padding-top: 8px;
|
|
69
69
|
}
|
|
70
|
+
.e-pager div.e-parentmsgbar span.e-rightalign {
|
|
71
|
+
text-align: right;
|
|
72
|
+
}
|
|
70
73
|
.e-pager .e-pagesizes {
|
|
71
74
|
display: inline;
|
|
72
75
|
}
|
|
@@ -122,7 +125,7 @@
|
|
|
122
125
|
text-decoration: none;
|
|
123
126
|
}
|
|
124
127
|
.e-pager .e-currentitem {
|
|
125
|
-
border: 3px solid
|
|
128
|
+
border: 3px solid rgb(134, 182.5, 254);
|
|
126
129
|
font-style: normal;
|
|
127
130
|
font-variant: normal;
|
|
128
131
|
font-weight: 400;
|
|
@@ -354,7 +357,7 @@
|
|
|
354
357
|
padding: 7px 10.5px 8px 9.5px;
|
|
355
358
|
}
|
|
356
359
|
.e-pager.e-rtl .e-numericitem.e-currentitem {
|
|
357
|
-
border-left-color:
|
|
360
|
+
border-left-color: rgb(134, 182.5, 254);
|
|
358
361
|
border-left-style: solid;
|
|
359
362
|
border-left-width: 3px;
|
|
360
363
|
}
|
|
@@ -477,7 +480,8 @@
|
|
|
477
480
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
478
481
|
float: initial;
|
|
479
482
|
margin-left: 0;
|
|
480
|
-
margin-top:
|
|
483
|
+
margin-top: 0;
|
|
484
|
+
padding-top: 0;
|
|
481
485
|
}
|
|
482
486
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
483
487
|
float: right;
|
|
@@ -572,7 +576,7 @@
|
|
|
572
576
|
}
|
|
573
577
|
.e-pager .e-currentitem,
|
|
574
578
|
.e-pager .e-currentitem:hover {
|
|
575
|
-
border-right-color:
|
|
579
|
+
border-right-color: rgb(134, 182.5, 254);
|
|
576
580
|
background: #e9ecef;
|
|
577
581
|
color: #0d6efd;
|
|
578
582
|
opacity: 1;
|
|
@@ -586,7 +590,7 @@
|
|
|
586
590
|
.e-pager .e-mprev.e-focused,
|
|
587
591
|
.e-pager .e-mnext.e-focused,
|
|
588
592
|
.e-pager .e-mlast.e-focused {
|
|
589
|
-
background-color:
|
|
593
|
+
background-color: rgb(239.075, 241.35, 243.625);
|
|
590
594
|
}
|
|
591
595
|
.e-pager .e-currentitem.e-numericitem.e-focused {
|
|
592
596
|
background: #e9ecef;
|
|
@@ -663,7 +667,7 @@
|
|
|
663
667
|
.e-hscroll {
|
|
664
668
|
display: block;
|
|
665
669
|
position: relative;
|
|
666
|
-
width:
|
|
670
|
+
width: 100%;
|
|
667
671
|
}
|
|
668
672
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
669
673
|
padding-left: 40px;
|
|
@@ -1286,6 +1290,9 @@
|
|
|
1286
1290
|
min-width: 28px;
|
|
1287
1291
|
padding: 4px;
|
|
1288
1292
|
}
|
|
1293
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1294
|
+
pointer-events: none;
|
|
1295
|
+
}
|
|
1289
1296
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1290
1297
|
margin: 5px 10px;
|
|
1291
1298
|
min-height: 24px;
|
|
@@ -1301,6 +1308,9 @@
|
|
|
1301
1308
|
.e-toolbar .e-toolbar-item > * {
|
|
1302
1309
|
text-overflow: ellipsis;
|
|
1303
1310
|
}
|
|
1311
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1312
|
+
pointer-events: auto;
|
|
1313
|
+
}
|
|
1304
1314
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1305
1315
|
display: none;
|
|
1306
1316
|
}
|
|
@@ -1463,6 +1473,9 @@
|
|
|
1463
1473
|
min-width: 100%;
|
|
1464
1474
|
text-overflow: ellipsis;
|
|
1465
1475
|
}
|
|
1476
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1477
|
+
pointer-events: auto;
|
|
1478
|
+
}
|
|
1466
1479
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1467
1480
|
min-width: 100%;
|
|
1468
1481
|
}
|
|
@@ -1576,6 +1589,9 @@
|
|
|
1576
1589
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1577
1590
|
height: auto;
|
|
1578
1591
|
}
|
|
1592
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1593
|
+
pointer-events: auto;
|
|
1594
|
+
}
|
|
1579
1595
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1580
1596
|
-ms-flex-item-align: center;
|
|
1581
1597
|
align-self: center;
|
|
@@ -1589,12 +1605,18 @@
|
|
|
1589
1605
|
display: -ms-inline-flexbox;
|
|
1590
1606
|
display: inline-flex;
|
|
1591
1607
|
}
|
|
1608
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1609
|
+
pointer-events: auto;
|
|
1610
|
+
}
|
|
1592
1611
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1593
1612
|
display: table;
|
|
1594
1613
|
}
|
|
1595
1614
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1596
1615
|
margin-right: 8px;
|
|
1597
1616
|
}
|
|
1617
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1618
|
+
margin-left: 8px;
|
|
1619
|
+
}
|
|
1598
1620
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1599
1621
|
padding: 4px;
|
|
1600
1622
|
}
|
|
@@ -1625,6 +1647,7 @@
|
|
|
1625
1647
|
}
|
|
1626
1648
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1627
1649
|
margin-left: 0;
|
|
1650
|
+
margin-right: 8px;
|
|
1628
1651
|
}
|
|
1629
1652
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1630
1653
|
margin-left: 8px;
|
|
@@ -1632,11 +1655,13 @@
|
|
|
1632
1655
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1633
1656
|
margin-left: 0;
|
|
1634
1657
|
}
|
|
1635
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1658
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1659
|
+
margin-right: 0;
|
|
1660
|
+
}
|
|
1636
1661
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1637
1662
|
margin-right: 0;
|
|
1663
|
+
margin-left: 8px;
|
|
1638
1664
|
}
|
|
1639
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1640
1665
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1641
1666
|
margin-right: 8px;
|
|
1642
1667
|
}
|
|
@@ -1690,7 +1715,7 @@
|
|
|
1690
1715
|
color: #212529;
|
|
1691
1716
|
}
|
|
1692
1717
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active {
|
|
1693
|
-
background:
|
|
1718
|
+
background: rgb(86.4, 93.6, 100);
|
|
1694
1719
|
-webkit-box-shadow: none;
|
|
1695
1720
|
box-shadow: none;
|
|
1696
1721
|
}
|
|
@@ -1698,18 +1723,18 @@
|
|
|
1698
1723
|
color: #fff;
|
|
1699
1724
|
}
|
|
1700
1725
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active:focus {
|
|
1701
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
1702
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
1726
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1727
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1703
1728
|
}
|
|
1704
1729
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1705
|
-
background:
|
|
1730
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1706
1731
|
border-radius: 4px;
|
|
1707
1732
|
color: #6c757d;
|
|
1708
1733
|
border-color: #6c757d;
|
|
1709
1734
|
border-style: solid;
|
|
1710
1735
|
border-width: 0;
|
|
1711
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
1712
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
1736
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1737
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1713
1738
|
}
|
|
1714
1739
|
.e-toolbar .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
1715
1740
|
color: #fff;
|
|
@@ -1719,7 +1744,7 @@
|
|
|
1719
1744
|
color: #fff;
|
|
1720
1745
|
}
|
|
1721
1746
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
1722
|
-
background:
|
|
1747
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1723
1748
|
border-color: #6c757d;
|
|
1724
1749
|
border-style: solid;
|
|
1725
1750
|
border-width: 0;
|
|
@@ -1740,7 +1765,7 @@
|
|
|
1740
1765
|
color: #fff;
|
|
1741
1766
|
}
|
|
1742
1767
|
.e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
1743
|
-
background:
|
|
1768
|
+
background: rgb(86.4, 93.6, 100);
|
|
1744
1769
|
border-color: #dee2e6;
|
|
1745
1770
|
border-style: solid;
|
|
1746
1771
|
border-width: 0;
|
|
@@ -1806,7 +1831,7 @@
|
|
|
1806
1831
|
content: "";
|
|
1807
1832
|
}
|
|
1808
1833
|
.e-toolbar .e-hor-nav:hover {
|
|
1809
|
-
background:
|
|
1834
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1810
1835
|
border-left: 0;
|
|
1811
1836
|
color: #fff;
|
|
1812
1837
|
}
|
|
@@ -1819,13 +1844,13 @@
|
|
|
1819
1844
|
border-width: 0;
|
|
1820
1845
|
}
|
|
1821
1846
|
.e-toolbar .e-hor-nav:hover:active {
|
|
1822
|
-
background:
|
|
1847
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1823
1848
|
border-color: #dee2e6;
|
|
1824
1849
|
border-style: solid;
|
|
1825
1850
|
border-width: 0;
|
|
1826
1851
|
}
|
|
1827
1852
|
.e-toolbar .e-hor-nav:focus {
|
|
1828
|
-
background:
|
|
1853
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1829
1854
|
color: #fff;
|
|
1830
1855
|
border-color: #6c757d;
|
|
1831
1856
|
border-style: solid;
|
|
@@ -1836,16 +1861,16 @@
|
|
|
1836
1861
|
}
|
|
1837
1862
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
1838
1863
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1839
|
-
background:
|
|
1864
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1840
1865
|
-webkit-box-shadow: none;
|
|
1841
1866
|
box-shadow: none;
|
|
1842
|
-
border-color:
|
|
1867
|
+
border-color: rgb(91.8, 99.45, 106.25);
|
|
1843
1868
|
border-style: solid;
|
|
1844
1869
|
border-width: 0;
|
|
1845
1870
|
}
|
|
1846
1871
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:focus,
|
|
1847
1872
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav):focus {
|
|
1848
|
-
border-color:
|
|
1873
|
+
border-color: rgb(91.8, 99.45, 106.25);
|
|
1849
1874
|
border-style: solid;
|
|
1850
1875
|
border-width: 0;
|
|
1851
1876
|
}
|
|
@@ -1867,7 +1892,7 @@
|
|
|
1867
1892
|
background: transparent;
|
|
1868
1893
|
}
|
|
1869
1894
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:hover {
|
|
1870
|
-
background:
|
|
1895
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1871
1896
|
-webkit-box-shadow: none;
|
|
1872
1897
|
box-shadow: none;
|
|
1873
1898
|
border-color: #6c757d;
|
|
@@ -1875,7 +1900,7 @@
|
|
|
1875
1900
|
border-width: 0;
|
|
1876
1901
|
}
|
|
1877
1902
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:active {
|
|
1878
|
-
background:
|
|
1903
|
+
background: rgb(86.4, 93.6, 100);
|
|
1879
1904
|
-webkit-box-shadow: none;
|
|
1880
1905
|
box-shadow: none;
|
|
1881
1906
|
border-color: #dee2e6;
|
|
@@ -1883,7 +1908,7 @@
|
|
|
1883
1908
|
border-width: 0;
|
|
1884
1909
|
}
|
|
1885
1910
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
1886
|
-
background:
|
|
1911
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1887
1912
|
border-color: #6c757d;
|
|
1888
1913
|
border-style: solid;
|
|
1889
1914
|
border-width: 0;
|
|
@@ -1903,23 +1928,23 @@
|
|
|
1903
1928
|
border: none;
|
|
1904
1929
|
}
|
|
1905
1930
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1906
|
-
background:
|
|
1931
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1907
1932
|
border-radius: 4px;
|
|
1908
1933
|
border-color: #6c757d;
|
|
1909
1934
|
border-style: solid;
|
|
1910
1935
|
border-width: 0;
|
|
1911
|
-
-webkit-box-shadow: 0 0 0 4px rgba(130,
|
|
1912
|
-
box-shadow: 0 0 0 4px rgba(130,
|
|
1936
|
+
-webkit-box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1937
|
+
box-shadow: 0 0 0 4px rgba(130.05, 137.7, 144.5, 0.5);
|
|
1913
1938
|
}
|
|
1914
1939
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
1915
|
-
background:
|
|
1940
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1916
1941
|
border-radius: 4px;
|
|
1917
1942
|
border-color: #6c757d;
|
|
1918
1943
|
border-style: solid;
|
|
1919
1944
|
border-width: 0;
|
|
1920
1945
|
}
|
|
1921
1946
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
1922
|
-
background:
|
|
1947
|
+
background: rgb(86.4, 93.6, 100);
|
|
1923
1948
|
border-radius: 4px;
|
|
1924
1949
|
-webkit-box-shadow: none;
|
|
1925
1950
|
box-shadow: none;
|
|
@@ -1943,7 +1968,7 @@
|
|
|
1943
1968
|
border-width: 0 0 0 0;
|
|
1944
1969
|
}
|
|
1945
1970
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1946
|
-
background:
|
|
1971
|
+
background: rgb(91.8, 99.45, 106.25);
|
|
1947
1972
|
color: #6c757d;
|
|
1948
1973
|
border: solid #dee2e6;
|
|
1949
1974
|
border-width: 0 0 0 0;
|
|
@@ -2173,7 +2198,7 @@
|
|
|
2173
2198
|
border-width: 0 0 1px 0;
|
|
2174
2199
|
}
|
|
2175
2200
|
.e-accordion .e-acrdn-item.e-item-focus.e-select.e-selected.e-expand-state .e-acrdn-header:hover:focus {
|
|
2176
|
-
background:
|
|
2201
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2177
2202
|
}
|
|
2178
2203
|
.e-accordion .e-acrdn-item.e-item-focus.e-select.e-selected.e-expand-state .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2179
2204
|
color: #0d6efd;
|
|
@@ -2217,13 +2242,13 @@
|
|
|
2217
2242
|
border-color: #dee2e6;
|
|
2218
2243
|
border-style: solid;
|
|
2219
2244
|
border-width: 0 0 1px 0;
|
|
2220
|
-
background:
|
|
2245
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2221
2246
|
}
|
|
2222
2247
|
.e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:hover {
|
|
2223
|
-
background:
|
|
2248
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2224
2249
|
}
|
|
2225
2250
|
.e-accordion .e-acrdn-item.e-selected.e-select.e-expand-state > .e-acrdn-header:active {
|
|
2226
|
-
background:
|
|
2251
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2227
2252
|
}
|
|
2228
2253
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content, .e-accordion .e-acrdn-item .e-acrdn-panel.e-nested .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
|
|
2229
2254
|
color: #212529;
|
|
@@ -2268,7 +2293,7 @@
|
|
|
2268
2293
|
.e-accordion .e-acrdn-item .e-acrdn-header:active {
|
|
2269
2294
|
border: 0;
|
|
2270
2295
|
border-color: initial;
|
|
2271
|
-
background:
|
|
2296
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2272
2297
|
}
|
|
2273
2298
|
.e-accordion .e-acrdn-item .e-acrdn-header:focus {
|
|
2274
2299
|
border: 0;
|
|
@@ -2285,10 +2310,10 @@
|
|
|
2285
2310
|
color: #0d6efd;
|
|
2286
2311
|
}
|
|
2287
2312
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-icons {
|
|
2288
|
-
color:
|
|
2313
|
+
color: rgb(11.7, 99, 227.7);
|
|
2289
2314
|
}
|
|
2290
2315
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-toggle-icon .e-icons.e-tgl-collapse-icon {
|
|
2291
|
-
color:
|
|
2316
|
+
color: rgb(11.7, 99, 227.7);
|
|
2292
2317
|
}
|
|
2293
2318
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2294
2319
|
color: #212529;
|
|
@@ -2297,19 +2322,19 @@
|
|
|
2297
2322
|
border-color: #dee2e6;
|
|
2298
2323
|
border-style: solid;
|
|
2299
2324
|
border-width: 0 0 1px 0;
|
|
2300
|
-
background:
|
|
2325
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2301
2326
|
}
|
|
2302
2327
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-icons {
|
|
2303
|
-
color:
|
|
2328
|
+
color: rgb(11.7, 99, 227.7);
|
|
2304
2329
|
}
|
|
2305
2330
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-icon .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-icon .e-icons {
|
|
2306
2331
|
color: #6c757d;
|
|
2307
2332
|
}
|
|
2308
2333
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover .e-acrdn-header-content {
|
|
2309
|
-
color:
|
|
2334
|
+
color: rgb(11.7, 99, 227.7);
|
|
2310
2335
|
}
|
|
2311
2336
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header:hover:focus .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover:focus .e-icons, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header:hover:focus .e-acrdn-header-content {
|
|
2312
|
-
color:
|
|
2337
|
+
color: rgb(11.7, 99, 227.7);
|
|
2313
2338
|
}
|
|
2314
2339
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon {
|
|
2315
2340
|
color: #6c757d;
|
|
@@ -2318,12 +2343,12 @@
|
|
|
2318
2343
|
border-color: #dee2e6;
|
|
2319
2344
|
}
|
|
2320
2345
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header > .e-toggle-icon, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header > .e-toggle-icon {
|
|
2321
|
-
color:
|
|
2346
|
+
color: rgb(11.7, 99, 227.7);
|
|
2322
2347
|
}
|
|
2323
2348
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
|
|
2324
2349
|
.e-accordion .e-acrdn-item.e-select.e-selected.e-expand-state > .e-acrdn-header .e-acrdn-header-content, .e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-icon,
|
|
2325
2350
|
.e-accordion .e-acrdn-item.e-select.e-expand-state > .e-acrdn-header .e-acrdn-header-content {
|
|
2326
|
-
color:
|
|
2351
|
+
color: rgb(11.7, 99, 227.7);
|
|
2327
2352
|
}
|
|
2328
2353
|
.e-accordion .e-acrdn-item.e-select.e-item-focus {
|
|
2329
2354
|
border-color: #dee2e6;
|
|
@@ -2345,10 +2370,10 @@
|
|
|
2345
2370
|
border-bottom: 1px none #dee2e6;
|
|
2346
2371
|
}
|
|
2347
2372
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header > .e-acrdn-header-content {
|
|
2348
|
-
color:
|
|
2373
|
+
color: rgb(11.7, 99, 227.7);
|
|
2349
2374
|
}
|
|
2350
2375
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header > .e-toggle-icon {
|
|
2351
|
-
color:
|
|
2376
|
+
color: rgb(11.7, 99, 227.7);
|
|
2352
2377
|
}
|
|
2353
2378
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2354
2379
|
position: relative;
|
|
@@ -2368,7 +2393,7 @@
|
|
|
2368
2393
|
color: #212529;
|
|
2369
2394
|
}
|
|
2370
2395
|
.e-accordion .e-acrdn-item.e-selected.e-select > .e-acrdn-header {
|
|
2371
|
-
background:
|
|
2396
|
+
background: rgb(230.8, 240.5, 254.8);
|
|
2372
2397
|
border-radius: 0;
|
|
2373
2398
|
border-color: #dee2e6;
|
|
2374
2399
|
border-style: solid;
|
|
@@ -2810,6 +2835,12 @@
|
|
|
2810
2835
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
2811
2836
|
padding: 4px 0;
|
|
2812
2837
|
}
|
|
2838
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
2839
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
2840
|
+
display: -webkit-box;
|
|
2841
|
+
display: -ms-flexbox;
|
|
2842
|
+
display: flex;
|
|
2843
|
+
}
|
|
2813
2844
|
.e-contextmenu-wrapper ul.e-ul,
|
|
2814
2845
|
.e-contextmenu-container ul.e-ul {
|
|
2815
2846
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -3048,7 +3079,7 @@
|
|
|
3048
3079
|
|
|
3049
3080
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3050
3081
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3051
|
-
background-color:
|
|
3082
|
+
background-color: #fff;
|
|
3052
3083
|
border: 1px solid #dee2e6;
|
|
3053
3084
|
}
|
|
3054
3085
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -3347,10 +3378,10 @@
|
|
|
3347
3378
|
display: -webkit-inline-box;
|
|
3348
3379
|
display: -ms-inline-flexbox;
|
|
3349
3380
|
display: inline-flex;
|
|
3350
|
-
height:
|
|
3351
|
-
min-width:
|
|
3352
|
-
width:
|
|
3353
|
-
line-height:
|
|
3381
|
+
height: 20px;
|
|
3382
|
+
min-width: 20px;
|
|
3383
|
+
width: 20px;
|
|
3384
|
+
line-height: 1;
|
|
3354
3385
|
}
|
|
3355
3386
|
@media screen and (max-width: 480px) {
|
|
3356
3387
|
.e-tab .e-tab-header .e-toolbar-item .e-icons.e-tab-icon {
|
|
@@ -3360,7 +3391,7 @@
|
|
|
3360
3391
|
}
|
|
3361
3392
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
3362
3393
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon::before {
|
|
3363
|
-
font-size:
|
|
3394
|
+
font-size: 16px;
|
|
3364
3395
|
}
|
|
3365
3396
|
@media screen and (max-width: 480px) {
|
|
3366
3397
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
@@ -3517,6 +3548,11 @@
|
|
|
3517
3548
|
height: 26px;
|
|
3518
3549
|
width: 100%;
|
|
3519
3550
|
}
|
|
3551
|
+
@media screen and (max-width: 480px) {
|
|
3552
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
3553
|
+
height: 42px;
|
|
3554
|
+
}
|
|
3555
|
+
}
|
|
3520
3556
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
3521
3557
|
display: -webkit-inline-box;
|
|
3522
3558
|
display: -ms-inline-flexbox;
|
|
@@ -4769,10 +4805,10 @@
|
|
|
4769
4805
|
display: -webkit-inline-box;
|
|
4770
4806
|
display: -ms-inline-flexbox;
|
|
4771
4807
|
display: inline-flex;
|
|
4772
|
-
height:
|
|
4773
|
-
min-width:
|
|
4774
|
-
width:
|
|
4775
|
-
line-height:
|
|
4808
|
+
height: 20px;
|
|
4809
|
+
min-width: 20px;
|
|
4810
|
+
width: 20px;
|
|
4811
|
+
line-height: 1;
|
|
4776
4812
|
}
|
|
4777
4813
|
@media screen and (max-width: 480px) {
|
|
4778
4814
|
.e-tab-clone-element .e-icons.e-tab-icon {
|
|
@@ -4782,7 +4818,7 @@
|
|
|
4782
4818
|
}
|
|
4783
4819
|
.e-tab-clone-element .e-tab-icon,
|
|
4784
4820
|
.e-tab-clone-element .e-tab-icon::before {
|
|
4785
|
-
font-size:
|
|
4821
|
+
font-size: 16px;
|
|
4786
4822
|
}
|
|
4787
4823
|
@media screen and (max-width: 480px) {
|
|
4788
4824
|
.e-tab-clone-element .e-tab-icon,
|
|
@@ -4973,7 +5009,7 @@
|
|
|
4973
5009
|
}
|
|
4974
5010
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
4975
5011
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
4976
|
-
color:
|
|
5012
|
+
color: rgb(10.4, 88, 202.4);
|
|
4977
5013
|
}
|
|
4978
5014
|
.e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
4979
5015
|
border: 1px solid #dee2e6;
|
|
@@ -5014,7 +5050,7 @@
|
|
|
5014
5050
|
color: #6c757d;
|
|
5015
5051
|
}
|
|
5016
5052
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
5017
|
-
color:
|
|
5053
|
+
color: rgb(10.4, 88, 202.4);
|
|
5018
5054
|
}
|
|
5019
5055
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon:active {
|
|
5020
5056
|
color: #0d6efd;
|
|
@@ -5060,7 +5096,7 @@
|
|
|
5060
5096
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5061
5097
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
|
|
5062
5098
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
|
|
5063
|
-
color:
|
|
5099
|
+
color: rgb(10.4, 88, 202.4);
|
|
5064
5100
|
}
|
|
5065
5101
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active {
|
|
5066
5102
|
background: #e9ecef;
|
|
@@ -5091,7 +5127,7 @@
|
|
|
5091
5127
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:hover,
|
|
5092
5128
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover {
|
|
5093
5129
|
background: #dee2e6;
|
|
5094
|
-
color:
|
|
5130
|
+
color: rgb(10.4, 88, 202.4);
|
|
5095
5131
|
border: 0;
|
|
5096
5132
|
}
|
|
5097
5133
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:active,
|
|
@@ -5113,7 +5149,7 @@
|
|
|
5113
5149
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
5114
5150
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
5115
5151
|
background: #dee2e6;
|
|
5116
|
-
color:
|
|
5152
|
+
color: rgb(10.4, 88, 202.4);
|
|
5117
5153
|
}
|
|
5118
5154
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active,
|
|
5119
5155
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:active {
|
|
@@ -5160,7 +5196,7 @@
|
|
|
5160
5196
|
}
|
|
5161
5197
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
5162
5198
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
5163
|
-
color:
|
|
5199
|
+
color: rgb(10.4, 88, 202.4);
|
|
5164
5200
|
}
|
|
5165
5201
|
.e-tab .e-tab-header .e-hor-nav:focus,
|
|
5166
5202
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus {
|
|
@@ -5302,7 +5338,7 @@
|
|
|
5302
5338
|
background: rgba(233, 236, 239, 0.12);
|
|
5303
5339
|
}
|
|
5304
5340
|
.e-tab .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow {
|
|
5305
|
-
color:
|
|
5341
|
+
color: rgb(10.4, 88, 202.4);
|
|
5306
5342
|
}
|
|
5307
5343
|
.e-tab .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow:hover {
|
|
5308
5344
|
background: none;
|
|
@@ -5328,7 +5364,7 @@
|
|
|
5328
5364
|
.e-tab .e-tab-header.e-vertical .e-hor-nav .e-popup-down-icon:hover {
|
|
5329
5365
|
background: inherit;
|
|
5330
5366
|
border: 0;
|
|
5331
|
-
color:
|
|
5367
|
+
color: rgb(10.4, 88, 202.4);
|
|
5332
5368
|
}
|
|
5333
5369
|
.e-tab .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-up-icon,
|
|
5334
5370
|
.e-tab .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-down-icon {
|
|
@@ -5358,7 +5394,7 @@
|
|
|
5358
5394
|
}
|
|
5359
5395
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
5360
5396
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
5361
|
-
color:
|
|
5397
|
+
color: rgb(10.4, 88, 202.4);
|
|
5362
5398
|
}
|
|
5363
5399
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon {
|
|
5364
5400
|
color: #6c757d;
|
|
@@ -5417,10 +5453,10 @@
|
|
|
5417
5453
|
color: #0d6efd;
|
|
5418
5454
|
}
|
|
5419
5455
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text, .e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5420
|
-
color:
|
|
5456
|
+
color: rgb(10.4, 88, 202.4);
|
|
5421
5457
|
}
|
|
5422
5458
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5423
|
-
color:
|
|
5459
|
+
color: rgb(10.4, 88, 202.4);
|
|
5424
5460
|
}
|
|
5425
5461
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-text-wrap {
|
|
5426
5462
|
margin-top: 0;
|
|
@@ -5520,21 +5556,21 @@
|
|
|
5520
5556
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
5521
5557
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
5522
5558
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
5523
|
-
color:
|
|
5559
|
+
color: rgb(10.4, 88, 202.4);
|
|
5524
5560
|
}
|
|
5525
5561
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
5526
|
-
background:
|
|
5562
|
+
background: #0d6efd;
|
|
5527
5563
|
border-color: #6c757d;
|
|
5528
5564
|
}
|
|
5529
5565
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
5530
5566
|
color: #adb5bd;
|
|
5531
5567
|
}
|
|
5532
5568
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
5533
|
-
color: #
|
|
5569
|
+
color: #fff;
|
|
5534
5570
|
}
|
|
5535
5571
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
5536
5572
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
5537
|
-
color: #
|
|
5573
|
+
color: #fff;
|
|
5538
5574
|
}
|
|
5539
5575
|
.e-tab.e-background .e-tab-header {
|
|
5540
5576
|
background: #0d6efd;
|
|
@@ -5562,10 +5598,10 @@
|
|
|
5562
5598
|
}
|
|
5563
5599
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
5564
5600
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
5565
|
-
color:
|
|
5601
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5566
5602
|
}
|
|
5567
5603
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
5568
|
-
color:
|
|
5604
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5569
5605
|
}
|
|
5570
5606
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
5571
5607
|
color: #fff;
|
|
@@ -5679,7 +5715,7 @@
|
|
|
5679
5715
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
5680
5716
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
5681
5717
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
5682
|
-
color:
|
|
5718
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5683
5719
|
}
|
|
5684
5720
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
5685
5721
|
background: #e9ecef;
|
|
@@ -5690,13 +5726,13 @@
|
|
|
5690
5726
|
color: #fff;
|
|
5691
5727
|
}
|
|
5692
5728
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-tab-text {
|
|
5693
|
-
color:
|
|
5729
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5694
5730
|
}
|
|
5695
5731
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-tab-icon {
|
|
5696
|
-
color:
|
|
5732
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5697
5733
|
}
|
|
5698
5734
|
.e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active .e-close-icon {
|
|
5699
|
-
color:
|
|
5735
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5700
5736
|
}
|
|
5701
5737
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
|
|
5702
5738
|
.e-tab.e-background .e-tab-header .e-scroll-nav {
|
|
@@ -5704,7 +5740,7 @@
|
|
|
5704
5740
|
}
|
|
5705
5741
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
5706
5742
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
5707
|
-
color:
|
|
5743
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5708
5744
|
border: 0;
|
|
5709
5745
|
}
|
|
5710
5746
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
@@ -5716,7 +5752,7 @@
|
|
|
5716
5752
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active,
|
|
5717
5753
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active {
|
|
5718
5754
|
background: unset;
|
|
5719
|
-
color:
|
|
5755
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5720
5756
|
}
|
|
5721
5757
|
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
5722
5758
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
@@ -5748,7 +5784,7 @@
|
|
|
5748
5784
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
5749
5785
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
5750
5786
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
5751
|
-
color:
|
|
5787
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5752
5788
|
border: 0;
|
|
5753
5789
|
}
|
|
5754
5790
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
@@ -5899,7 +5935,7 @@
|
|
|
5899
5935
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
5900
5936
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
5901
5937
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
5902
|
-
color:
|
|
5938
|
+
color: rgb(230.8, 240.5, 254.8);
|
|
5903
5939
|
}
|
|
5904
5940
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
5905
5941
|
background: rgba(13, 110, 253, 0.12);
|
|
@@ -6040,6 +6076,9 @@
|
|
|
6040
6076
|
.e-treeview.e-virtualization .e-ul {
|
|
6041
6077
|
overflow: unset;
|
|
6042
6078
|
}
|
|
6079
|
+
.e-treeview .e-mask-parent {
|
|
6080
|
+
display: none;
|
|
6081
|
+
}
|
|
6043
6082
|
.e-treeview > .e-ul {
|
|
6044
6083
|
-webkit-overflow-scrolling: touch;
|
|
6045
6084
|
overflow: auto;
|
|
@@ -6145,6 +6184,11 @@
|
|
|
6145
6184
|
position: absolute;
|
|
6146
6185
|
width: 100%;
|
|
6147
6186
|
}
|
|
6187
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
6188
|
+
.e-treeview .e-fullrow {
|
|
6189
|
+
z-index: -1;
|
|
6190
|
+
}
|
|
6191
|
+
}
|
|
6148
6192
|
.e-treeview .e-checkbox-wrapper {
|
|
6149
6193
|
margin: 0 0 0 12px;
|
|
6150
6194
|
pointer-events: all;
|
|
@@ -6212,7 +6256,7 @@
|
|
|
6212
6256
|
.e-treeview .e-icon-expandable {
|
|
6213
6257
|
display: inline-block;
|
|
6214
6258
|
height: 20px;
|
|
6215
|
-
margin: 0 4px 0 -
|
|
6259
|
+
margin: 0 4px 0 -24px;
|
|
6216
6260
|
vertical-align: middle;
|
|
6217
6261
|
width: 20px;
|
|
6218
6262
|
}
|
|
@@ -6519,7 +6563,7 @@
|
|
|
6519
6563
|
border-color: #fff;
|
|
6520
6564
|
}
|
|
6521
6565
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
6522
|
-
background-color:
|
|
6566
|
+
background-color: rgb(1.9713114754, 97.5799180328, 238.5286885246);
|
|
6523
6567
|
border-color: #0d6efd;
|
|
6524
6568
|
}
|
|
6525
6569
|
.e-treeview .e-list-item.e-active.e-hover > .e-text-content, .e-treeview .e-list-item.e-active.e-node-focus > .e-text-content {
|
|
@@ -6589,7 +6633,7 @@
|
|
|
6589
6633
|
border-color: #0d6efd;
|
|
6590
6634
|
}
|
|
6591
6635
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active.e-node-focus > .e-text-content {
|
|
6592
|
-
background-color:
|
|
6636
|
+
background-color: rgb(1.9713114754, 97.5799180328, 238.5286885246);
|
|
6593
6637
|
border-color: #0d6efd;
|
|
6594
6638
|
}
|
|
6595
6639
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-active > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-editing.e-node-focus > .e-text-content {
|
|
@@ -7871,14 +7915,29 @@ ejs-sidebar {
|
|
|
7871
7915
|
padding-right: 8px;
|
|
7872
7916
|
}
|
|
7873
7917
|
|
|
7918
|
+
.e-breadcrumb-menu-item {
|
|
7919
|
+
position: absolute;
|
|
7920
|
+
width: 1px;
|
|
7921
|
+
height: 1px;
|
|
7922
|
+
margin: -1px;
|
|
7923
|
+
padding: 0;
|
|
7924
|
+
overflow: hidden;
|
|
7925
|
+
clip: rect(0, 0, 0, 0);
|
|
7926
|
+
border: 0;
|
|
7927
|
+
}
|
|
7928
|
+
|
|
7929
|
+
.e-hidden-popup {
|
|
7930
|
+
visibility: hidden;
|
|
7931
|
+
}
|
|
7932
|
+
|
|
7874
7933
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
7875
7934
|
color: #0d6efd;
|
|
7876
7935
|
}
|
|
7877
7936
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:hover, .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
7878
|
-
color:
|
|
7937
|
+
color: rgb(1.762295082, 87.2336065574, 213.237704918);
|
|
7879
7938
|
}
|
|
7880
7939
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:active {
|
|
7881
|
-
color:
|
|
7940
|
+
color: rgb(1.5532786885, 76.887295082, 187.9467213115);
|
|
7882
7941
|
}
|
|
7883
7942
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
7884
7943
|
background: #e9ecef;
|
|
@@ -7889,7 +7948,7 @@ ejs-sidebar {
|
|
|
7889
7948
|
color: #6c757d;
|
|
7890
7949
|
}
|
|
7891
7950
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
7892
|
-
border: 1px solid
|
|
7951
|
+
border: 1px solid rgb(1.762295082, 87.2336065574, 213.237704918);
|
|
7893
7952
|
}
|
|
7894
7953
|
.e-breadcrumb .e-breadcrumb-item[data-active-item] .e-breadcrumb-text {
|
|
7895
7954
|
color: #6c757d;
|
|
@@ -8803,14 +8862,14 @@ ejs-sidebar {
|
|
|
8803
8862
|
.e-stepper:not(.e-step-type-label) .e-indicator:hover,
|
|
8804
8863
|
.e-stepper:not(.e-step-type-label) .e-step:hover {
|
|
8805
8864
|
color: #fff;
|
|
8806
|
-
background:
|
|
8865
|
+
background: rgb(11.05, 93.5, 215.05);
|
|
8807
8866
|
}
|
|
8808
8867
|
.e-stepper:not(.e-step-type-label) .e-step-notstarted .e-indicator:hover, .e-stepper:not(.e-step-type-label) .e-step-notstarted .e-step:hover {
|
|
8809
8868
|
color: #212529;
|
|
8810
8869
|
}
|
|
8811
8870
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
8812
8871
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
8813
|
-
background:
|
|
8872
|
+
background: rgb(10.4, 88, 202.4);
|
|
8814
8873
|
}
|
|
8815
8874
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
8816
8875
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|