@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: 12px;
|
|
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
|
}
|
|
@@ -291,6 +294,12 @@
|
|
|
291
294
|
}
|
|
292
295
|
@media (max-width: 769px) {
|
|
293
296
|
.e-pager {
|
|
297
|
+
display: -webkit-box;
|
|
298
|
+
display: -ms-flexbox;
|
|
299
|
+
display: flex;
|
|
300
|
+
-webkit-box-align: center;
|
|
301
|
+
-ms-flex-align: center;
|
|
302
|
+
align-items: center;
|
|
294
303
|
padding: 13px 0;
|
|
295
304
|
}
|
|
296
305
|
.e-pager div.e-parentmsgbar {
|
|
@@ -464,7 +473,8 @@
|
|
|
464
473
|
.e-pager.e-rtl.e-rtl div.e-parentmsgbar {
|
|
465
474
|
float: initial;
|
|
466
475
|
margin-left: 0;
|
|
467
|
-
margin-top:
|
|
476
|
+
margin-top: 0;
|
|
477
|
+
padding-top: 0;
|
|
468
478
|
}
|
|
469
479
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
470
480
|
float: right;
|
|
@@ -520,7 +530,7 @@
|
|
|
520
530
|
opacity: 1;
|
|
521
531
|
}
|
|
522
532
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
523
|
-
background-color:
|
|
533
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
524
534
|
opacity: 1;
|
|
525
535
|
}
|
|
526
536
|
.e-pager .e-numericitem {
|
|
@@ -627,7 +637,7 @@
|
|
|
627
637
|
.e-hscroll {
|
|
628
638
|
display: block;
|
|
629
639
|
position: relative;
|
|
630
|
-
width:
|
|
640
|
+
width: 100%;
|
|
631
641
|
}
|
|
632
642
|
.e-hscroll.e-rtl.e-scroll-device {
|
|
633
643
|
padding-left: 50px;
|
|
@@ -784,22 +794,22 @@
|
|
|
784
794
|
border-right: 1px solid #ccc;
|
|
785
795
|
}
|
|
786
796
|
.e-hscroll.e-rtl .e-scroll-nav:hover {
|
|
787
|
-
background:
|
|
788
|
-
border: 1px
|
|
797
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
798
|
+
border: 1px rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
789
799
|
color: #fff;
|
|
790
800
|
}
|
|
791
801
|
.e-hscroll.e-rtl .e-scroll-nav:hover:active {
|
|
792
|
-
background:
|
|
802
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
793
803
|
}
|
|
794
804
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:hover {
|
|
795
|
-
background:
|
|
805
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
796
806
|
color: #fff;
|
|
797
807
|
}
|
|
798
808
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:hover .e-icons {
|
|
799
809
|
color: inherit;
|
|
800
810
|
}
|
|
801
811
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus {
|
|
802
|
-
background:
|
|
812
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
803
813
|
border: 1px #6c757d;
|
|
804
814
|
color: #fff;
|
|
805
815
|
}
|
|
@@ -1235,6 +1245,9 @@
|
|
|
1235
1245
|
min-width: 30px;
|
|
1236
1246
|
padding: 3px 4px;
|
|
1237
1247
|
}
|
|
1248
|
+
.e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
|
|
1249
|
+
pointer-events: none;
|
|
1250
|
+
}
|
|
1238
1251
|
.e-toolbar .e-toolbar-item.e-separator {
|
|
1239
1252
|
margin: 5.5px 6px;
|
|
1240
1253
|
min-height: 27px;
|
|
@@ -1250,6 +1263,9 @@
|
|
|
1250
1263
|
.e-toolbar .e-toolbar-item > * {
|
|
1251
1264
|
text-overflow: ellipsis;
|
|
1252
1265
|
}
|
|
1266
|
+
.e-toolbar .e-toolbar-item:not(.e-overlay) > * {
|
|
1267
|
+
pointer-events: auto;
|
|
1268
|
+
}
|
|
1253
1269
|
.e-toolbar .e-toolbar-item.e-hidden {
|
|
1254
1270
|
display: none;
|
|
1255
1271
|
}
|
|
@@ -1412,6 +1428,9 @@
|
|
|
1412
1428
|
min-width: 100%;
|
|
1413
1429
|
text-overflow: ellipsis;
|
|
1414
1430
|
}
|
|
1431
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1432
|
+
pointer-events: auto;
|
|
1433
|
+
}
|
|
1415
1434
|
.e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
1416
1435
|
min-width: 100%;
|
|
1417
1436
|
}
|
|
@@ -1525,6 +1544,9 @@
|
|
|
1525
1544
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
|
|
1526
1545
|
height: auto;
|
|
1527
1546
|
}
|
|
1547
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
|
|
1548
|
+
pointer-events: auto;
|
|
1549
|
+
}
|
|
1528
1550
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
|
|
1529
1551
|
-ms-flex-item-align: center;
|
|
1530
1552
|
align-self: center;
|
|
@@ -1538,12 +1560,18 @@
|
|
|
1538
1560
|
display: -ms-inline-flexbox;
|
|
1539
1561
|
display: inline-flex;
|
|
1540
1562
|
}
|
|
1563
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
|
|
1564
|
+
pointer-events: auto;
|
|
1565
|
+
}
|
|
1541
1566
|
.e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
|
|
1542
1567
|
display: table;
|
|
1543
1568
|
}
|
|
1544
1569
|
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1545
1570
|
margin-right: 12px;
|
|
1546
1571
|
}
|
|
1572
|
+
.e-toolbar.e-rtl:not(.e-spacer-toolbar) .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1573
|
+
margin-left: 12px;
|
|
1574
|
+
}
|
|
1547
1575
|
.e-toolbar.e-rtl .e-toolbar-item .e-tbar-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1548
1576
|
padding: 0 4px 0 6px;
|
|
1549
1577
|
}
|
|
@@ -1574,6 +1602,7 @@
|
|
|
1574
1602
|
}
|
|
1575
1603
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1576
1604
|
margin-left: 0;
|
|
1605
|
+
margin-right: 12px;
|
|
1577
1606
|
}
|
|
1578
1607
|
.e-toolbar.e-rtl .e-toolbar-items .e-toolbar-left .e-toolbar-item:last-child {
|
|
1579
1608
|
margin-left: 12px;
|
|
@@ -1581,11 +1610,13 @@
|
|
|
1581
1610
|
.e-toolbar.e-rtl .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
1582
1611
|
margin-left: 0;
|
|
1583
1612
|
}
|
|
1584
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child
|
|
1613
|
+
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:last-child {
|
|
1614
|
+
margin-right: 0;
|
|
1615
|
+
}
|
|
1585
1616
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1586
1617
|
margin-right: 0;
|
|
1618
|
+
margin-left: 12px;
|
|
1587
1619
|
}
|
|
1588
|
-
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-item:last-child:first-child,
|
|
1589
1620
|
.e-toolbar.e-rtl .e-toolbar-items:first-child > .e-toolbar-right .e-toolbar-item:first-child {
|
|
1590
1621
|
margin-right: 12px;
|
|
1591
1622
|
}
|
|
@@ -1639,9 +1670,9 @@
|
|
|
1639
1670
|
color: #495057;
|
|
1640
1671
|
}
|
|
1641
1672
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active {
|
|
1642
|
-
background:
|
|
1643
|
-
-webkit-box-shadow: 0 0 0 0.25em rgba(99, 105,
|
|
1644
|
-
box-shadow: 0 0 0 0.25em rgba(99, 105,
|
|
1673
|
+
background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1674
|
+
-webkit-box-shadow: 0 0 0 0.25em rgba(99.058583691, 105.0384656652, 110.353916309, 0.5);
|
|
1675
|
+
box-shadow: 0 0 0 0.25em rgba(99.058583691, 105.0384656652, 110.353916309, 0.5);
|
|
1645
1676
|
}
|
|
1646
1677
|
.e-toolbar .e-toolbar-item .e-tbar-btn.e-flat.e-active .e-tbar-btn-text {
|
|
1647
1678
|
color: #fff;
|
|
@@ -1668,7 +1699,7 @@
|
|
|
1668
1699
|
}
|
|
1669
1700
|
.e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
1670
1701
|
background: #6c757d;
|
|
1671
|
-
border-color:
|
|
1702
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1672
1703
|
border-style: solid;
|
|
1673
1704
|
border-width: 1px;
|
|
1674
1705
|
border-radius: 4px;
|
|
@@ -1687,8 +1718,8 @@
|
|
|
1687
1718
|
color: inherit;
|
|
1688
1719
|
}
|
|
1689
1720
|
.e-toolbar .e-toolbar-item .e-tbar-btn:active {
|
|
1690
|
-
background:
|
|
1691
|
-
border-color:
|
|
1721
|
+
background: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1722
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1692
1723
|
border-style: solid;
|
|
1693
1724
|
border-width: 1px;
|
|
1694
1725
|
border-radius: 4px;
|
|
@@ -1753,7 +1784,7 @@
|
|
|
1753
1784
|
content: "";
|
|
1754
1785
|
}
|
|
1755
1786
|
.e-toolbar .e-hor-nav:hover {
|
|
1756
|
-
background:
|
|
1787
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1757
1788
|
border-left: 0;
|
|
1758
1789
|
color: #fff;
|
|
1759
1790
|
}
|
|
@@ -1766,7 +1797,7 @@
|
|
|
1766
1797
|
border-width: 0;
|
|
1767
1798
|
}
|
|
1768
1799
|
.e-toolbar .e-hor-nav:hover:active {
|
|
1769
|
-
background:
|
|
1800
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
1770
1801
|
border-color: #adb5bd;
|
|
1771
1802
|
border-style: solid;
|
|
1772
1803
|
border-width: 3px 3px 3px 0;
|
|
@@ -1817,7 +1848,7 @@
|
|
|
1817
1848
|
background: #007bff;
|
|
1818
1849
|
-webkit-box-shadow: none;
|
|
1819
1850
|
box-shadow: none;
|
|
1820
|
-
border-color:
|
|
1851
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1821
1852
|
border-style: solid;
|
|
1822
1853
|
border-width: 0;
|
|
1823
1854
|
}
|
|
@@ -1825,7 +1856,7 @@
|
|
|
1825
1856
|
background: #007bff;
|
|
1826
1857
|
-webkit-box-shadow: none;
|
|
1827
1858
|
box-shadow: none;
|
|
1828
|
-
border-color:
|
|
1859
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1829
1860
|
border-style: solid;
|
|
1830
1861
|
border-width: 0;
|
|
1831
1862
|
}
|
|
@@ -1861,7 +1892,7 @@
|
|
|
1861
1892
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
1862
1893
|
background: #6c757d;
|
|
1863
1894
|
border-radius: 4px;
|
|
1864
|
-
border-color:
|
|
1895
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1865
1896
|
border-style: solid;
|
|
1866
1897
|
border-width: 1px;
|
|
1867
1898
|
}
|
|
@@ -1870,7 +1901,7 @@
|
|
|
1870
1901
|
border-radius: 4px;
|
|
1871
1902
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
1872
1903
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
1873
|
-
border-color:
|
|
1904
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
1874
1905
|
border-style: solid;
|
|
1875
1906
|
border-width: 1px;
|
|
1876
1907
|
}
|
|
@@ -2229,13 +2260,13 @@
|
|
|
2229
2260
|
color: #007bff;
|
|
2230
2261
|
}
|
|
2231
2262
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-acrdn-header-content {
|
|
2232
|
-
color:
|
|
2263
|
+
color: rgb(0, 86.1, 178.5);
|
|
2233
2264
|
}
|
|
2234
2265
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-icons {
|
|
2235
2266
|
color: #007bff;
|
|
2236
2267
|
}
|
|
2237
2268
|
.e-accordion .e-acrdn-item.e-select.e-acrdn-item > .e-acrdn-header:hover .e-toggle-icon .e-icons.e-tgl-collapse-icon {
|
|
2238
|
-
color:
|
|
2269
|
+
color: rgb(0, 86.1, 178.5);
|
|
2239
2270
|
}
|
|
2240
2271
|
.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 {
|
|
2241
2272
|
color: #007bff;
|
|
@@ -2247,13 +2278,13 @@
|
|
|
2247
2278
|
background: #f8f9fa;
|
|
2248
2279
|
}
|
|
2249
2280
|
.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 {
|
|
2250
|
-
color:
|
|
2281
|
+
color: rgb(0, 86.1, 178.5);
|
|
2251
2282
|
}
|
|
2252
2283
|
.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 {
|
|
2253
2284
|
color: #007bff;
|
|
2254
2285
|
}
|
|
2255
2286
|
.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 {
|
|
2256
|
-
color:
|
|
2287
|
+
color: rgb(0, 86.1, 178.5);
|
|
2257
2288
|
}
|
|
2258
2289
|
.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 {
|
|
2259
2290
|
color: #007bff;
|
|
@@ -2756,6 +2787,12 @@
|
|
|
2756
2787
|
-webkit-box-shadow: none;
|
|
2757
2788
|
box-shadow: none;
|
|
2758
2789
|
}
|
|
2790
|
+
.e-contextmenu-wrapper ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon,
|
|
2791
|
+
.e-contextmenu-container ul.e-contextmenu.e-contextmenu-template .e-menu-caret-icon {
|
|
2792
|
+
display: -webkit-box;
|
|
2793
|
+
display: -ms-flexbox;
|
|
2794
|
+
display: flex;
|
|
2795
|
+
}
|
|
2759
2796
|
.e-contextmenu-wrapper ul.e-ul,
|
|
2760
2797
|
.e-contextmenu-container ul.e-ul {
|
|
2761
2798
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -2966,7 +3003,7 @@
|
|
|
2966
3003
|
}
|
|
2967
3004
|
.e-contextmenu-wrapper ul .e-menu-item.e-focused,
|
|
2968
3005
|
.e-contextmenu-container ul .e-menu-item.e-focused {
|
|
2969
|
-
background-color:
|
|
3006
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
2970
3007
|
color: #212529;
|
|
2971
3008
|
outline: 0 solid #e9ecef;
|
|
2972
3009
|
outline-offset: 0;
|
|
@@ -3018,7 +3055,7 @@
|
|
|
3018
3055
|
|
|
3019
3056
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll,
|
|
3020
3057
|
.e-contextmenu-container:not(.e-menu-container) .e-menu-vscroll.e-vscroll {
|
|
3021
|
-
background-color:
|
|
3058
|
+
background-color: #fff;
|
|
3022
3059
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
3023
3060
|
}
|
|
3024
3061
|
.e-contextmenu-wrapper:not(.e-menu-container) .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
@@ -3326,7 +3363,7 @@
|
|
|
3326
3363
|
height: 20px;
|
|
3327
3364
|
min-width: 20px;
|
|
3328
3365
|
width: 20px;
|
|
3329
|
-
line-height:
|
|
3366
|
+
line-height: 1;
|
|
3330
3367
|
}
|
|
3331
3368
|
@media screen and (max-width: 480px) {
|
|
3332
3369
|
.e-tab .e-tab-header .e-toolbar-item .e-icons.e-tab-icon {
|
|
@@ -3336,7 +3373,7 @@
|
|
|
3336
3373
|
}
|
|
3337
3374
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
3338
3375
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon::before {
|
|
3339
|
-
font-size:
|
|
3376
|
+
font-size: 16px;
|
|
3340
3377
|
}
|
|
3341
3378
|
@media screen and (max-width: 480px) {
|
|
3342
3379
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
@@ -3493,6 +3530,11 @@
|
|
|
3493
3530
|
height: 26px;
|
|
3494
3531
|
width: 100%;
|
|
3495
3532
|
}
|
|
3533
|
+
@media screen and (max-width: 480px) {
|
|
3534
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-text-wrap {
|
|
3535
|
+
height: 42px;
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3496
3538
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-text {
|
|
3497
3539
|
display: -webkit-inline-box;
|
|
3498
3540
|
display: -ms-inline-flexbox;
|
|
@@ -4748,7 +4790,7 @@
|
|
|
4748
4790
|
height: 20px;
|
|
4749
4791
|
min-width: 20px;
|
|
4750
4792
|
width: 20px;
|
|
4751
|
-
line-height:
|
|
4793
|
+
line-height: 1;
|
|
4752
4794
|
}
|
|
4753
4795
|
@media screen and (max-width: 480px) {
|
|
4754
4796
|
.e-tab-clone-element .e-icons.e-tab-icon {
|
|
@@ -4758,7 +4800,7 @@
|
|
|
4758
4800
|
}
|
|
4759
4801
|
.e-tab-clone-element .e-tab-icon,
|
|
4760
4802
|
.e-tab-clone-element .e-tab-icon::before {
|
|
4761
|
-
font-size:
|
|
4803
|
+
font-size: 16px;
|
|
4762
4804
|
}
|
|
4763
4805
|
@media screen and (max-width: 480px) {
|
|
4764
4806
|
.e-tab-clone-element .e-tab-icon,
|
|
@@ -4949,7 +4991,7 @@
|
|
|
4949
4991
|
}
|
|
4950
4992
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
4951
4993
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
4952
|
-
color:
|
|
4994
|
+
color: rgb(0, 86.1, 178.5);
|
|
4953
4995
|
}
|
|
4954
4996
|
.e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
4955
4997
|
border: 1px solid #dee2e6;
|
|
@@ -5029,14 +5071,14 @@
|
|
|
5029
5071
|
color: #212529;
|
|
5030
5072
|
}
|
|
5031
5073
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
5032
|
-
background:
|
|
5074
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
5033
5075
|
border: 1px solid transparent;
|
|
5034
5076
|
border-radius: 0;
|
|
5035
5077
|
}
|
|
5036
5078
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
5037
5079
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
|
|
5038
5080
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
|
|
5039
|
-
color:
|
|
5081
|
+
color: rgb(0, 86.1, 178.5);
|
|
5040
5082
|
}
|
|
5041
5083
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:active {
|
|
5042
5084
|
background: #007bff;
|
|
@@ -5066,7 +5108,7 @@
|
|
|
5066
5108
|
}
|
|
5067
5109
|
.e-tab .e-tab-header .e-scroll-nav .e-nav-arrow:hover,
|
|
5068
5110
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover {
|
|
5069
|
-
background:
|
|
5111
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5070
5112
|
color: #fff;
|
|
5071
5113
|
border: 0;
|
|
5072
5114
|
}
|
|
@@ -5088,7 +5130,7 @@
|
|
|
5088
5130
|
}
|
|
5089
5131
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
5090
5132
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
5091
|
-
background:
|
|
5133
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5092
5134
|
color: #fff;
|
|
5093
5135
|
}
|
|
5094
5136
|
.e-tab .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active,
|
|
@@ -5111,7 +5153,7 @@
|
|
|
5111
5153
|
.e-tab .e-tab-header .e-scroll-nav.e-overlay .e-nav-arrow:hover,
|
|
5112
5154
|
.e-tab .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav.e-overlay .e-nav-arrow:hover {
|
|
5113
5155
|
color: rgba(108, 117, 125, 0.65);
|
|
5114
|
-
background:
|
|
5156
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5115
5157
|
border-color: unset;
|
|
5116
5158
|
}
|
|
5117
5159
|
.e-tab .e-tab-header .e-hor-nav,
|
|
@@ -5130,7 +5172,7 @@
|
|
|
5130
5172
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
5131
5173
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
5132
5174
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
5133
|
-
background:
|
|
5175
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5134
5176
|
border: 0;
|
|
5135
5177
|
border-radius: 4px;
|
|
5136
5178
|
}
|
|
@@ -5155,7 +5197,7 @@
|
|
|
5155
5197
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover,
|
|
5156
5198
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
5157
5199
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
5158
|
-
background:
|
|
5200
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5159
5201
|
border: 0;
|
|
5160
5202
|
border-radius: 4px;
|
|
5161
5203
|
}
|
|
@@ -5163,7 +5205,7 @@
|
|
|
5163
5205
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active,
|
|
5164
5206
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
5165
5207
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
5166
|
-
background:
|
|
5208
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5167
5209
|
color: #212529;
|
|
5168
5210
|
border: 0;
|
|
5169
5211
|
border-radius: 4px;
|
|
@@ -5334,10 +5376,10 @@
|
|
|
5334
5376
|
}
|
|
5335
5377
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
5336
5378
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
5337
|
-
color:
|
|
5379
|
+
color: rgb(0, 86.1, 178.5);
|
|
5338
5380
|
}
|
|
5339
5381
|
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon {
|
|
5340
|
-
color:
|
|
5382
|
+
color: rgb(0, 86.1, 178.5);
|
|
5341
5383
|
}
|
|
5342
5384
|
.e-tab.e-focused > .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
5343
5385
|
color: #212529;
|
|
@@ -5393,10 +5435,10 @@
|
|
|
5393
5435
|
color: #007bff;
|
|
5394
5436
|
}
|
|
5395
5437
|
.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 {
|
|
5396
|
-
color:
|
|
5438
|
+
color: rgb(0, 86.1, 178.5);
|
|
5397
5439
|
}
|
|
5398
5440
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5399
|
-
color:
|
|
5441
|
+
color: rgb(0, 86.1, 178.5);
|
|
5400
5442
|
}
|
|
5401
5443
|
.e-tab.e-fill .e-tab-header .e-toolbar-item .e-text-wrap {
|
|
5402
5444
|
margin-top: 0;
|
|
@@ -5496,21 +5538,21 @@
|
|
|
5496
5538
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
5497
5539
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
5498
5540
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
5499
|
-
color:
|
|
5541
|
+
color: rgb(0, 86.1, 178.5);
|
|
5500
5542
|
}
|
|
5501
5543
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
5502
|
-
background: #
|
|
5544
|
+
background: #007bff;
|
|
5503
5545
|
border-color: unset;
|
|
5504
5546
|
}
|
|
5505
5547
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
5506
|
-
color:
|
|
5548
|
+
color: rgb(0, 86.1, 178.5);
|
|
5507
5549
|
}
|
|
5508
5550
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
5509
|
-
color: #
|
|
5551
|
+
color: #fff;
|
|
5510
5552
|
}
|
|
5511
5553
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
5512
5554
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
5513
|
-
color: #
|
|
5555
|
+
color: #fff;
|
|
5514
5556
|
}
|
|
5515
5557
|
.e-tab.e-background .e-tab-header {
|
|
5516
5558
|
background: inherit;
|
|
@@ -5552,7 +5594,7 @@
|
|
|
5552
5594
|
border-color: #e9ecef;
|
|
5553
5595
|
}
|
|
5554
5596
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text {
|
|
5555
|
-
color:
|
|
5597
|
+
color: rgb(0, 86.1, 178.5);
|
|
5556
5598
|
}
|
|
5557
5599
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
5558
5600
|
color: #fff;
|
|
@@ -5731,7 +5773,7 @@
|
|
|
5731
5773
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
5732
5774
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
5733
5775
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
5734
|
-
background:
|
|
5776
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5735
5777
|
border-color: unset;
|
|
5736
5778
|
color: #fff;
|
|
5737
5779
|
}
|
|
@@ -5739,7 +5781,7 @@
|
|
|
5739
5781
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active:hover,
|
|
5740
5782
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active:hover,
|
|
5741
5783
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active:hover {
|
|
5742
|
-
background:
|
|
5784
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5743
5785
|
color: #fff;
|
|
5744
5786
|
}
|
|
5745
5787
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
@@ -5754,13 +5796,13 @@
|
|
|
5754
5796
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
5755
5797
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
5756
5798
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
5757
|
-
background:
|
|
5799
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5758
5800
|
}
|
|
5759
5801
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
5760
5802
|
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
5761
5803
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
5762
5804
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
5763
|
-
background:
|
|
5805
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
5764
5806
|
border-color: unset;
|
|
5765
5807
|
color: #fff;
|
|
5766
5808
|
}
|
|
@@ -5891,28 +5933,28 @@
|
|
|
5891
5933
|
border-radius: 4px 4px 0 0;
|
|
5892
5934
|
}
|
|
5893
5935
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text {
|
|
5894
|
-
color:
|
|
5936
|
+
color: rgb(0, 86.1, 178.5);
|
|
5895
5937
|
}
|
|
5896
5938
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
5897
5939
|
color: #fff;
|
|
5898
5940
|
}
|
|
5899
5941
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-close-icon {
|
|
5900
|
-
color:
|
|
5942
|
+
color: rgb(0, 86.1, 178.5);
|
|
5901
5943
|
}
|
|
5902
5944
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text {
|
|
5903
|
-
color:
|
|
5945
|
+
color: rgb(0, 86.1, 178.5);
|
|
5904
5946
|
}
|
|
5905
5947
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
|
|
5906
5948
|
color: #fff;
|
|
5907
5949
|
}
|
|
5908
5950
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-close-icon {
|
|
5909
|
-
color:
|
|
5951
|
+
color: rgb(0, 86.1, 178.5);
|
|
5910
5952
|
}
|
|
5911
5953
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus:hover .e-tab-text {
|
|
5912
|
-
color:
|
|
5954
|
+
color: rgb(0, 86.1, 178.5);
|
|
5913
5955
|
}
|
|
5914
5956
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus:hover .e-close-icon {
|
|
5915
|
-
color:
|
|
5957
|
+
color: rgb(0, 86.1, 178.5);
|
|
5916
5958
|
}
|
|
5917
5959
|
.e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active.e-itop .e-tab-wrap, .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active.e-ibottom .e-tab-wrap {
|
|
5918
5960
|
background: #37b;
|
|
@@ -6015,6 +6057,9 @@
|
|
|
6015
6057
|
.e-treeview.e-virtualization .e-ul {
|
|
6016
6058
|
overflow: unset;
|
|
6017
6059
|
}
|
|
6060
|
+
.e-treeview .e-mask-parent {
|
|
6061
|
+
display: none;
|
|
6062
|
+
}
|
|
6018
6063
|
.e-treeview > .e-ul {
|
|
6019
6064
|
-webkit-overflow-scrolling: touch;
|
|
6020
6065
|
overflow: auto;
|
|
@@ -6120,6 +6165,11 @@
|
|
|
6120
6165
|
position: absolute;
|
|
6121
6166
|
width: 100%;
|
|
6122
6167
|
}
|
|
6168
|
+
@supports (-webkit-overflow-scrolling: touch) {
|
|
6169
|
+
.e-treeview .e-fullrow {
|
|
6170
|
+
z-index: -1;
|
|
6171
|
+
}
|
|
6172
|
+
}
|
|
6123
6173
|
.e-treeview .e-checkbox-wrapper {
|
|
6124
6174
|
margin: 0 0 0 5px;
|
|
6125
6175
|
pointer-events: all;
|
|
@@ -6447,8 +6497,8 @@
|
|
|
6447
6497
|
background: transparent;
|
|
6448
6498
|
}
|
|
6449
6499
|
.e-treeview .e-list-item.e-hover > .e-fullrow, .e-treeview .e-list-item.e-node-focus > .e-fullrow {
|
|
6450
|
-
background-color:
|
|
6451
|
-
border-color:
|
|
6500
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
6501
|
+
border-color: rgb(242.05, 243.9, 245.75);
|
|
6452
6502
|
}
|
|
6453
6503
|
.e-treeview .e-list-item.e-hover > .e-text-content, .e-treeview .e-list-item.e-node-focus > .e-text-content {
|
|
6454
6504
|
color: #212529;
|
|
@@ -6494,8 +6544,8 @@
|
|
|
6494
6544
|
color: #007bff;
|
|
6495
6545
|
}
|
|
6496
6546
|
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow, .e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
|
|
6497
|
-
background-color:
|
|
6498
|
-
border-color:
|
|
6547
|
+
background-color: rgb(0, 104.55, 216.75);
|
|
6548
|
+
border-color: rgb(0, 104.55, 216.75);
|
|
6499
6549
|
}
|
|
6500
6550
|
.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 {
|
|
6501
6551
|
color: #fff;
|
|
@@ -6554,16 +6604,16 @@
|
|
|
6554
6604
|
border-top-color: transparent;
|
|
6555
6605
|
}
|
|
6556
6606
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-hover > .e-text-content, .e-treeview:not(.e-fullrow-wrap) .e-list-item.e-node-focus > .e-text-content {
|
|
6557
|
-
background-color:
|
|
6558
|
-
border-color:
|
|
6607
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
6608
|
+
border-color: rgb(242.05, 243.9, 245.75);
|
|
6559
6609
|
}
|
|
6560
6610
|
.e-treeview:not(.e-fullrow-wrap) .e-list-item.e-active > .e-text-content {
|
|
6561
6611
|
background-color: #007bff;
|
|
6562
6612
|
border-color: #007bff;
|
|
6563
6613
|
}
|
|
6564
6614
|
.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 {
|
|
6565
|
-
background-color:
|
|
6566
|
-
border-color:
|
|
6615
|
+
background-color: rgb(0, 104.55, 216.75);
|
|
6616
|
+
border-color: rgb(0, 104.55, 216.75);
|
|
6567
6617
|
}
|
|
6568
6618
|
.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 {
|
|
6569
6619
|
background-color: transparent;
|
|
@@ -7444,7 +7494,7 @@ ejs-sidebar {
|
|
|
7444
7494
|
}
|
|
7445
7495
|
.e-menu-wrapper .e-menu .e-menu-item.e-focused,
|
|
7446
7496
|
.e-menu-container .e-menu .e-menu-item.e-focused {
|
|
7447
|
-
color:
|
|
7497
|
+
color: rgb(0, 86.1, 178.5);
|
|
7448
7498
|
outline: 0 solid #f8f9fa;
|
|
7449
7499
|
outline-offset: 0;
|
|
7450
7500
|
background: transparent;
|
|
@@ -7455,16 +7505,16 @@ ejs-sidebar {
|
|
|
7455
7505
|
}
|
|
7456
7506
|
.e-menu-wrapper .e-menu .e-menu-item.e-focused .e-menu-icon,
|
|
7457
7507
|
.e-menu-container .e-menu .e-menu-item.e-focused .e-menu-icon {
|
|
7458
|
-
color:
|
|
7508
|
+
color: rgb(0, 86.1, 178.5);
|
|
7459
7509
|
}
|
|
7460
7510
|
.e-menu-wrapper .e-menu .e-menu-item.e-selected, .e-menu-wrapper .e-menu .e-menu-item.e-active-item,
|
|
7461
7511
|
.e-menu-container .e-menu .e-menu-item.e-selected,
|
|
7462
7512
|
.e-menu-container .e-menu .e-menu-item.e-active-item {
|
|
7463
|
-
color:
|
|
7464
|
-
outline: 0 solid
|
|
7513
|
+
color: rgb(0, 86.1, 178.5);
|
|
7514
|
+
outline: 0 solid rgb(242.05, 243.9, 245.75);
|
|
7465
7515
|
outline-offset: 0;
|
|
7466
7516
|
background: transparent;
|
|
7467
|
-
background:
|
|
7517
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
7468
7518
|
}
|
|
7469
7519
|
.e-menu-wrapper .e-menu .e-menu-item.e-selected .e-caret, .e-menu-wrapper .e-menu .e-menu-item.e-active-item .e-caret,
|
|
7470
7520
|
.e-menu-container .e-menu .e-menu-item.e-selected .e-caret,
|
|
@@ -7529,7 +7579,7 @@ ejs-sidebar {
|
|
|
7529
7579
|
}
|
|
7530
7580
|
.e-menu-wrapper .e-ul .e-menu-item.e-focused,
|
|
7531
7581
|
.e-menu-container .e-ul .e-menu-item.e-focused {
|
|
7532
|
-
background-color:
|
|
7582
|
+
background-color: rgb(242.05, 243.9, 245.75);
|
|
7533
7583
|
color: #212529;
|
|
7534
7584
|
outline: 0 solid #e9ecef;
|
|
7535
7585
|
outline-offset: 0;
|
|
@@ -7564,8 +7614,8 @@ ejs-sidebar {
|
|
|
7564
7614
|
}
|
|
7565
7615
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:hover,
|
|
7566
7616
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:hover {
|
|
7567
|
-
background:
|
|
7568
|
-
border: 1px inset
|
|
7617
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
7618
|
+
border: 1px inset rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
7569
7619
|
}
|
|
7570
7620
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:hover .e-icons,
|
|
7571
7621
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:hover .e-icons {
|
|
@@ -7573,8 +7623,8 @@ ejs-sidebar {
|
|
|
7573
7623
|
}
|
|
7574
7624
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:focus,
|
|
7575
7625
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:focus {
|
|
7576
|
-
background:
|
|
7577
|
-
border-color:
|
|
7626
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
7627
|
+
border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
7578
7628
|
}
|
|
7579
7629
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:focus .e-icons,
|
|
7580
7630
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:focus .e-icons {
|
|
@@ -7582,8 +7632,8 @@ ejs-sidebar {
|
|
|
7582
7632
|
}
|
|
7583
7633
|
.e-menu-wrapper .e-menu-hscroll.e-hscroll .e-scroll-nav:active,
|
|
7584
7634
|
.e-menu-container .e-menu-hscroll.e-hscroll .e-scroll-nav:active {
|
|
7585
|
-
background:
|
|
7586
|
-
border: 1px inset
|
|
7635
|
+
background: rgb(90.2703862661, 97.7929184549, 104.4796137339);
|
|
7636
|
+
border: 1px inset rgb(84.3605150215, 91.3905579399, 97.6394849785);
|
|
7587
7637
|
}
|
|
7588
7638
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav,
|
|
7589
7639
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav {
|
|
@@ -7597,7 +7647,7 @@ ejs-sidebar {
|
|
|
7597
7647
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:hover, .e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:focus,
|
|
7598
7648
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:hover,
|
|
7599
7649
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:focus {
|
|
7600
|
-
background:
|
|
7650
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
7601
7651
|
}
|
|
7602
7652
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active,
|
|
7603
7653
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
@@ -7888,14 +7938,29 @@ ejs-sidebar {
|
|
|
7888
7938
|
padding-right: 8px;
|
|
7889
7939
|
}
|
|
7890
7940
|
|
|
7941
|
+
.e-breadcrumb-menu-item {
|
|
7942
|
+
position: absolute;
|
|
7943
|
+
width: 1px;
|
|
7944
|
+
height: 1px;
|
|
7945
|
+
margin: -1px;
|
|
7946
|
+
padding: 0;
|
|
7947
|
+
overflow: hidden;
|
|
7948
|
+
clip: rect(0, 0, 0, 0);
|
|
7949
|
+
border: 0;
|
|
7950
|
+
}
|
|
7951
|
+
|
|
7952
|
+
.e-hidden-popup {
|
|
7953
|
+
visibility: hidden;
|
|
7954
|
+
}
|
|
7955
|
+
|
|
7891
7956
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
7892
7957
|
color: #007bff;
|
|
7893
7958
|
}
|
|
7894
7959
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:hover, .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
7895
|
-
color:
|
|
7960
|
+
color: rgb(0, 86.1, 178.5);
|
|
7896
7961
|
}
|
|
7897
7962
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:active {
|
|
7898
|
-
color:
|
|
7963
|
+
color: rgb(0, 73.8, 153);
|
|
7899
7964
|
}
|
|
7900
7965
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
7901
7966
|
background: #dee2e6;
|
|
@@ -7956,11 +8021,11 @@ ejs-sidebar {
|
|
|
7956
8021
|
color: #6c757d;
|
|
7957
8022
|
}
|
|
7958
8023
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
7959
|
-
background:
|
|
8024
|
+
background: rgb(253.95, 254.1, 254.25);
|
|
7960
8025
|
color: #212529;
|
|
7961
8026
|
}
|
|
7962
8027
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
7963
|
-
background:
|
|
8028
|
+
background: rgb(253.95, 254.1, 254.25);
|
|
7964
8029
|
color: #212529;
|
|
7965
8030
|
}
|
|
7966
8031
|
|
|
@@ -8820,14 +8885,14 @@ ejs-sidebar {
|
|
|
8820
8885
|
.e-stepper:not(.e-step-type-label) .e-indicator:hover,
|
|
8821
8886
|
.e-stepper:not(.e-step-type-label) .e-step:hover {
|
|
8822
8887
|
color: #fff;
|
|
8823
|
-
background:
|
|
8888
|
+
background: rgb(0, 98.4, 204);
|
|
8824
8889
|
}
|
|
8825
8890
|
.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 {
|
|
8826
8891
|
color: #495057;
|
|
8827
8892
|
}
|
|
8828
8893
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-indicator:active,
|
|
8829
8894
|
.e-stepper:not(.e-step-type-label) .e-step-selected .e-step:active {
|
|
8830
|
-
background:
|
|
8895
|
+
background: rgb(0, 98.4, 204);
|
|
8831
8896
|
}
|
|
8832
8897
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-indicator:active,
|
|
8833
8898
|
.e-stepper:not(.e-step-type-label) .e-step-valid.e-step-selected .e-step:active {
|