@syncfusion/ej2-navigations 19.3.57 → 19.4.47
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 +517 -142
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +524 -143
- 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/menu-base.js +8 -2
- package/src/common/v-scroll.js +1 -1
- 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 +319 -85
- package/styles/bootstrap.css +318 -84
- package/styles/bootstrap4.css +319 -77
- package/styles/bootstrap5-dark.css +341 -76
- package/styles/bootstrap5.css +343 -78
- 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 +307 -42
- package/styles/fabric.css +310 -45
- 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 +319 -48
- package/styles/highcontrast.css +324 -53
- package/styles/material-dark.css +297 -33
- package/styles/material.css +298 -34
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +3 -2
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +3 -2
- package/styles/menu/bootstrap.css +3 -2
- package/styles/menu/bootstrap4.css +3 -2
- package/styles/menu/bootstrap5-dark.css +6 -5
- package/styles/menu/bootstrap5.css +7 -6
- package/styles/menu/fabric-dark.css +2 -1
- package/styles/menu/fabric.css +2 -1
- package/styles/menu/highcontrast-light.css +2 -1
- package/styles/menu/highcontrast.css +2 -1
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +3 -2
- package/styles/menu/material.css +3 -2
- package/styles/menu/tailwind-dark.css +3 -2
- package/styles/menu/tailwind.css +3 -2
- 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 +315 -51
- package/styles/tailwind.css +315 -51
- 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
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.e-tab.e-vertical-tab .e-tab-header .e-popup-up-icon::after {
|
|
65
|
-
content: '\
|
|
65
|
+
content: '\eb04';
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.e-tab.e-vertical-tab .e-tab-header .e-popup-down-icon::before {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.e-tab.e-vertical-tab .e-tab-header .e-popup-down-icon::after {
|
|
73
|
-
content: '\
|
|
73
|
+
content: '\eb05';
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.e-tab.e-vertical-tab.e-icon-tab .e-tab-header .e-popup-up-icon::before {
|
|
@@ -2172,6 +2172,10 @@
|
|
|
2172
2172
|
top: 0;
|
|
2173
2173
|
}
|
|
2174
2174
|
|
|
2175
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2176
|
+
display: none;
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2175
2179
|
.e-tab .e-tab-header.e-vertical {
|
|
2176
2180
|
max-width: 150px;
|
|
2177
2181
|
z-index: 1;
|
|
@@ -2429,6 +2433,11 @@
|
|
|
2429
2433
|
min-height: 62px;
|
|
2430
2434
|
}
|
|
2431
2435
|
|
|
2436
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2437
|
+
.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 {
|
|
2438
|
+
display: none;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2432
2441
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2433
2442
|
height: 62px;
|
|
2434
2443
|
}
|
|
@@ -3527,6 +3536,10 @@
|
|
|
3527
3536
|
color: #393939;
|
|
3528
3537
|
}
|
|
3529
3538
|
|
|
3539
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3540
|
+
border: 1px solid #fff;
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3530
3543
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3531
3544
|
background: #2a2a2a;
|
|
3532
3545
|
border: 1px solid #1a1a1a;
|
|
@@ -3564,6 +3577,11 @@
|
|
|
3564
3577
|
background: #313131;
|
|
3565
3578
|
}
|
|
3566
3579
|
|
|
3580
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3581
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3582
|
+
color: #f0f0f0;
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3567
3585
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3568
3586
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3569
3587
|
color: #393939;
|
|
@@ -3653,7 +3671,6 @@
|
|
|
3653
3671
|
border: 1px solid none;
|
|
3654
3672
|
border-radius: 4px;
|
|
3655
3673
|
color: #f0f0f0;
|
|
3656
|
-
background: #2a2a2a;
|
|
3657
3674
|
}
|
|
3658
3675
|
|
|
3659
3676
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3711,7 +3728,6 @@
|
|
|
3711
3728
|
border-radius: 0 0 4px 4px;
|
|
3712
3729
|
border-top: 1px solid #fff;
|
|
3713
3730
|
border-top-color: #505050;
|
|
3714
|
-
border-bottom: 1px solid #9c9c9c;
|
|
3715
3731
|
}
|
|
3716
3732
|
|
|
3717
3733
|
.e-tab .e-tab-header.e-vertical::before {
|
|
@@ -4033,6 +4049,16 @@
|
|
|
4033
4049
|
background: inherit;
|
|
4034
4050
|
}
|
|
4035
4051
|
|
|
4052
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4053
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4054
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4055
|
+
color: #3e98ff;
|
|
4056
|
+
}
|
|
4057
|
+
|
|
4058
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4059
|
+
color: #fff;
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4036
4062
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4037
4063
|
background: #313131;
|
|
4038
4064
|
}
|
|
@@ -4047,20 +4073,6 @@
|
|
|
4047
4073
|
color: #fff;
|
|
4048
4074
|
}
|
|
4049
4075
|
|
|
4050
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
4051
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4052
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4053
|
-
color: #3e98ff;
|
|
4054
|
-
}
|
|
4055
|
-
|
|
4056
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4057
|
-
color: #fff;
|
|
4058
|
-
}
|
|
4059
|
-
|
|
4060
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
4061
|
-
color: #248aff;
|
|
4062
|
-
}
|
|
4063
|
-
|
|
4064
4076
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4065
4077
|
border: 0;
|
|
4066
4078
|
margin: 0;
|
|
@@ -4138,33 +4150,42 @@
|
|
|
4138
4150
|
color: #0070f0;
|
|
4139
4151
|
}
|
|
4140
4152
|
|
|
4153
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4141
4154
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4142
4155
|
color: #f0f0f0;
|
|
4143
4156
|
}
|
|
4144
4157
|
|
|
4158
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4145
4159
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4146
4160
|
background: inherit;
|
|
4147
4161
|
color: #f0f0f0;
|
|
4148
4162
|
}
|
|
4149
4163
|
|
|
4164
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4150
4165
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4151
4166
|
color: #f0f0f0;
|
|
4152
4167
|
}
|
|
4153
4168
|
|
|
4169
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4154
4170
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4155
4171
|
background: inherit;
|
|
4156
4172
|
color: #f0f0f0;
|
|
4157
4173
|
}
|
|
4158
4174
|
|
|
4175
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4159
4176
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4160
4177
|
animation: none;
|
|
4161
4178
|
}
|
|
4162
4179
|
|
|
4180
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4181
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4163
4182
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4164
4183
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4165
4184
|
color: #f0f0f0;
|
|
4166
4185
|
}
|
|
4167
4186
|
|
|
4187
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4188
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4168
4189
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4169
4190
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4170
4191
|
background: inherit;
|
|
@@ -4172,15 +4193,19 @@
|
|
|
4172
4193
|
background: #959595;
|
|
4173
4194
|
}
|
|
4174
4195
|
|
|
4196
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4197
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4175
4198
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4176
4199
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4177
4200
|
color: #f0f0f0;
|
|
4178
4201
|
}
|
|
4179
4202
|
|
|
4203
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4180
4204
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4181
4205
|
animation: none;
|
|
4182
4206
|
}
|
|
4183
4207
|
|
|
4208
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4184
4209
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4185
4210
|
color: #f0f0f0;
|
|
4186
4211
|
}
|
package/styles/tab/bootstrap.css
CHANGED
|
@@ -2178,6 +2178,10 @@
|
|
|
2178
2178
|
top: 0;
|
|
2179
2179
|
}
|
|
2180
2180
|
|
|
2181
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2182
|
+
display: none;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2181
2185
|
.e-tab .e-tab-header.e-vertical {
|
|
2182
2186
|
max-width: 150px;
|
|
2183
2187
|
z-index: 1;
|
|
@@ -2435,6 +2439,11 @@
|
|
|
2435
2439
|
min-height: 62px;
|
|
2436
2440
|
}
|
|
2437
2441
|
|
|
2442
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2443
|
+
.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 {
|
|
2444
|
+
display: none;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2438
2447
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2439
2448
|
height: 62px;
|
|
2440
2449
|
}
|
|
@@ -3533,6 +3542,10 @@
|
|
|
3533
3542
|
color: #777;
|
|
3534
3543
|
}
|
|
3535
3544
|
|
|
3545
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3546
|
+
border: 1px solid #fff;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3536
3549
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3537
3550
|
background: #fff;
|
|
3538
3551
|
border: 1px solid #ccc;
|
|
@@ -3570,6 +3583,11 @@
|
|
|
3570
3583
|
background: #f5f5f5;
|
|
3571
3584
|
}
|
|
3572
3585
|
|
|
3586
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3587
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3588
|
+
color: #555;
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3573
3591
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3574
3592
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3575
3593
|
color: #777;
|
|
@@ -3659,7 +3677,6 @@
|
|
|
3659
3677
|
border: 1px solid #8c8c8c;
|
|
3660
3678
|
border-radius: 4px;
|
|
3661
3679
|
color: #333;
|
|
3662
|
-
background: inherit;
|
|
3663
3680
|
}
|
|
3664
3681
|
|
|
3665
3682
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3713,11 +3730,10 @@
|
|
|
3713
3730
|
}
|
|
3714
3731
|
|
|
3715
3732
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active {
|
|
3716
|
-
border-bottom:
|
|
3733
|
+
border-bottom: 1px solid #ddd;
|
|
3717
3734
|
border-radius: 0 0 4px 4px;
|
|
3718
3735
|
border-top: 1px solid #fff;
|
|
3719
3736
|
border-top-color: #fff;
|
|
3720
|
-
border-bottom: 1px solid #ddd;
|
|
3721
3737
|
}
|
|
3722
3738
|
|
|
3723
3739
|
.e-tab .e-tab-header.e-vertical::before {
|
|
@@ -4039,6 +4055,16 @@
|
|
|
4039
4055
|
background: inherit;
|
|
4040
4056
|
}
|
|
4041
4057
|
|
|
4058
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4059
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4060
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4061
|
+
color: #317ab9;
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4065
|
+
color: #777;
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4042
4068
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4043
4069
|
background: #eee;
|
|
4044
4070
|
}
|
|
@@ -4053,20 +4079,6 @@
|
|
|
4053
4079
|
color: #1f496e;
|
|
4054
4080
|
}
|
|
4055
4081
|
|
|
4056
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
4057
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4058
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4059
|
-
color: #317ab9;
|
|
4060
|
-
}
|
|
4061
|
-
|
|
4062
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4063
|
-
color: #777;
|
|
4064
|
-
}
|
|
4065
|
-
|
|
4066
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
4067
|
-
color: #1f496e;
|
|
4068
|
-
}
|
|
4069
|
-
|
|
4070
4082
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4071
4083
|
border: 0;
|
|
4072
4084
|
margin: 0;
|
|
@@ -4144,33 +4156,42 @@
|
|
|
4144
4156
|
color: #317ab9;
|
|
4145
4157
|
}
|
|
4146
4158
|
|
|
4159
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4147
4160
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4148
4161
|
color: #777;
|
|
4149
4162
|
}
|
|
4150
4163
|
|
|
4164
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4151
4165
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4152
4166
|
background: inherit;
|
|
4153
4167
|
color: #333;
|
|
4154
4168
|
}
|
|
4155
4169
|
|
|
4170
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4156
4171
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4157
4172
|
color: #333;
|
|
4158
4173
|
}
|
|
4159
4174
|
|
|
4175
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4160
4176
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4161
4177
|
background: inherit;
|
|
4162
4178
|
color: #333;
|
|
4163
4179
|
}
|
|
4164
4180
|
|
|
4181
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4165
4182
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4166
4183
|
animation: none;
|
|
4167
4184
|
}
|
|
4168
4185
|
|
|
4186
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4187
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4169
4188
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4170
4189
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4171
4190
|
color: #777;
|
|
4172
4191
|
}
|
|
4173
4192
|
|
|
4193
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4194
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4174
4195
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4175
4196
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4176
4197
|
background: inherit;
|
|
@@ -4178,15 +4199,19 @@
|
|
|
4178
4199
|
background: #e6e6e6;
|
|
4179
4200
|
}
|
|
4180
4201
|
|
|
4202
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4203
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4181
4204
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4182
4205
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4183
4206
|
color: #333;
|
|
4184
4207
|
}
|
|
4185
4208
|
|
|
4209
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4186
4210
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4187
4211
|
animation: none;
|
|
4188
4212
|
}
|
|
4189
4213
|
|
|
4214
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4190
4215
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4191
4216
|
color: #333;
|
|
4192
4217
|
}
|
|
@@ -2185,6 +2185,10 @@
|
|
|
2185
2185
|
top: 0;
|
|
2186
2186
|
}
|
|
2187
2187
|
|
|
2188
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
2189
|
+
display: none;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2188
2192
|
.e-tab .e-tab-header.e-vertical {
|
|
2189
2193
|
max-width: 150px;
|
|
2190
2194
|
z-index: 1;
|
|
@@ -2442,6 +2446,11 @@
|
|
|
2442
2446
|
min-height: 62px;
|
|
2443
2447
|
}
|
|
2444
2448
|
|
|
2449
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
2450
|
+
.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 {
|
|
2451
|
+
display: none;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2445
2454
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
2446
2455
|
height: 62px;
|
|
2447
2456
|
}
|
|
@@ -3549,6 +3558,10 @@
|
|
|
3549
3558
|
color: #6c757d;
|
|
3550
3559
|
}
|
|
3551
3560
|
|
|
3561
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
3562
|
+
border: 1px solid #fff;
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3552
3565
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
3553
3566
|
background: #fff;
|
|
3554
3567
|
border: 1px #000;
|
|
@@ -3593,6 +3606,11 @@
|
|
|
3593
3606
|
color: #fff;
|
|
3594
3607
|
}
|
|
3595
3608
|
|
|
3609
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
3610
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
3611
|
+
color: #495057;
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3596
3614
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
3597
3615
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
3598
3616
|
color: #6c757d;
|
|
@@ -3651,7 +3669,6 @@
|
|
|
3651
3669
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) {
|
|
3652
3670
|
background: transparent;
|
|
3653
3671
|
border: 0;
|
|
3654
|
-
border: 3px solid transparent;
|
|
3655
3672
|
}
|
|
3656
3673
|
|
|
3657
3674
|
.e-tab .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
@@ -3667,9 +3684,8 @@
|
|
|
3667
3684
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
3668
3685
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
3669
3686
|
background: #5a6268;
|
|
3670
|
-
border: 1px solid #545b62;
|
|
3671
|
-
border-radius: 4px;
|
|
3672
3687
|
border: 0;
|
|
3688
|
+
border-radius: 4px;
|
|
3673
3689
|
}
|
|
3674
3690
|
|
|
3675
3691
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
@@ -3683,10 +3699,9 @@
|
|
|
3683
3699
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
3684
3700
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon {
|
|
3685
3701
|
background: #6c757d;
|
|
3686
|
-
border:
|
|
3702
|
+
border: 0;
|
|
3687
3703
|
border-radius: 4px;
|
|
3688
3704
|
color: #fff;
|
|
3689
|
-
border: 0;
|
|
3690
3705
|
}
|
|
3691
3706
|
|
|
3692
3707
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -3694,9 +3709,8 @@
|
|
|
3694
3709
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
3695
3710
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
3696
3711
|
background: #5a6268;
|
|
3697
|
-
border: 1px solid #545b62;
|
|
3698
|
-
border-radius: 4px;
|
|
3699
3712
|
border: 0;
|
|
3713
|
+
border-radius: 4px;
|
|
3700
3714
|
}
|
|
3701
3715
|
|
|
3702
3716
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
@@ -3704,16 +3718,14 @@
|
|
|
3704
3718
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
3705
3719
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
3706
3720
|
background: #5a6268;
|
|
3707
|
-
border:
|
|
3721
|
+
border: 0;
|
|
3708
3722
|
border-radius: 4px;
|
|
3709
3723
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
3710
|
-
border: 0;
|
|
3711
3724
|
}
|
|
3712
3725
|
|
|
3713
3726
|
.e-tab .e-tab-header .e-hor-nav:hover,
|
|
3714
3727
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):hover {
|
|
3715
3728
|
border: 0;
|
|
3716
|
-
border: 3px solid transparent;
|
|
3717
3729
|
}
|
|
3718
3730
|
|
|
3719
3731
|
.e-tab .e-tab-header .e-hor-nav:hover:active,
|
|
@@ -3741,11 +3753,10 @@
|
|
|
3741
3753
|
}
|
|
3742
3754
|
|
|
3743
3755
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active {
|
|
3744
|
-
border-bottom:
|
|
3756
|
+
border-bottom: 1px solid #ddd;
|
|
3745
3757
|
border-radius: 0 0 4px 4px;
|
|
3746
3758
|
border-top: 1px solid #fff;
|
|
3747
3759
|
border-top-color: #fff;
|
|
3748
|
-
border-bottom: 1px solid #ddd;
|
|
3749
3760
|
}
|
|
3750
3761
|
|
|
3751
3762
|
.e-tab .e-tab-header.e-vertical::before {
|
|
@@ -4032,7 +4043,7 @@
|
|
|
4032
4043
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
4033
4044
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
4034
4045
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
4035
|
-
color: #
|
|
4046
|
+
color: #0056b3;
|
|
4036
4047
|
}
|
|
4037
4048
|
|
|
4038
4049
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
@@ -4046,7 +4057,6 @@
|
|
|
4046
4057
|
|
|
4047
4058
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
4048
4059
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
4049
|
-
color: #fff;
|
|
4050
4060
|
color: #212529;
|
|
4051
4061
|
}
|
|
4052
4062
|
|
|
@@ -4079,6 +4089,16 @@
|
|
|
4079
4089
|
background: inherit;
|
|
4080
4090
|
}
|
|
4081
4091
|
|
|
4092
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
4093
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
4094
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
4095
|
+
color: #007bff;
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
4099
|
+
color: rgba(0, 0, 0, 0.5);
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4082
4102
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
4083
4103
|
background: transparent;
|
|
4084
4104
|
}
|
|
@@ -4096,20 +4116,6 @@
|
|
|
4096
4116
|
color: rgba(0, 0, 0, 0.5);
|
|
4097
4117
|
}
|
|
4098
4118
|
|
|
4099
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
4100
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
4101
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4102
|
-
color: #007bff;
|
|
4103
|
-
}
|
|
4104
|
-
|
|
4105
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
4106
|
-
color: rgba(0, 0, 0, 0.5);
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
4110
|
-
color: #5a6268;
|
|
4111
|
-
}
|
|
4112
|
-
|
|
4113
4119
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4114
4120
|
border: 0;
|
|
4115
4121
|
margin: 0;
|
|
@@ -4193,33 +4199,42 @@
|
|
|
4193
4199
|
color: #fff;
|
|
4194
4200
|
}
|
|
4195
4201
|
|
|
4202
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
4196
4203
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
4197
4204
|
color: #212529;
|
|
4198
4205
|
}
|
|
4199
4206
|
|
|
4207
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
4200
4208
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
4201
4209
|
background: inherit;
|
|
4202
4210
|
color: #fff;
|
|
4203
4211
|
}
|
|
4204
4212
|
|
|
4213
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
4205
4214
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
4206
4215
|
color: #fff;
|
|
4207
4216
|
}
|
|
4208
4217
|
|
|
4218
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
4209
4219
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
4210
4220
|
background: inherit;
|
|
4211
4221
|
color: #fff;
|
|
4212
4222
|
}
|
|
4213
4223
|
|
|
4224
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
4214
4225
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
4215
4226
|
animation: none;
|
|
4216
4227
|
}
|
|
4217
4228
|
|
|
4229
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
4230
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
4218
4231
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
4219
4232
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
4220
4233
|
color: #212529;
|
|
4221
4234
|
}
|
|
4222
4235
|
|
|
4236
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
4237
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
4223
4238
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
4224
4239
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
4225
4240
|
background: inherit;
|
|
@@ -4228,15 +4243,19 @@
|
|
|
4228
4243
|
background: #5a6268;
|
|
4229
4244
|
}
|
|
4230
4245
|
|
|
4246
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
4247
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
4231
4248
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
4232
4249
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
4233
4250
|
color: #fff;
|
|
4234
4251
|
}
|
|
4235
4252
|
|
|
4253
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
4236
4254
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
4237
4255
|
animation: none;
|
|
4238
4256
|
}
|
|
4239
4257
|
|
|
4258
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
4240
4259
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
4241
4260
|
color: #fff;
|
|
4242
4261
|
}
|