@syncfusion/ej2-navigations 21.2.9 → 22.1.34
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 +1 -0
- package/CHANGELOG.md +9 -0
- package/dist/ej2-navigations.min.js +2 -2
- 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 +288 -93
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +292 -94
- 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 +4 -2
- package/src/accordion/accordion.d.ts +4 -2
- package/src/accordion/accordion.js +1 -1
- package/src/breadcrumb/breadcrumb-model.d.ts +4 -2
- package/src/breadcrumb/breadcrumb.d.ts +4 -2
- package/src/carousel/carousel-model.d.ts +37 -8
- package/src/carousel/carousel.d.ts +69 -6
- package/src/carousel/carousel.js +287 -89
- package/src/common/menu-base-model.d.ts +2 -1
- package/src/common/menu-base.d.ts +2 -1
- package/src/common/menu-base.js +2 -2
- package/src/menu/menu-model.d.ts +3 -2
- package/src/menu/menu.d.ts +2 -1
- package/src/menu/menu.js +1 -1
- package/src/sidebar/sidebar.d.ts +12 -26
- package/src/tab/tab-model.d.ts +3 -2
- package/src/tab/tab.d.ts +3 -2
- package/src/toolbar/toolbar-model.d.ts +3 -1
- package/src/toolbar/toolbar.d.ts +3 -1
- package/src/treeview/treeview-model.d.ts +4 -1
- package/src/treeview/treeview.d.ts +17 -31
- package/src/treeview/treeview.js +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +3 -1
- package/styles/accordion/_bootstrap-definition.scss +3 -1
- package/styles/accordion/_bootstrap4-definition.scss +2 -0
- package/styles/accordion/_bootstrap5-definition.scss +3 -1
- package/styles/accordion/_fabric-dark-definition.scss +2 -0
- package/styles/accordion/_fabric-definition.scss +2 -0
- package/styles/accordion/_fluent-definition.scss +2 -0
- package/styles/accordion/_fusionnew-definition.scss +2 -0
- package/styles/accordion/_highcontrast-definition.scss +2 -0
- package/styles/accordion/_highcontrast-light-definition.scss +2 -0
- package/styles/accordion/_layout.scss +9 -0
- package/styles/accordion/_material-dark-definition.scss +2 -0
- package/styles/accordion/_material-definition.scss +2 -0
- package/styles/accordion/_material3-dark-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +182 -0
- package/styles/accordion/_tailwind-definition.scss +2 -0
- package/styles/accordion/_theme.scss +9 -0
- package/styles/accordion/bootstrap-dark.css +11 -1
- package/styles/accordion/bootstrap.css +11 -1
- package/styles/accordion/bootstrap4.css +10 -0
- package/styles/accordion/bootstrap5-dark.css +11 -1
- package/styles/accordion/bootstrap5.css +11 -1
- package/styles/accordion/fabric-dark.css +10 -0
- package/styles/accordion/fabric.css +10 -0
- package/styles/accordion/fluent-dark.css +10 -0
- package/styles/accordion/fluent.css +10 -0
- package/styles/accordion/highcontrast-light.css +10 -0
- package/styles/accordion/highcontrast.css +10 -0
- package/styles/accordion/icons/_material3-dark.scss +1 -0
- package/styles/accordion/material-dark.css +10 -0
- package/styles/accordion/material.css +10 -0
- package/styles/accordion/material3-dark.css +596 -0
- package/styles/accordion/material3-dark.scss +5 -0
- package/styles/accordion/material3.css +652 -0
- package/styles/accordion/material3.scss +5 -0
- package/styles/accordion/tailwind-dark.css +10 -0
- package/styles/accordion/tailwind.css +10 -0
- package/styles/appbar/_layout.scss +6 -1
- package/styles/appbar/_material3-dark-definition.scss +1 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_theme.scss +12 -2
- package/styles/appbar/bootstrap-dark.css +7 -3
- package/styles/appbar/bootstrap.css +7 -3
- package/styles/appbar/bootstrap4.css +7 -3
- package/styles/appbar/bootstrap5-dark.css +7 -3
- package/styles/appbar/bootstrap5.css +7 -3
- package/styles/appbar/fabric-dark.css +7 -3
- package/styles/appbar/fabric.css +7 -3
- package/styles/appbar/fluent-dark.css +7 -3
- package/styles/appbar/fluent.css +7 -3
- package/styles/appbar/highcontrast-light.css +7 -3
- package/styles/appbar/highcontrast.css +7 -3
- package/styles/appbar/material-dark.css +7 -3
- package/styles/appbar/material.css +7 -3
- package/styles/appbar/material3-dark.css +307 -0
- package/styles/appbar/material3-dark.scss +4 -0
- package/styles/appbar/material3.css +363 -0
- package/styles/appbar/material3.scss +4 -0
- package/styles/appbar/tailwind-dark.css +7 -3
- package/styles/appbar/tailwind.css +7 -3
- package/styles/bootstrap-dark.css +185 -126
- package/styles/bootstrap.css +185 -126
- package/styles/bootstrap4.css +183 -124
- package/styles/bootstrap5-dark.css +179 -120
- package/styles/bootstrap5.css +179 -120
- package/styles/breadcrumb/_material3-dark-definition.scss +1 -0
- package/styles/breadcrumb/_material3-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +13 -11
- package/styles/breadcrumb/bootstrap-dark.css +9 -9
- package/styles/breadcrumb/bootstrap.css +9 -9
- package/styles/breadcrumb/bootstrap4.css +9 -9
- package/styles/breadcrumb/bootstrap5-dark.css +8 -8
- package/styles/breadcrumb/bootstrap5.css +8 -8
- package/styles/breadcrumb/fabric-dark.css +7 -7
- package/styles/breadcrumb/fabric.css +7 -7
- package/styles/breadcrumb/fluent-dark.css +5 -5
- package/styles/breadcrumb/fluent.css +5 -5
- package/styles/breadcrumb/highcontrast-light.css +7 -7
- package/styles/breadcrumb/highcontrast.css +7 -7
- package/styles/breadcrumb/icons/_material3-dark.scss +1 -0
- package/styles/breadcrumb/icons/_material3.scss +0 -11
- package/styles/breadcrumb/material-dark.css +9 -9
- package/styles/breadcrumb/material.css +9 -9
- package/styles/breadcrumb/material3-dark.css +424 -0
- package/styles/breadcrumb/material3-dark.scss +5 -0
- package/styles/breadcrumb/material3.css +480 -0
- package/styles/breadcrumb/material3.scss +5 -0
- package/styles/breadcrumb/tailwind-dark.css +8 -8
- package/styles/breadcrumb/tailwind.css +8 -8
- package/styles/carousel/_bootstrap-dark-definition.scss +5 -0
- package/styles/carousel/_bootstrap-definition.scss +5 -0
- package/styles/carousel/_bootstrap4-definition.scss +5 -0
- package/styles/carousel/_bootstrap5-definition.scss +5 -0
- package/styles/carousel/_fabric-dark-definition.scss +5 -0
- package/styles/carousel/_fabric-definition.scss +5 -0
- package/styles/carousel/_fluent-definition.scss +5 -0
- package/styles/carousel/_fusionnew-definition.scss +5 -0
- package/styles/carousel/_highcontrast-definition.scss +5 -0
- package/styles/carousel/_highcontrast-light-definition.scss +5 -0
- package/styles/carousel/_layout.scss +96 -67
- package/styles/carousel/_material-dark-definition.scss +5 -0
- package/styles/carousel/_material-definition.scss +5 -0
- package/styles/carousel/_material3-dark-definition.scss +1 -0
- package/styles/carousel/_material3-definition.scss +28 -0
- package/styles/carousel/_tailwind-definition.scss +5 -0
- package/styles/carousel/_theme.scss +49 -20
- package/styles/carousel/bootstrap-dark.css +101 -62
- package/styles/carousel/bootstrap.css +101 -62
- package/styles/carousel/bootstrap4.css +101 -62
- package/styles/carousel/bootstrap5-dark.css +101 -62
- package/styles/carousel/bootstrap5.css +101 -62
- package/styles/carousel/fabric-dark.css +101 -62
- package/styles/carousel/fabric.css +101 -62
- package/styles/carousel/fluent-dark.css +101 -62
- package/styles/carousel/fluent.css +101 -62
- package/styles/carousel/highcontrast-light.css +101 -62
- package/styles/carousel/highcontrast.css +101 -62
- package/styles/carousel/icons/_material3-dark.scss +1 -0
- package/styles/carousel/material-dark.css +101 -62
- package/styles/carousel/material.css +101 -62
- package/styles/carousel/material3-dark.css +359 -0
- package/styles/carousel/material3-dark.scss +6 -0
- package/styles/carousel/material3.css +415 -0
- package/styles/carousel/material3.scss +6 -0
- package/styles/carousel/tailwind-dark.css +101 -62
- package/styles/carousel/tailwind.css +101 -62
- package/styles/context-menu/_layout.scss +2 -2
- package/styles/context-menu/_material3-dark-definition.scss +1 -0
- package/styles/context-menu/_material3-definition.scss +52 -0
- package/styles/context-menu/_theme.scss +6 -1
- package/styles/context-menu/icons/_material3-dark.scss +1 -0
- package/styles/context-menu/material3-dark.css +435 -0
- package/styles/context-menu/material3-dark.scss +8 -0
- package/styles/context-menu/material3.css +491 -0
- package/styles/context-menu/material3.scss +8 -0
- package/styles/fabric-dark.css +186 -127
- package/styles/fabric.css +185 -126
- package/styles/fluent-dark.css +179 -120
- package/styles/fluent.css +179 -120
- package/styles/h-scroll/_material3-dark-definition.scss +1 -0
- package/styles/h-scroll/_material3-definition.scss +83 -0
- package/styles/h-scroll/icons/_material3-dark.scss +1 -0
- package/styles/h-scroll/material3-dark.css +336 -0
- package/styles/h-scroll/material3-dark.scss +5 -0
- package/styles/h-scroll/material3.css +392 -0
- package/styles/h-scroll/material3.scss +5 -0
- package/styles/highcontrast-light.css +178 -119
- package/styles/highcontrast.css +182 -123
- package/styles/material-dark.css +189 -130
- package/styles/material.css +188 -129
- package/styles/material3-dark.css +10343 -0
- package/styles/material3-dark.scss +15 -0
- package/styles/material3.css +10399 -0
- package/styles/material3.scss +15 -0
- package/styles/menu/_layout.scss +7 -0
- package/styles/menu/_material3-dark-definition.scss +1 -0
- package/styles/menu/_material3-definition.scss +67 -0
- package/styles/menu/_theme.scss +5 -2
- package/styles/menu/bootstrap-dark.css +4 -0
- package/styles/menu/bootstrap.css +4 -0
- package/styles/menu/bootstrap4.css +4 -0
- package/styles/menu/bootstrap5-dark.css +4 -0
- package/styles/menu/bootstrap5.css +4 -0
- package/styles/menu/fabric-dark.css +4 -0
- package/styles/menu/fabric.css +4 -0
- package/styles/menu/fluent-dark.css +4 -0
- package/styles/menu/fluent.css +4 -0
- package/styles/menu/highcontrast-light.css +4 -0
- package/styles/menu/highcontrast.css +4 -0
- package/styles/menu/icons/_material3-dark.scss +1 -0
- package/styles/menu/material-dark.css +4 -0
- package/styles/menu/material.css +4 -0
- package/styles/menu/material3-dark.css +1162 -0
- package/styles/menu/material3-dark.scss +9 -0
- package/styles/menu/material3.css +1218 -0
- package/styles/menu/material3.scss +9 -0
- package/styles/menu/tailwind-dark.css +4 -0
- package/styles/menu/tailwind.css +4 -0
- package/styles/pager/_bootstrap-dark-definition.scss +9 -5
- package/styles/pager/_bootstrap-definition.scss +9 -5
- package/styles/pager/_bootstrap4-definition.scss +8 -4
- package/styles/pager/_bootstrap5-definition.scss +4 -0
- package/styles/pager/_fabric-dark-definition.scss +10 -6
- package/styles/pager/_fabric-definition.scss +10 -6
- package/styles/pager/_fluent-definition.scss +8 -4
- package/styles/pager/_fusionnew-definition.scss +4 -0
- package/styles/pager/_highcontrast-definition.scss +8 -4
- package/styles/pager/_highcontrast-light-definition.scss +4 -0
- package/styles/pager/_layout.scss +63 -48
- package/styles/pager/_material-dark-definition.scss +12 -8
- package/styles/pager/_material-definition.scss +11 -7
- package/styles/pager/_material3-dark-definition.scss +1 -0
- package/styles/pager/_material3-definition.scss +150 -0
- package/styles/pager/_tailwind-definition.scss +9 -5
- package/styles/pager/_theme.scss +12 -5
- package/styles/pager/bootstrap-dark.css +15 -43
- package/styles/pager/bootstrap.css +15 -43
- package/styles/pager/bootstrap4.css +14 -42
- package/styles/pager/bootstrap5-dark.css +10 -38
- package/styles/pager/bootstrap5.css +10 -38
- package/styles/pager/fabric-dark.css +17 -45
- package/styles/pager/fabric.css +16 -44
- package/styles/pager/fluent-dark.css +14 -42
- package/styles/pager/fluent.css +14 -42
- package/styles/pager/highcontrast-light.css +10 -38
- package/styles/pager/highcontrast.css +14 -42
- package/styles/pager/icons/_material3-dark.scss +1 -0
- package/styles/pager/icons/_material3.scss +4 -4
- package/styles/pager/material-dark.css +18 -46
- package/styles/pager/material.css +17 -45
- package/styles/pager/material3-dark.css +765 -0
- package/styles/pager/material3-dark.scss +5 -0
- package/styles/pager/material3.css +821 -0
- package/styles/pager/material3.scss +5 -0
- package/styles/pager/tailwind-dark.css +15 -43
- package/styles/pager/tailwind.css +15 -43
- package/styles/sidebar/_material3-dark-definition.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +7 -0
- package/styles/sidebar/material3-dark.css +204 -0
- package/styles/sidebar/material3-dark.scss +4 -0
- package/styles/sidebar/material3.css +260 -0
- package/styles/sidebar/material3.scss +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +4 -0
- package/styles/tab/_bootstrap-definition.scss +4 -0
- package/styles/tab/_bootstrap4-definition.scss +4 -0
- package/styles/tab/_bootstrap5-definition.scss +4 -0
- package/styles/tab/_fabric-dark-definition.scss +4 -0
- package/styles/tab/_fabric-definition.scss +4 -0
- package/styles/tab/_fluent-definition.scss +4 -0
- package/styles/tab/_fusionnew-definition.scss +4 -0
- package/styles/tab/_highcontrast-definition.scss +4 -0
- package/styles/tab/_highcontrast-light-definition.scss +4 -0
- package/styles/tab/_layout.scss +37 -13
- package/styles/tab/_material-dark-definition.scss +4 -0
- package/styles/tab/_material-definition.scss +4 -0
- package/styles/tab/_material3-dark-definition.scss +1 -0
- package/styles/tab/_material3-definition.scss +661 -0
- package/styles/tab/_tailwind-definition.scss +4 -0
- package/styles/tab/_theme.scss +44 -1
- package/styles/tab/bootstrap-dark.css +30 -7
- package/styles/tab/bootstrap.css +30 -7
- package/styles/tab/bootstrap4.css +30 -7
- package/styles/tab/bootstrap5-dark.css +30 -7
- package/styles/tab/bootstrap5.css +30 -7
- package/styles/tab/fabric-dark.css +30 -7
- package/styles/tab/fabric.css +30 -7
- package/styles/tab/fluent-dark.css +30 -7
- package/styles/tab/fluent.css +30 -7
- package/styles/tab/highcontrast-light.css +30 -7
- package/styles/tab/highcontrast.css +30 -7
- package/styles/tab/icons/_material3-dark.scss +1 -0
- package/styles/tab/material-dark.css +30 -7
- package/styles/tab/material.css +30 -7
- package/styles/tab/material3-dark.css +4109 -0
- package/styles/tab/material3-dark.scss +6 -0
- package/styles/tab/material3.css +4165 -0
- package/styles/tab/material3.scss +6 -0
- package/styles/tab/tailwind-dark.css +29 -6
- package/styles/tab/tailwind.css +29 -6
- package/styles/tailwind-dark.css +185 -126
- package/styles/tailwind.css +185 -126
- package/styles/toolbar/_fabric-dark-definition.scss +3 -3
- package/styles/toolbar/_fabric-definition.scss +3 -3
- package/styles/toolbar/_highcontrast-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +1 -1
- package/styles/toolbar/_layout.scss +8 -0
- package/styles/toolbar/_material-dark-definition.scss +3 -3
- package/styles/toolbar/_material-definition.scss +3 -3
- package/styles/toolbar/_material3-dark-definition.scss +1 -0
- package/styles/toolbar/_material3-definition.scss +220 -0
- package/styles/toolbar/_tailwind-definition.scss +3 -3
- package/styles/toolbar/_theme.scss +2 -1
- package/styles/toolbar/bootstrap-dark.css +8 -1
- package/styles/toolbar/bootstrap.css +8 -1
- package/styles/toolbar/bootstrap4.css +8 -1
- package/styles/toolbar/bootstrap5-dark.css +8 -1
- package/styles/toolbar/bootstrap5.css +8 -1
- package/styles/toolbar/fabric-dark.css +10 -3
- package/styles/toolbar/fabric.css +10 -3
- package/styles/toolbar/fluent-dark.css +8 -1
- package/styles/toolbar/fluent.css +8 -1
- package/styles/toolbar/highcontrast-light.css +9 -2
- package/styles/toolbar/highcontrast.css +9 -2
- package/styles/toolbar/icons/_material3-dark.scss +1 -0
- package/styles/toolbar/material-dark.css +10 -3
- package/styles/toolbar/material.css +10 -3
- package/styles/toolbar/material3-dark.css +1145 -0
- package/styles/toolbar/material3-dark.scss +9 -0
- package/styles/toolbar/material3.css +1201 -0
- package/styles/toolbar/material3.scss +9 -0
- package/styles/toolbar/tailwind-dark.css +11 -4
- package/styles/toolbar/tailwind.css +11 -4
- package/styles/treeview/_layout.scss +15 -2
- package/styles/treeview/_material3-dark-definition.scss +1 -0
- package/styles/treeview/_material3-definition.scss +121 -0
- package/styles/treeview/icons/_material3-dark.scss +1 -0
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/material3-dark.css +903 -0
- package/styles/treeview/material3-dark.scss +7 -0
- package/styles/treeview/material3.css +959 -0
- package/styles/treeview/material3.scss +7 -0
- package/styles/v-scroll/_material3-dark-definition.scss +1 -0
- package/styles/v-scroll/_material3-definition.scss +49 -0
- package/styles/v-scroll/icons/_material3-dark.scss +1 -0
- package/styles/v-scroll/material3-dark.css +258 -0
- package/styles/v-scroll/material3-dark.scss +5 -0
- package/styles/v-scroll/material3.css +314 -0
- package/styles/v-scroll/material3.scss +5 -0
|
@@ -299,6 +299,7 @@ $tab-big-safari-close-icon-top: 0 !default;
|
|
|
299
299
|
$tab-nrml-safari-close-icon-top: -1px !default;
|
|
300
300
|
$tab-close-icon-color: $icon-color !default;
|
|
301
301
|
$tab-mob-close-icon-color: rgba($icon-color, .87) !default;
|
|
302
|
+
$tab-active-close-icon-color: $icon-color !default;
|
|
302
303
|
$tab-close-icon-hover-color: $tab-hover-text-color !default;
|
|
303
304
|
$tab-close-icon-active-color: $primary !default;
|
|
304
305
|
$tab-alt-close-icon-color: $icon-color !default;
|
|
@@ -514,6 +515,7 @@ $tab-item-wrap-border: 0 !default;
|
|
|
514
515
|
$tab-clone-item-wrap-border: 0 !default;
|
|
515
516
|
$tab-item-wrap-hover-border: 0 !default;
|
|
516
517
|
$tab-item-wrap-hover-border-radius: 0 !default;
|
|
518
|
+
$tab-item-active-hover-bg: inherit !default;
|
|
517
519
|
$tab-item-active-wrap-border: 0 !default;
|
|
518
520
|
$tab-active-wrap-position: unset !default;
|
|
519
521
|
$tab-active-wrap-before-border: unset !default;
|
|
@@ -683,3 +685,5 @@ $tab-background-focused-active-wrap-icon-color: $tab-alt-active-hover-text-color
|
|
|
683
685
|
$tab-background-accent-indicator-bg: $tab-alt-border-color !default;
|
|
684
686
|
$tab-background-active-text-font-weight: $font-weight-medium !default;
|
|
685
687
|
$tab-background-text-color: $tab-alt-text-color !default;
|
|
688
|
+
|
|
689
|
+
$tab-fill-background-disable-text-color: $tab-disable-text-color !default;
|
package/styles/tab/_theme.scss
CHANGED
|
@@ -48,6 +48,10 @@
|
|
|
48
48
|
background: $tab-item-hover-bg;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
&.e-active:hover {
|
|
52
|
+
background: $tab-item-active-hover-bg;
|
|
53
|
+
}
|
|
54
|
+
|
|
51
55
|
.e-ripple-element {
|
|
52
56
|
background: $tab-ripple-bg-color;
|
|
53
57
|
}
|
|
@@ -112,8 +116,14 @@
|
|
|
112
116
|
content: $tab-active-wrap-before-content;
|
|
113
117
|
display: $tab-active-wrap-before-display;
|
|
114
118
|
position: $tab-active-wrap-before-position;
|
|
115
|
-
top: $tab-active-wrap-before-top;
|
|
116
119
|
width: $tab-active-wrap-before-width;
|
|
120
|
+
@if ($skin-name == 'Material3') {
|
|
121
|
+
border-radius: 3px 3px 0 0;
|
|
122
|
+
bottom: $tab-active-wrap-before-top;
|
|
123
|
+
}
|
|
124
|
+
@else {
|
|
125
|
+
top: $tab-active-wrap-before-top;
|
|
126
|
+
}
|
|
117
127
|
}
|
|
118
128
|
}
|
|
119
129
|
|
|
@@ -133,6 +143,10 @@
|
|
|
133
143
|
color: $tab-comb-text-color;
|
|
134
144
|
}
|
|
135
145
|
}
|
|
146
|
+
|
|
147
|
+
.e-close-icon {
|
|
148
|
+
color: $tab-active-close-icon-color;
|
|
149
|
+
}
|
|
136
150
|
}
|
|
137
151
|
|
|
138
152
|
.e-close-icon {
|
|
@@ -561,6 +575,16 @@
|
|
|
561
575
|
&.e-focused > .e-tab-header {
|
|
562
576
|
|
|
563
577
|
.e-toolbar-item {
|
|
578
|
+
@if ($skin-name == 'Material3') {
|
|
579
|
+
&.e-active .e-tab-wrap:focus {
|
|
580
|
+
background: $tab-active-focus-bg-color;
|
|
581
|
+
|
|
582
|
+
.e-tab-icon,
|
|
583
|
+
.e-tab-text {
|
|
584
|
+
color: $tab-active-text-color;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
564
588
|
|
|
565
589
|
.e-tab-wrap:focus {
|
|
566
590
|
background: $tab-focus-bg-color;
|
|
@@ -693,6 +717,14 @@
|
|
|
693
717
|
&.e-active {
|
|
694
718
|
border: 0;
|
|
695
719
|
|
|
720
|
+
&.e-disable.e-overlay {
|
|
721
|
+
|
|
722
|
+
.e-tab-text,
|
|
723
|
+
.e-tab-icon {
|
|
724
|
+
color: $tab-fill-background-disable-text-color;
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
696
728
|
.e-tab-wrap {
|
|
697
729
|
background: $tab-fill-active-bg-color;
|
|
698
730
|
border-radius: $tab-active-item-border-radius;
|
|
@@ -938,6 +970,14 @@
|
|
|
938
970
|
margin: 0;
|
|
939
971
|
background: $tab-background-active-bg;
|
|
940
972
|
|
|
973
|
+
&.e-disable.e-overlay {
|
|
974
|
+
|
|
975
|
+
.e-tab-text,
|
|
976
|
+
.e-tab-icon {
|
|
977
|
+
color: $tab-fill-background-disable-text-color;
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
|
|
941
981
|
.e-tab-wrap {
|
|
942
982
|
background: $tab-background-active-wrap-bg;
|
|
943
983
|
border-color: $tab-background-active-wrap-border-color;
|
|
@@ -1013,6 +1053,9 @@
|
|
|
1013
1053
|
|
|
1014
1054
|
.e-text-wrap::before {
|
|
1015
1055
|
border: $tab-nrml-bottom-wrap-before-top;
|
|
1056
|
+
@if ($skin-name == 'Material3') {
|
|
1057
|
+
border-radius: 3px 3px 0 0;
|
|
1058
|
+
}
|
|
1016
1059
|
}
|
|
1017
1060
|
|
|
1018
1061
|
.e-tab-text,
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
}
|
|
312
312
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
313
313
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
314
|
-
margin: 0;
|
|
314
|
+
margin: 0 0 0 8px;
|
|
315
315
|
}
|
|
316
316
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
317
317
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -1442,7 +1442,7 @@
|
|
|
1442
1442
|
}
|
|
1443
1443
|
@media screen and (max-width: 480px) {
|
|
1444
1444
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
1445
|
-
height:
|
|
1445
|
+
height: 62px;
|
|
1446
1446
|
}
|
|
1447
1447
|
}
|
|
1448
1448
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -1455,7 +1455,7 @@
|
|
|
1455
1455
|
}
|
|
1456
1456
|
@media screen and (max-width: 480px) {
|
|
1457
1457
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
1458
|
-
height:
|
|
1458
|
+
height: 62px;
|
|
1459
1459
|
}
|
|
1460
1460
|
}
|
|
1461
1461
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -1847,6 +1847,11 @@
|
|
|
1847
1847
|
height: 40px;
|
|
1848
1848
|
padding: 0;
|
|
1849
1849
|
}
|
|
1850
|
+
@media screen and (max-width: 480px) {
|
|
1851
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
1852
|
+
height: 50px;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1850
1855
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
1851
1856
|
top: unset;
|
|
1852
1857
|
}
|
|
@@ -2233,6 +2238,10 @@
|
|
|
2233
2238
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
2234
2239
|
height: auto;
|
|
2235
2240
|
}
|
|
2241
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
2242
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
2243
|
+
display: inherit;
|
|
2244
|
+
}
|
|
2236
2245
|
.e-tab.e-template .e-content > .e-item {
|
|
2237
2246
|
display: none;
|
|
2238
2247
|
}
|
|
@@ -2535,7 +2544,7 @@
|
|
|
2535
2544
|
}
|
|
2536
2545
|
@media screen and (max-width: 480px) {
|
|
2537
2546
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2538
|
-
padding: 0
|
|
2547
|
+
padding: 0 15px;
|
|
2539
2548
|
}
|
|
2540
2549
|
}
|
|
2541
2550
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -2775,7 +2784,7 @@
|
|
|
2775
2784
|
}
|
|
2776
2785
|
@media screen and (max-width: 480px) {
|
|
2777
2786
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
2778
|
-
height:
|
|
2787
|
+
height: 62px;
|
|
2779
2788
|
}
|
|
2780
2789
|
}
|
|
2781
2790
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -2788,7 +2797,7 @@
|
|
|
2788
2797
|
}
|
|
2789
2798
|
@media screen and (max-width: 480px) {
|
|
2790
2799
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
2791
|
-
height:
|
|
2800
|
+
height: 62px;
|
|
2792
2801
|
}
|
|
2793
2802
|
}
|
|
2794
2803
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -2998,6 +3007,9 @@
|
|
|
2998
3007
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
2999
3008
|
background: inherit;
|
|
3000
3009
|
}
|
|
3010
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
3011
|
+
background: inherit;
|
|
3012
|
+
}
|
|
3001
3013
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
3002
3014
|
background: rgba(49, 49, 49, 0);
|
|
3003
3015
|
}
|
|
@@ -3053,8 +3065,8 @@
|
|
|
3053
3065
|
content: unset;
|
|
3054
3066
|
display: unset;
|
|
3055
3067
|
position: unset;
|
|
3056
|
-
top: unset;
|
|
3057
3068
|
width: unset;
|
|
3069
|
+
top: unset;
|
|
3058
3070
|
}
|
|
3059
3071
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
3060
3072
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -3066,6 +3078,9 @@
|
|
|
3066
3078
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
3067
3079
|
color: #f0f0f0;
|
|
3068
3080
|
}
|
|
3081
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
3082
|
+
color: #f0f0f0;
|
|
3083
|
+
}
|
|
3069
3084
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
3070
3085
|
color: #f0f0f0;
|
|
3071
3086
|
}
|
|
@@ -3479,6 +3494,10 @@
|
|
|
3479
3494
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
3480
3495
|
border: 0;
|
|
3481
3496
|
}
|
|
3497
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3498
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3499
|
+
color: #393939;
|
|
3500
|
+
}
|
|
3482
3501
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3483
3502
|
background: #0070f0;
|
|
3484
3503
|
border-radius: 4px;
|
|
@@ -3639,6 +3658,10 @@
|
|
|
3639
3658
|
margin: 0;
|
|
3640
3659
|
background: inherit;
|
|
3641
3660
|
}
|
|
3661
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3662
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3663
|
+
color: #393939;
|
|
3664
|
+
}
|
|
3642
3665
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3643
3666
|
background: #0070f0;
|
|
3644
3667
|
border-color: unset;
|
package/styles/tab/bootstrap.css
CHANGED
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
}
|
|
317
317
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
318
318
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
319
|
-
margin: 0;
|
|
319
|
+
margin: 0 0 0 8px;
|
|
320
320
|
}
|
|
321
321
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
322
322
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -1447,7 +1447,7 @@
|
|
|
1447
1447
|
}
|
|
1448
1448
|
@media screen and (max-width: 480px) {
|
|
1449
1449
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
1450
|
-
height:
|
|
1450
|
+
height: 62px;
|
|
1451
1451
|
}
|
|
1452
1452
|
}
|
|
1453
1453
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -1460,7 +1460,7 @@
|
|
|
1460
1460
|
}
|
|
1461
1461
|
@media screen and (max-width: 480px) {
|
|
1462
1462
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
1463
|
-
height:
|
|
1463
|
+
height: 62px;
|
|
1464
1464
|
}
|
|
1465
1465
|
}
|
|
1466
1466
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -1852,6 +1852,11 @@
|
|
|
1852
1852
|
height: 40px;
|
|
1853
1853
|
padding: 0;
|
|
1854
1854
|
}
|
|
1855
|
+
@media screen and (max-width: 480px) {
|
|
1856
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
1857
|
+
height: 50px;
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1855
1860
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
1856
1861
|
top: unset;
|
|
1857
1862
|
}
|
|
@@ -2238,6 +2243,10 @@
|
|
|
2238
2243
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
2239
2244
|
height: auto;
|
|
2240
2245
|
}
|
|
2246
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
2247
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
2248
|
+
display: inherit;
|
|
2249
|
+
}
|
|
2241
2250
|
.e-tab.e-template .e-content > .e-item {
|
|
2242
2251
|
display: none;
|
|
2243
2252
|
}
|
|
@@ -2540,7 +2549,7 @@
|
|
|
2540
2549
|
}
|
|
2541
2550
|
@media screen and (max-width: 480px) {
|
|
2542
2551
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2543
|
-
padding: 0
|
|
2552
|
+
padding: 0 15px;
|
|
2544
2553
|
}
|
|
2545
2554
|
}
|
|
2546
2555
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -2780,7 +2789,7 @@
|
|
|
2780
2789
|
}
|
|
2781
2790
|
@media screen and (max-width: 480px) {
|
|
2782
2791
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
2783
|
-
height:
|
|
2792
|
+
height: 62px;
|
|
2784
2793
|
}
|
|
2785
2794
|
}
|
|
2786
2795
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -2793,7 +2802,7 @@
|
|
|
2793
2802
|
}
|
|
2794
2803
|
@media screen and (max-width: 480px) {
|
|
2795
2804
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
2796
|
-
height:
|
|
2805
|
+
height: 62px;
|
|
2797
2806
|
}
|
|
2798
2807
|
}
|
|
2799
2808
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -3003,6 +3012,9 @@
|
|
|
3003
3012
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
3004
3013
|
background: inherit;
|
|
3005
3014
|
}
|
|
3015
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
3016
|
+
background: inherit;
|
|
3017
|
+
}
|
|
3006
3018
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
3007
3019
|
background: rgba(85, 85, 85, 0);
|
|
3008
3020
|
}
|
|
@@ -3058,8 +3070,8 @@
|
|
|
3058
3070
|
content: unset;
|
|
3059
3071
|
display: unset;
|
|
3060
3072
|
position: unset;
|
|
3061
|
-
top: unset;
|
|
3062
3073
|
width: unset;
|
|
3074
|
+
top: unset;
|
|
3063
3075
|
}
|
|
3064
3076
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
3065
3077
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -3071,6 +3083,9 @@
|
|
|
3071
3083
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
3072
3084
|
color: #777;
|
|
3073
3085
|
}
|
|
3086
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
3087
|
+
color: #777;
|
|
3088
|
+
}
|
|
3074
3089
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
3075
3090
|
color: #777;
|
|
3076
3091
|
}
|
|
@@ -3484,6 +3499,10 @@
|
|
|
3484
3499
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
3485
3500
|
border: 0;
|
|
3486
3501
|
}
|
|
3502
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3503
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3504
|
+
color: #777;
|
|
3505
|
+
}
|
|
3487
3506
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3488
3507
|
background: #317ab9;
|
|
3489
3508
|
border-radius: 4px;
|
|
@@ -3644,6 +3663,10 @@
|
|
|
3644
3663
|
margin: 0;
|
|
3645
3664
|
background: inherit;
|
|
3646
3665
|
}
|
|
3666
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3667
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3668
|
+
color: #777;
|
|
3669
|
+
}
|
|
3647
3670
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3648
3671
|
background: #317ab9;
|
|
3649
3672
|
border-color: unset;
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
}
|
|
315
315
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
316
316
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
317
|
-
margin: 0;
|
|
317
|
+
margin: 0 0 0 8px;
|
|
318
318
|
}
|
|
319
319
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
320
320
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -1445,7 +1445,7 @@
|
|
|
1445
1445
|
}
|
|
1446
1446
|
@media screen and (max-width: 480px) {
|
|
1447
1447
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
1448
|
-
height:
|
|
1448
|
+
height: 62px;
|
|
1449
1449
|
}
|
|
1450
1450
|
}
|
|
1451
1451
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -1458,7 +1458,7 @@
|
|
|
1458
1458
|
}
|
|
1459
1459
|
@media screen and (max-width: 480px) {
|
|
1460
1460
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
1461
|
-
height:
|
|
1461
|
+
height: 62px;
|
|
1462
1462
|
}
|
|
1463
1463
|
}
|
|
1464
1464
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -1850,6 +1850,11 @@
|
|
|
1850
1850
|
height: 32px;
|
|
1851
1851
|
padding: 0;
|
|
1852
1852
|
}
|
|
1853
|
+
@media screen and (max-width: 480px) {
|
|
1854
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
1855
|
+
height: 42px;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1853
1858
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
1854
1859
|
top: unset;
|
|
1855
1860
|
}
|
|
@@ -2236,6 +2241,10 @@
|
|
|
2236
2241
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
2237
2242
|
height: auto;
|
|
2238
2243
|
}
|
|
2244
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
2245
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
2246
|
+
display: inherit;
|
|
2247
|
+
}
|
|
2239
2248
|
.e-tab.e-template .e-content > .e-item {
|
|
2240
2249
|
display: none;
|
|
2241
2250
|
}
|
|
@@ -2538,7 +2547,7 @@
|
|
|
2538
2547
|
}
|
|
2539
2548
|
@media screen and (max-width: 480px) {
|
|
2540
2549
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2541
|
-
padding: 0
|
|
2550
|
+
padding: 0 15px;
|
|
2542
2551
|
}
|
|
2543
2552
|
}
|
|
2544
2553
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -2778,7 +2787,7 @@
|
|
|
2778
2787
|
}
|
|
2779
2788
|
@media screen and (max-width: 480px) {
|
|
2780
2789
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
2781
|
-
height:
|
|
2790
|
+
height: 62px;
|
|
2782
2791
|
}
|
|
2783
2792
|
}
|
|
2784
2793
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -2791,7 +2800,7 @@
|
|
|
2791
2800
|
}
|
|
2792
2801
|
@media screen and (max-width: 480px) {
|
|
2793
2802
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
2794
|
-
height:
|
|
2803
|
+
height: 62px;
|
|
2795
2804
|
}
|
|
2796
2805
|
}
|
|
2797
2806
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -3001,6 +3010,9 @@
|
|
|
3001
3010
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
3002
3011
|
background: inherit;
|
|
3003
3012
|
}
|
|
3013
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
3014
|
+
background: inherit;
|
|
3015
|
+
}
|
|
3004
3016
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
3005
3017
|
background: rgba(222, 226, 230, 0);
|
|
3006
3018
|
}
|
|
@@ -3056,8 +3068,8 @@
|
|
|
3056
3068
|
content: unset;
|
|
3057
3069
|
display: unset;
|
|
3058
3070
|
position: unset;
|
|
3059
|
-
top: unset;
|
|
3060
3071
|
width: unset;
|
|
3072
|
+
top: unset;
|
|
3061
3073
|
}
|
|
3062
3074
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
3063
3075
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -3069,6 +3081,9 @@
|
|
|
3069
3081
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
3070
3082
|
color: #777;
|
|
3071
3083
|
}
|
|
3084
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
3085
|
+
color: rgba(0, 0, 0, 0.5);
|
|
3086
|
+
}
|
|
3072
3087
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
3073
3088
|
color: rgba(0, 0, 0, 0.5);
|
|
3074
3089
|
}
|
|
@@ -3482,6 +3497,10 @@
|
|
|
3482
3497
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
3483
3498
|
border: 0;
|
|
3484
3499
|
}
|
|
3500
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3501
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3502
|
+
color: #6c757d;
|
|
3503
|
+
}
|
|
3485
3504
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3486
3505
|
background: #007bff;
|
|
3487
3506
|
border-radius: 4px;
|
|
@@ -3642,6 +3661,10 @@
|
|
|
3642
3661
|
margin: 0;
|
|
3643
3662
|
background: inherit;
|
|
3644
3663
|
}
|
|
3664
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3665
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3666
|
+
color: #6c757d;
|
|
3667
|
+
}
|
|
3645
3668
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3646
3669
|
background: #007bff;
|
|
3647
3670
|
border-color: unset;
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
}
|
|
313
313
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
314
314
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
315
|
-
margin: 0;
|
|
315
|
+
margin: 0 0 0 8px;
|
|
316
316
|
}
|
|
317
317
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
318
318
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -1443,7 +1443,7 @@
|
|
|
1443
1443
|
}
|
|
1444
1444
|
@media screen and (max-width: 480px) {
|
|
1445
1445
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
1446
|
-
height:
|
|
1446
|
+
height: 62px;
|
|
1447
1447
|
}
|
|
1448
1448
|
}
|
|
1449
1449
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -1456,7 +1456,7 @@
|
|
|
1456
1456
|
}
|
|
1457
1457
|
@media screen and (max-width: 480px) {
|
|
1458
1458
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
1459
|
-
height:
|
|
1459
|
+
height: 62px;
|
|
1460
1460
|
}
|
|
1461
1461
|
}
|
|
1462
1462
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -1848,6 +1848,11 @@
|
|
|
1848
1848
|
height: 32px;
|
|
1849
1849
|
padding: 0;
|
|
1850
1850
|
}
|
|
1851
|
+
@media screen and (max-width: 480px) {
|
|
1852
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
1853
|
+
height: 42px;
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1851
1856
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
1852
1857
|
top: unset;
|
|
1853
1858
|
}
|
|
@@ -2234,6 +2239,10 @@
|
|
|
2234
2239
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
2235
2240
|
height: auto;
|
|
2236
2241
|
}
|
|
2242
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
2243
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
2244
|
+
display: inherit;
|
|
2245
|
+
}
|
|
2237
2246
|
.e-tab.e-template .e-content > .e-item {
|
|
2238
2247
|
display: none;
|
|
2239
2248
|
}
|
|
@@ -2536,7 +2545,7 @@
|
|
|
2536
2545
|
}
|
|
2537
2546
|
@media screen and (max-width: 480px) {
|
|
2538
2547
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
2539
|
-
padding: 0
|
|
2548
|
+
padding: 0 15px;
|
|
2540
2549
|
}
|
|
2541
2550
|
}
|
|
2542
2551
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -2776,7 +2785,7 @@
|
|
|
2776
2785
|
}
|
|
2777
2786
|
@media screen and (max-width: 480px) {
|
|
2778
2787
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
2779
|
-
height:
|
|
2788
|
+
height: 62px;
|
|
2780
2789
|
}
|
|
2781
2790
|
}
|
|
2782
2791
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -2789,7 +2798,7 @@
|
|
|
2789
2798
|
}
|
|
2790
2799
|
@media screen and (max-width: 480px) {
|
|
2791
2800
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
2792
|
-
height:
|
|
2801
|
+
height: 62px;
|
|
2793
2802
|
}
|
|
2794
2803
|
}
|
|
2795
2804
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -2999,6 +3008,9 @@
|
|
|
2999
3008
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
3000
3009
|
background: inherit;
|
|
3001
3010
|
}
|
|
3011
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
3012
|
+
background: inherit;
|
|
3013
|
+
}
|
|
3002
3014
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
3003
3015
|
background: rgba(0, 0, 0, 0.12);
|
|
3004
3016
|
}
|
|
@@ -3054,8 +3066,8 @@
|
|
|
3054
3066
|
content: unset;
|
|
3055
3067
|
display: unset;
|
|
3056
3068
|
position: unset;
|
|
3057
|
-
top: unset;
|
|
3058
3069
|
width: unset;
|
|
3070
|
+
top: unset;
|
|
3059
3071
|
}
|
|
3060
3072
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
3061
3073
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -3067,6 +3079,9 @@
|
|
|
3067
3079
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
3068
3080
|
color: #ced4da;
|
|
3069
3081
|
}
|
|
3082
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
3083
|
+
color: #adb5bd;
|
|
3084
|
+
}
|
|
3070
3085
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
3071
3086
|
color: #adb5bd;
|
|
3072
3087
|
}
|
|
@@ -3480,6 +3495,10 @@
|
|
|
3480
3495
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
3481
3496
|
border: 0;
|
|
3482
3497
|
}
|
|
3498
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3499
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3500
|
+
color: #6c757d;
|
|
3501
|
+
}
|
|
3483
3502
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3484
3503
|
background: #0d6efd;
|
|
3485
3504
|
border-radius: 4px;
|
|
@@ -3640,6 +3659,10 @@
|
|
|
3640
3659
|
margin: 0;
|
|
3641
3660
|
background: inherit;
|
|
3642
3661
|
}
|
|
3662
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
3663
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
3664
|
+
color: #6c757d;
|
|
3665
|
+
}
|
|
3643
3666
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
3644
3667
|
background: #212529;
|
|
3645
3668
|
border-color: #0d6efd;
|