@syncfusion/ej2-navigations 19.3.56 → 19.4.41
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +57 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +513 -144
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +520 -145
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/accordion/accordion-model.d.ts +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/v-scroll.js +1 -1
- package/src/sidebar/sidebar.js +4 -4
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +33 -16
- package/src/tab/tab.js +66 -31
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +48 -0
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +317 -84
- package/styles/bootstrap.css +316 -83
- package/styles/bootstrap4.css +317 -76
- package/styles/bootstrap5-dark.css +339 -75
- package/styles/bootstrap5.css +341 -77
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +305 -41
- package/styles/fabric.css +308 -44
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +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 +1 -1
- package/styles/h-scroll/bootstrap5-dark.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 +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +317 -47
- package/styles/highcontrast.css +322 -52
- package/styles/material-dark.css +295 -32
- package/styles/material.css +296 -33
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +1 -1
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +1 -1
- package/styles/menu/bootstrap.css +1 -1
- package/styles/menu/bootstrap4.css +1 -1
- package/styles/menu/bootstrap5-dark.css +4 -4
- package/styles/menu/bootstrap5.css +5 -5
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +1 -1
- package/styles/menu/material.css +1 -1
- package/styles/menu/tailwind-dark.css +1 -1
- package/styles/menu/tailwind.css +1 -1
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +53 -30
- package/styles/tab/bootstrap5.css +53 -30
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +313 -50
- package/styles/tailwind.css +313 -50
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
package/styles/tab/fabric.css
CHANGED
|
@@ -2186,6 +2186,10 @@
|
|
|
2186
2186
|
top: 0;
|
|
2187
2187
|
}
|
|
2188
2188
|
|
|
2189
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2190
|
+
display: none;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2189
2193
|
.e-tab .e-tab-header.e-vertical {
|
|
2190
2194
|
max-width: 150px;
|
|
2191
2195
|
z-index: 1;
|
|
@@ -2453,6 +2457,11 @@
|
|
|
2453
2457
|
min-height: 62px;
|
|
2454
2458
|
}
|
|
2455
2459
|
|
|
2460
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2461
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
|
|
2462
|
+
display: none;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2456
2465
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2457
2466
|
height: 62px;
|
|
2458
2467
|
}
|
|
@@ -3602,6 +3611,10 @@
|
|
|
3602
3611
|
color: #a6a6a6;
|
|
3603
3612
|
}
|
|
3604
3613
|
|
|
3614
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3615
|
+
border: initial;
|
|
3616
|
+
}
|
|
3617
|
+
|
|
3605
3618
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3606
3619
|
background: #fff;
|
|
3607
3620
|
border: 1px solid #eaeaea;
|
|
@@ -3641,6 +3654,11 @@
|
|
|
3641
3654
|
border-color: #d1ebff;
|
|
3642
3655
|
}
|
|
3643
3656
|
|
|
3657
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3658
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3659
|
+
color: #333;
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3644
3662
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3645
3663
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3646
3664
|
color: #a6a6a6;
|
|
@@ -3712,9 +3730,8 @@
|
|
|
3712
3730
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
3713
3731
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
3714
3732
|
background: #eaeaea;
|
|
3715
|
-
border: initial;
|
|
3716
|
-
border-radius: 0;
|
|
3717
3733
|
border: 1px solid #f4f4f4;
|
|
3734
|
+
border-radius: 0;
|
|
3718
3735
|
}
|
|
3719
3736
|
|
|
3720
3737
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
@@ -3727,10 +3744,9 @@
|
|
|
3727
3744
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
3728
3745
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon {
|
|
3729
3746
|
background: inherit;
|
|
3730
|
-
border:
|
|
3747
|
+
border: 1px solid #767676;
|
|
3731
3748
|
border-radius: 0;
|
|
3732
3749
|
color: #000;
|
|
3733
|
-
border: 1px solid #767676;
|
|
3734
3750
|
}
|
|
3735
3751
|
|
|
3736
3752
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3738,9 +3754,8 @@
|
|
|
3738
3754
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
3739
3755
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
3740
3756
|
background: #eaeaea;
|
|
3741
|
-
border: initial;
|
|
3742
|
-
border-radius: 0;
|
|
3743
3757
|
border: 1px solid #767676;
|
|
3758
|
+
border-radius: 0;
|
|
3744
3759
|
}
|
|
3745
3760
|
|
|
3746
3761
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
@@ -3748,10 +3763,9 @@
|
|
|
3748
3763
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
3749
3764
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
3750
3765
|
background: #eaeaea;
|
|
3751
|
-
border:
|
|
3766
|
+
border: 1px solid #767676;
|
|
3752
3767
|
border-radius: 0;
|
|
3753
3768
|
box-shadow: none;
|
|
3754
|
-
border: 1px solid #767676;
|
|
3755
3769
|
}
|
|
3756
3770
|
|
|
3757
3771
|
.e-tab .e-tab-header .e-hor-nav:hover,
|
|
@@ -4067,7 +4081,7 @@
|
|
|
4067
4081
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
4068
4082
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
4069
4083
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
4070
|
-
color: #
|
|
4084
|
+
color: #333;
|
|
4071
4085
|
}
|
|
4072
4086
|
|
|
4073
4087
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
@@ -4106,27 +4120,23 @@
|
|
|
4106
4120
|
border-color: #f4f4f4;
|
|
4107
4121
|
}
|
|
4108
4122
|
|
|
4109
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
4114
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
4115
|
-
color: #fff;
|
|
4116
|
-
color: #000;
|
|
4123
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4124
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4125
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4126
|
+
color: #333;
|
|
4117
4127
|
}
|
|
4118
4128
|
|
|
4119
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-
|
|
4120
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4121
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4129
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4122
4130
|
color: #333;
|
|
4123
4131
|
}
|
|
4124
4132
|
|
|
4125
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-
|
|
4126
|
-
|
|
4133
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4134
|
+
background: inherit;
|
|
4127
4135
|
}
|
|
4128
4136
|
|
|
4129
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-
|
|
4137
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
4138
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
|
|
4139
|
+
color: #fff;
|
|
4130
4140
|
color: #000;
|
|
4131
4141
|
}
|
|
4132
4142
|
|
|
@@ -4207,52 +4217,65 @@
|
|
|
4207
4217
|
color: #333;
|
|
4208
4218
|
}
|
|
4209
4219
|
|
|
4220
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4210
4221
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4211
4222
|
color: #333;
|
|
4212
4223
|
border: 1px solid #f4f4f4;
|
|
4213
4224
|
}
|
|
4214
4225
|
|
|
4226
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4215
4227
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4216
4228
|
background: #eaeaea;
|
|
4217
4229
|
color: #000;
|
|
4218
4230
|
}
|
|
4219
4231
|
|
|
4232
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4220
4233
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4221
4234
|
color: #000;
|
|
4222
4235
|
border: 1px solid #767676;
|
|
4223
4236
|
}
|
|
4224
4237
|
|
|
4238
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4225
4239
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4226
4240
|
background: #eaeaea;
|
|
4227
4241
|
color: #000;
|
|
4228
4242
|
}
|
|
4229
4243
|
|
|
4244
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4230
4245
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4231
4246
|
animation: none;
|
|
4232
4247
|
}
|
|
4233
4248
|
|
|
4249
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4250
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4234
4251
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4235
4252
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4236
4253
|
color: #333;
|
|
4237
4254
|
border: 1px solid #f4f4f4;
|
|
4238
4255
|
}
|
|
4239
4256
|
|
|
4257
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4258
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4240
4259
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4241
4260
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4242
4261
|
background: #eaeaea;
|
|
4243
4262
|
color: #000;
|
|
4244
4263
|
}
|
|
4245
4264
|
|
|
4265
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4266
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4246
4267
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4247
4268
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4248
4269
|
color: #000;
|
|
4249
4270
|
border: 1px solid #767676;
|
|
4250
4271
|
}
|
|
4251
4272
|
|
|
4273
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4252
4274
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4253
4275
|
animation: none;
|
|
4254
4276
|
}
|
|
4255
4277
|
|
|
4278
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4256
4279
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4257
4280
|
color: #000;
|
|
4258
4281
|
}
|
|
@@ -2191,6 +2191,10 @@
|
|
|
2191
2191
|
top: 0;
|
|
2192
2192
|
}
|
|
2193
2193
|
|
|
2194
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2195
|
+
display: none;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2194
2198
|
.e-tab .e-tab-header.e-vertical {
|
|
2195
2199
|
max-width: 150px;
|
|
2196
2200
|
z-index: 1;
|
|
@@ -2458,6 +2462,11 @@
|
|
|
2458
2462
|
min-height: 62px;
|
|
2459
2463
|
}
|
|
2460
2464
|
|
|
2465
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2466
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
|
|
2467
|
+
display: none;
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2461
2470
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2462
2471
|
height: 62px;
|
|
2463
2472
|
}
|
|
@@ -3612,6 +3621,10 @@
|
|
|
3612
3621
|
color: #757575;
|
|
3613
3622
|
}
|
|
3614
3623
|
|
|
3624
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3625
|
+
border: initial;
|
|
3626
|
+
}
|
|
3627
|
+
|
|
3615
3628
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3616
3629
|
background: #fff;
|
|
3617
3630
|
border: 1px solid #757575;
|
|
@@ -3638,7 +3651,6 @@
|
|
|
3638
3651
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
3639
3652
|
background: #ecf;
|
|
3640
3653
|
border-color: #000;
|
|
3641
|
-
background: #ecf;
|
|
3642
3654
|
}
|
|
3643
3655
|
|
|
3644
3656
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
@@ -3657,6 +3669,11 @@
|
|
|
3657
3669
|
color: #fff;
|
|
3658
3670
|
}
|
|
3659
3671
|
|
|
3672
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3673
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3674
|
+
color: #000;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3660
3677
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3661
3678
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3662
3679
|
color: #757575;
|
|
@@ -3740,7 +3757,6 @@
|
|
|
3740
3757
|
background: #ecf;
|
|
3741
3758
|
border: initial;
|
|
3742
3759
|
border-radius: 0;
|
|
3743
|
-
border: 2px solid #000;
|
|
3744
3760
|
}
|
|
3745
3761
|
|
|
3746
3762
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
@@ -3756,7 +3772,6 @@
|
|
|
3756
3772
|
border: initial;
|
|
3757
3773
|
border-radius: 0;
|
|
3758
3774
|
color: #000;
|
|
3759
|
-
border: 2px solid #000;
|
|
3760
3775
|
}
|
|
3761
3776
|
|
|
3762
3777
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3766,7 +3781,6 @@
|
|
|
3766
3781
|
background: #ecf;
|
|
3767
3782
|
border: initial;
|
|
3768
3783
|
border-radius: 0;
|
|
3769
|
-
border: 2px solid #000;
|
|
3770
3784
|
}
|
|
3771
3785
|
|
|
3772
3786
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
@@ -3778,7 +3792,6 @@
|
|
|
3778
3792
|
border-radius: 0;
|
|
3779
3793
|
box-shadow: none;
|
|
3780
3794
|
background: #400074;
|
|
3781
|
-
border: 2px solid #400074;
|
|
3782
3795
|
color: #fff;
|
|
3783
3796
|
}
|
|
3784
3797
|
|
|
@@ -4169,6 +4182,16 @@
|
|
|
4169
4182
|
border-color: #ccc;
|
|
4170
4183
|
}
|
|
4171
4184
|
|
|
4185
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4186
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4187
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4188
|
+
color: #000;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4192
|
+
color: #000;
|
|
4193
|
+
}
|
|
4194
|
+
|
|
4172
4195
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4173
4196
|
background: inherit;
|
|
4174
4197
|
background-color: #ecf;
|
|
@@ -4190,20 +4213,6 @@
|
|
|
4190
4213
|
color: #400074;
|
|
4191
4214
|
}
|
|
4192
4215
|
|
|
4193
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
4194
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4195
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4196
|
-
color: #000;
|
|
4197
|
-
}
|
|
4198
|
-
|
|
4199
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4200
|
-
color: #000;
|
|
4201
|
-
}
|
|
4202
|
-
|
|
4203
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
4204
|
-
color: #000;
|
|
4205
|
-
}
|
|
4206
|
-
|
|
4207
4216
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4208
4217
|
border: 0;
|
|
4209
4218
|
margin: 0;
|
|
@@ -4310,11 +4319,13 @@
|
|
|
4310
4319
|
color: #fff;
|
|
4311
4320
|
}
|
|
4312
4321
|
|
|
4322
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4313
4323
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4314
4324
|
color: #000;
|
|
4315
4325
|
border: 2px solid #ccc;
|
|
4316
4326
|
}
|
|
4317
4327
|
|
|
4328
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4318
4329
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4319
4330
|
background: #ecf;
|
|
4320
4331
|
color: #000;
|
|
@@ -4322,21 +4333,25 @@
|
|
|
4322
4333
|
color: #000;
|
|
4323
4334
|
}
|
|
4324
4335
|
|
|
4336
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active,
|
|
4325
4337
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active {
|
|
4326
4338
|
background: #400074;
|
|
4327
4339
|
color: #fff;
|
|
4328
4340
|
}
|
|
4329
4341
|
|
|
4342
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active .e-icons,
|
|
4330
4343
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active .e-icons {
|
|
4331
4344
|
color: #fff;
|
|
4332
4345
|
}
|
|
4333
4346
|
|
|
4347
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4334
4348
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4335
4349
|
color: #000;
|
|
4336
4350
|
background: transparent;
|
|
4337
4351
|
border: 2px solid #000;
|
|
4338
4352
|
}
|
|
4339
4353
|
|
|
4354
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4340
4355
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4341
4356
|
background: #ecf;
|
|
4342
4357
|
color: #000;
|
|
@@ -4344,22 +4359,28 @@
|
|
|
4344
4359
|
color: #000;
|
|
4345
4360
|
}
|
|
4346
4361
|
|
|
4362
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:active,
|
|
4347
4363
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active {
|
|
4348
4364
|
background: #400074;
|
|
4349
4365
|
border-color: #400074;
|
|
4350
4366
|
color: #fff;
|
|
4351
4367
|
}
|
|
4352
4368
|
|
|
4369
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4353
4370
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4354
4371
|
animation: none;
|
|
4355
4372
|
}
|
|
4356
4373
|
|
|
4374
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4375
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4357
4376
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4358
4377
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4359
4378
|
color: #000;
|
|
4360
4379
|
border: 2px solid #ccc;
|
|
4361
4380
|
}
|
|
4362
4381
|
|
|
4382
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4383
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4363
4384
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4364
4385
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4365
4386
|
background: #ecf;
|
|
@@ -4368,17 +4389,23 @@
|
|
|
4368
4389
|
color: #000;
|
|
4369
4390
|
}
|
|
4370
4391
|
|
|
4392
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:active .e-icons,
|
|
4393
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active .e-icons,
|
|
4371
4394
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active .e-icons,
|
|
4372
4395
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active .e-icons {
|
|
4373
4396
|
color: #fff;
|
|
4374
4397
|
}
|
|
4375
4398
|
|
|
4399
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:active:hover,
|
|
4400
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active:hover,
|
|
4376
4401
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active:hover,
|
|
4377
4402
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active:hover {
|
|
4378
4403
|
background: #400074;
|
|
4379
4404
|
color: #fff;
|
|
4380
4405
|
}
|
|
4381
4406
|
|
|
4407
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4408
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4382
4409
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4383
4410
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4384
4411
|
color: #000;
|
|
@@ -4386,6 +4413,8 @@
|
|
|
4386
4413
|
border: 2px solid #000;
|
|
4387
4414
|
}
|
|
4388
4415
|
|
|
4416
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
4417
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
4389
4418
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
4390
4419
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
4391
4420
|
background: #ecf;
|
|
@@ -4393,6 +4422,8 @@
|
|
|
4393
4422
|
color: #000;
|
|
4394
4423
|
}
|
|
4395
4424
|
|
|
4425
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
4426
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
4396
4427
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
4397
4428
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
4398
4429
|
background: #400074;
|
|
@@ -4400,10 +4431,12 @@
|
|
|
4400
4431
|
color: #fff;
|
|
4401
4432
|
}
|
|
4402
4433
|
|
|
4434
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4403
4435
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4404
4436
|
animation: none;
|
|
4405
4437
|
}
|
|
4406
4438
|
|
|
4439
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4407
4440
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4408
4441
|
color: #000;
|
|
4409
4442
|
}
|
|
@@ -2196,6 +2196,10 @@
|
|
|
2196
2196
|
top: 0;
|
|
2197
2197
|
}
|
|
2198
2198
|
|
|
2199
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2200
|
+
display: none;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2199
2203
|
.e-tab .e-tab-header.e-vertical {
|
|
2200
2204
|
max-width: 150px;
|
|
2201
2205
|
z-index: 1;
|
|
@@ -2463,6 +2467,11 @@
|
|
|
2463
2467
|
min-height: 62px;
|
|
2464
2468
|
}
|
|
2465
2469
|
|
|
2470
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2471
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
|
|
2472
|
+
display: none;
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2466
2475
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2467
2476
|
height: 62px;
|
|
2468
2477
|
}
|
|
@@ -3617,6 +3626,10 @@
|
|
|
3617
3626
|
color: #757575;
|
|
3618
3627
|
}
|
|
3619
3628
|
|
|
3629
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3630
|
+
border: initial;
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3620
3633
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3621
3634
|
background: #000;
|
|
3622
3635
|
border: 1px solid #969696;
|
|
@@ -3643,7 +3656,6 @@
|
|
|
3643
3656
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover {
|
|
3644
3657
|
background: #685708;
|
|
3645
3658
|
border-color: #fff;
|
|
3646
|
-
background: #685708;
|
|
3647
3659
|
}
|
|
3648
3660
|
|
|
3649
3661
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
@@ -3662,6 +3674,11 @@
|
|
|
3662
3674
|
color: #000;
|
|
3663
3675
|
}
|
|
3664
3676
|
|
|
3677
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3678
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3679
|
+
color: #fff;
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3665
3682
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3666
3683
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3667
3684
|
color: #757575;
|
|
@@ -3743,9 +3760,8 @@
|
|
|
3743
3760
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
3744
3761
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
3745
3762
|
background: #685708;
|
|
3746
|
-
border: initial;
|
|
3747
|
-
border-radius: 0;
|
|
3748
3763
|
border: 2px solid #fff;
|
|
3764
|
+
border-radius: 0;
|
|
3749
3765
|
}
|
|
3750
3766
|
|
|
3751
3767
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
@@ -3758,10 +3774,9 @@
|
|
|
3758
3774
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
3759
3775
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon {
|
|
3760
3776
|
background: transparent;
|
|
3761
|
-
border:
|
|
3777
|
+
border: 2px solid #fff;
|
|
3762
3778
|
border-radius: 0;
|
|
3763
3779
|
color: #fff;
|
|
3764
|
-
border: 2px solid #fff;
|
|
3765
3780
|
}
|
|
3766
3781
|
|
|
3767
3782
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3769,9 +3784,8 @@
|
|
|
3769
3784
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
3770
3785
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
3771
3786
|
background: #685708;
|
|
3772
|
-
border: initial;
|
|
3773
|
-
border-radius: 0;
|
|
3774
3787
|
border: 2px solid #fff;
|
|
3788
|
+
border-radius: 0;
|
|
3775
3789
|
}
|
|
3776
3790
|
|
|
3777
3791
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
@@ -3779,11 +3793,10 @@
|
|
|
3779
3793
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
3780
3794
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
3781
3795
|
background: #685708;
|
|
3782
|
-
border:
|
|
3796
|
+
border: 1px solid #ffd939;
|
|
3783
3797
|
border-radius: 0;
|
|
3784
3798
|
box-shadow: none;
|
|
3785
3799
|
background: #ffd939;
|
|
3786
|
-
border: 2px solid #ffd939;
|
|
3787
3800
|
color: #000;
|
|
3788
3801
|
}
|
|
3789
3802
|
|
|
@@ -4174,6 +4187,16 @@
|
|
|
4174
4187
|
border-color: #333;
|
|
4175
4188
|
}
|
|
4176
4189
|
|
|
4190
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4191
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4192
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4193
|
+
color: #fff;
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4197
|
+
color: #fff;
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4177
4200
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4178
4201
|
background: inherit;
|
|
4179
4202
|
background-color: #685708;
|
|
@@ -4195,20 +4218,6 @@
|
|
|
4195
4218
|
color: #ffd939;
|
|
4196
4219
|
}
|
|
4197
4220
|
|
|
4198
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
4199
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4200
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4201
|
-
color: #fff;
|
|
4202
|
-
}
|
|
4203
|
-
|
|
4204
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4205
|
-
color: #fff;
|
|
4206
|
-
}
|
|
4207
|
-
|
|
4208
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
4209
|
-
color: #fff;
|
|
4210
|
-
}
|
|
4211
|
-
|
|
4212
4221
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4213
4222
|
border: 0;
|
|
4214
4223
|
margin: 0;
|
|
@@ -4315,11 +4324,13 @@
|
|
|
4315
4324
|
color: #000;
|
|
4316
4325
|
}
|
|
4317
4326
|
|
|
4327
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4318
4328
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4319
4329
|
color: #fff;
|
|
4320
4330
|
border: 2px solid #333;
|
|
4321
4331
|
}
|
|
4322
4332
|
|
|
4333
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4323
4334
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4324
4335
|
background: #685708;
|
|
4325
4336
|
color: #fff;
|
|
@@ -4327,21 +4338,25 @@
|
|
|
4327
4338
|
color: #fff;
|
|
4328
4339
|
}
|
|
4329
4340
|
|
|
4341
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active,
|
|
4330
4342
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active {
|
|
4331
4343
|
background: #ffd939;
|
|
4332
4344
|
color: #000;
|
|
4333
4345
|
}
|
|
4334
4346
|
|
|
4347
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:active .e-icons,
|
|
4335
4348
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:active .e-icons {
|
|
4336
4349
|
color: #000;
|
|
4337
4350
|
}
|
|
4338
4351
|
|
|
4352
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4339
4353
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4340
4354
|
color: #fff;
|
|
4341
4355
|
background: transparent;
|
|
4342
4356
|
border: 2px solid #fff;
|
|
4343
4357
|
}
|
|
4344
4358
|
|
|
4359
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4345
4360
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4346
4361
|
background: #685708;
|
|
4347
4362
|
color: #fff;
|
|
@@ -4349,22 +4364,28 @@
|
|
|
4349
4364
|
color: #fff;
|
|
4350
4365
|
}
|
|
4351
4366
|
|
|
4367
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:active,
|
|
4352
4368
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:active {
|
|
4353
4369
|
background: #ffd939;
|
|
4354
4370
|
border-color: #ffd939;
|
|
4355
4371
|
color: #000;
|
|
4356
4372
|
}
|
|
4357
4373
|
|
|
4374
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4358
4375
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4359
4376
|
animation: none;
|
|
4360
4377
|
}
|
|
4361
4378
|
|
|
4379
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4380
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4362
4381
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4363
4382
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4364
4383
|
color: #fff;
|
|
4365
4384
|
border: 2px solid #333;
|
|
4366
4385
|
}
|
|
4367
4386
|
|
|
4387
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4388
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4368
4389
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4369
4390
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4370
4391
|
background: #685708;
|
|
@@ -4373,17 +4394,23 @@
|
|
|
4373
4394
|
color: #fff;
|
|
4374
4395
|
}
|
|
4375
4396
|
|
|
4397
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:active .e-icons,
|
|
4398
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active .e-icons,
|
|
4376
4399
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active .e-icons,
|
|
4377
4400
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active .e-icons {
|
|
4378
4401
|
color: #000;
|
|
4379
4402
|
}
|
|
4380
4403
|
|
|
4404
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:active:hover,
|
|
4405
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:active:hover,
|
|
4381
4406
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:active:hover,
|
|
4382
4407
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:active:hover {
|
|
4383
4408
|
background: #ffd939;
|
|
4384
4409
|
color: #000;
|
|
4385
4410
|
}
|
|
4386
4411
|
|
|
4412
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4413
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4387
4414
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4388
4415
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4389
4416
|
color: #fff;
|
|
@@ -4391,6 +4418,8 @@
|
|
|
4391
4418
|
border: 2px solid #fff;
|
|
4392
4419
|
}
|
|
4393
4420
|
|
|
4421
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
4422
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover,
|
|
4394
4423
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
4395
4424
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:hover {
|
|
4396
4425
|
background: #685708;
|
|
@@ -4398,6 +4427,8 @@
|
|
|
4398
4427
|
color: #fff;
|
|
4399
4428
|
}
|
|
4400
4429
|
|
|
4430
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
4431
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active,
|
|
4401
4432
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
4402
4433
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon:active {
|
|
4403
4434
|
background: #ffd939;
|
|
@@ -4405,10 +4436,12 @@
|
|
|
4405
4436
|
color: #000;
|
|
4406
4437
|
}
|
|
4407
4438
|
|
|
4439
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4408
4440
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4409
4441
|
animation: none;
|
|
4410
4442
|
}
|
|
4411
4443
|
|
|
4444
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4412
4445
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4413
4446
|
color: #fff;
|
|
4414
4447
|
}
|