@syncfusion/ej2-navigations 19.2.59 → 19.3.44
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 -1
- package/CHANGELOG.md +32 -0
- package/README.md +15 -0
- package/breadcrumb.d.ts +4 -0
- package/breadcrumb.js +4 -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 +545 -170
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +567 -172
- 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 +13 -12
- package/src/accordion/accordion.d.ts +2 -8
- package/src/accordion/accordion.js +16 -85
- package/src/breadcrumb/breadcrumb-model.d.ts +147 -0
- package/src/breadcrumb/breadcrumb.d.ts +232 -0
- package/src/breadcrumb/breadcrumb.js +497 -0
- package/src/breadcrumb/index.d.ts +5 -0
- package/src/breadcrumb/index.js +4 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/sidebar/sidebar.js +2 -2
- package/src/tab/tab-model.d.ts +1 -1
- package/src/tab/tab.d.ts +1 -1
- package/src/tab/tab.js +50 -84
- package/src/toolbar/toolbar.js +1 -1
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +81 -0
- package/styles/accordion/_fabric-dark-definition.scss +1 -0
- package/styles/accordion/_fabric-definition.scss +1 -0
- package/styles/accordion/_highcontrast-definition.scss +1 -1
- package/styles/accordion/_layout.scss +6 -8
- package/styles/accordion/_tailwind-dark-definition.scss +1 -77
- package/styles/accordion/_tailwind-definition.scss +79 -79
- package/styles/accordion/_theme.scss +57 -17
- package/styles/accordion/bootstrap5-dark.css +428 -0
- package/styles/accordion/bootstrap5-dark.scss +4 -0
- package/styles/accordion/bootstrap5.css +428 -0
- package/styles/accordion/bootstrap5.scss +4 -0
- package/styles/accordion/highcontrast-light.css +0 -1
- package/styles/accordion/highcontrast.css +0 -1
- package/styles/accordion/icons/_bootstrap4.scss +1 -1
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +18 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -17
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/accordion/material-dark.css +2 -2
- package/styles/accordion/tailwind-dark.css +1 -1
- package/styles/bootstrap-dark.css +352 -60
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +349 -57
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +351 -60
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +9922 -0
- package/styles/bootstrap5-dark.scss +10 -0
- package/styles/bootstrap5.css +9922 -0
- package/styles/bootstrap5.scss +10 -0
- package/styles/breadcrumb/_all.scss +2 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-definition.scss +46 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +48 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +48 -0
- package/styles/breadcrumb/_layout.scss +291 -0
- package/styles/breadcrumb/_material-dark-definition.scss +37 -0
- package/styles/breadcrumb/_material-definition.scss +37 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +47 -0
- package/styles/breadcrumb/_tailwind-definition.scss +47 -0
- package/styles/breadcrumb/_theme.scss +134 -0
- package/styles/breadcrumb/bootstrap-dark.css +279 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap.css +279 -0
- package/styles/breadcrumb/bootstrap.scss +4 -0
- package/styles/breadcrumb/bootstrap4.css +279 -0
- package/styles/breadcrumb/bootstrap4.scss +4 -0
- package/styles/breadcrumb/bootstrap5-dark.css +297 -0
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap5.css +297 -0
- package/styles/breadcrumb/bootstrap5.scss +4 -0
- package/styles/breadcrumb/fabric-dark.css +277 -0
- package/styles/breadcrumb/fabric-dark.scss +4 -0
- package/styles/breadcrumb/fabric.css +277 -0
- package/styles/breadcrumb/fabric.scss +4 -0
- package/styles/breadcrumb/highcontrast-light.css +285 -0
- package/styles/breadcrumb/highcontrast-light.scss +4 -0
- package/styles/breadcrumb/highcontrast.css +285 -0
- package/styles/breadcrumb/highcontrast.scss +4 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +24 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +13 -0
- package/styles/breadcrumb/icons/_fabric.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +13 -0
- package/styles/breadcrumb/icons/_material-dark.scss +24 -0
- package/styles/breadcrumb/icons/_material.scss +24 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +13 -0
- package/styles/breadcrumb/icons/_tailwind.scss +13 -0
- package/styles/breadcrumb/material-dark.css +259 -0
- package/styles/breadcrumb/material-dark.scss +4 -0
- package/styles/breadcrumb/material.css +259 -0
- package/styles/breadcrumb/material.scss +4 -0
- package/styles/breadcrumb/tailwind-dark.css +280 -0
- package/styles/breadcrumb/tailwind-dark.scss +4 -0
- package/styles/breadcrumb/tailwind.css +280 -0
- package/styles/breadcrumb/tailwind.scss +4 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -53
- package/styles/context-menu/_tailwind-definition.scss +52 -51
- package/styles/context-menu/bootstrap5-dark.css +382 -0
- package/styles/context-menu/bootstrap5-dark.scss +4 -0
- package/styles/context-menu/bootstrap5.css +382 -0
- package/styles/context-menu/bootstrap5.scss +4 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +32 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +32 -32
- package/styles/context-menu/icons/_tailwind.scss +32 -32
- package/styles/fabric-dark.css +352 -78
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +346 -72
- package/styles/fabric.scss +1 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +78 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +1 -1
- package/styles/h-scroll/_highcontrast-definition.scss +1 -1
- package/styles/h-scroll/_layout.scss +1 -1
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -78
- package/styles/h-scroll/bootstrap5-dark.css +328 -0
- package/styles/h-scroll/bootstrap5-dark.scss +4 -0
- package/styles/h-scroll/bootstrap5.css +328 -0
- package/styles/h-scroll/bootstrap5.scss +4 -0
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -49
- package/styles/highcontrast-light.css +354 -73
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +356 -75
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +360 -105
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +324 -69
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +68 -0
- package/styles/menu/_layout.scss +12 -2
- package/styles/menu/_tailwind-dark-definition.scss +1 -66
- package/styles/menu/_tailwind-definition.scss +66 -64
- package/styles/menu/_theme.scss +1 -1
- package/styles/menu/bootstrap-dark.css +36 -36
- package/styles/menu/bootstrap.css +36 -36
- package/styles/menu/bootstrap4.css +34 -34
- package/styles/menu/bootstrap5-dark.css +1251 -0
- package/styles/menu/bootstrap5-dark.scss +8 -0
- package/styles/menu/bootstrap5.css +1251 -0
- package/styles/menu/bootstrap5.scss +8 -0
- package/styles/menu/fabric-dark.css +36 -36
- package/styles/menu/fabric.css +36 -36
- package/styles/menu/highcontrast-light.css +36 -36
- package/styles/menu/highcontrast.css +36 -36
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +133 -0
- package/styles/menu/icons/_tailwind-dark.scss +133 -133
- package/styles/menu/icons/_tailwind.scss +133 -133
- package/styles/menu/material-dark.css +36 -36
- package/styles/menu/material.css +36 -36
- package/styles/menu/tailwind-dark.css +36 -36
- package/styles/menu/tailwind.css +36 -36
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +5 -0
- package/styles/sidebar/_highcontrast-definition.scss +1 -1
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -4
- package/styles/sidebar/_tailwind-definition.scss +2 -1
- package/styles/sidebar/_theme.scss +3 -3
- package/styles/sidebar/bootstrap5-dark.css +155 -0
- package/styles/sidebar/bootstrap5-dark.scss +3 -0
- package/styles/sidebar/bootstrap5.css +155 -0
- package/styles/sidebar/bootstrap5.scss +3 -0
- package/styles/sidebar/highcontrast.css +1 -1
- package/styles/tab/_bootstrap-dark-definition.scss +2 -2
- package/styles/tab/_bootstrap-definition.scss +1 -1
- package/styles/tab/_bootstrap4-definition.scss +2 -2
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +401 -0
- package/styles/tab/_layout.scss +45 -51
- package/styles/tab/_material-dark-definition.scss +0 -1
- package/styles/tab/_tailwind-dark-definition.scss +1 -420
- package/styles/tab/_tailwind-definition.scss +420 -420
- package/styles/tab/_theme.scss +166 -53
- package/styles/tab/bootstrap-dark.css +15 -14
- package/styles/tab/bootstrap.css +12 -11
- package/styles/tab/bootstrap4.css +15 -14
- package/styles/tab/bootstrap5-dark.css +4442 -0
- package/styles/tab/bootstrap5-dark.scss +5 -0
- package/styles/tab/bootstrap5.css +4442 -0
- package/styles/tab/bootstrap5.scss +5 -0
- package/styles/tab/fabric-dark.css +16 -15
- package/styles/tab/fabric.css +14 -13
- package/styles/tab/highcontrast-light.css +14 -13
- package/styles/tab/highcontrast.css +14 -13
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +141 -0
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_tailwind-dark.scss +1 -140
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +36 -35
- package/styles/tab/material.css +11 -10
- package/styles/tab/tailwind-dark.css +27 -39
- package/styles/tab/tailwind.css +22 -34
- package/styles/tailwind-dark.css +379 -111
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +364 -96
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +143 -0
- package/styles/toolbar/_fabric-dark-definition.scss +1 -3
- package/styles/toolbar/_layout.scss +18 -9
- package/styles/toolbar/_material-dark-definition.scss +0 -1
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -143
- package/styles/toolbar/_tailwind-definition.scss +143 -143
- package/styles/toolbar/_theme.scss +98 -16
- package/styles/toolbar/bootstrap-dark.css +13 -10
- package/styles/toolbar/bootstrap.css +13 -10
- package/styles/toolbar/bootstrap4.css +14 -12
- package/styles/toolbar/bootstrap5-dark.css +1409 -0
- package/styles/toolbar/bootstrap5-dark.scss +8 -0
- package/styles/toolbar/bootstrap5.css +1409 -0
- package/styles/toolbar/bootstrap5.scss +8 -0
- package/styles/toolbar/fabric-dark.css +13 -26
- package/styles/toolbar/fabric.css +10 -23
- package/styles/toolbar/highcontrast-light.css +10 -23
- package/styles/toolbar/highcontrast.css +10 -23
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +17 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -16
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +11 -24
- package/styles/toolbar/material.css +10 -23
- package/styles/toolbar/tailwind-dark.css +20 -29
- package/styles/toolbar/tailwind.css +16 -25
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +109 -0
- package/styles/treeview/_layout.scss +64 -17
- package/styles/treeview/_tailwind-dark-definition.scss +1 -110
- package/styles/treeview/_tailwind-definition.scss +30 -28
- package/styles/treeview/_theme.scss +26 -6
- package/styles/treeview/bootstrap-dark.css +8 -0
- package/styles/treeview/bootstrap.css +8 -0
- package/styles/treeview/bootstrap4.css +8 -0
- package/styles/treeview/bootstrap5-dark.css +974 -0
- package/styles/treeview/bootstrap5-dark.scss +6 -0
- package/styles/treeview/bootstrap5.css +974 -0
- package/styles/treeview/bootstrap5.scss +6 -0
- package/styles/treeview/fabric-dark.css +8 -0
- package/styles/treeview/fabric.css +8 -0
- package/styles/treeview/highcontrast-light.css +8 -0
- package/styles/treeview/highcontrast.css +8 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +15 -7
- package/styles/treeview/material.css +8 -0
- package/styles/treeview/tailwind-dark.css +10 -2
- package/styles/treeview/tailwind.css +9 -1
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -49
- package/styles/v-scroll/bootstrap5-dark.css +247 -0
- package/styles/v-scroll/bootstrap5-dark.scss +4 -0
- package/styles/v-scroll/bootstrap5.css +247 -0
- package/styles/v-scroll/bootstrap5.scss +4 -0
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -26
- package/styles/v-scroll/material-dark.css +1 -1
- package/styles/v-scroll/tailwind-dark.css +4 -4
package/styles/tab/_theme.scss
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
border: 0;
|
|
10
10
|
border-radius: 0;
|
|
11
11
|
|
|
12
|
-
@if $tab-skin == 'tailwind'
|
|
12
|
+
@if $tab-skin == 'tailwind' {
|
|
13
13
|
font-weight: $tab-font-weight;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
16
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
17
17
|
|
|
18
18
|
&::before {
|
|
19
19
|
border-color: $tab-hdr-bdr-color;
|
|
@@ -69,12 +69,15 @@
|
|
|
69
69
|
border: 2px solid $tab-wrap-border-color;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
@if $tab-skin == 'bootstrap4' {
|
|
72
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
73
73
|
border: $tab-vscroll-nav-border;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
.e-tab-icon {
|
|
77
77
|
color: $tab-text-color;
|
|
78
|
+
@if $tbar-skin == 'bootstrap5' {
|
|
79
|
+
color: $tab-comb-icon-color;
|
|
80
|
+
}
|
|
78
81
|
}
|
|
79
82
|
|
|
80
83
|
@media screen and (max-width: 480px) {
|
|
@@ -92,7 +95,7 @@
|
|
|
92
95
|
&:hover {
|
|
93
96
|
background: $tab-item-hover-bg-color;
|
|
94
97
|
|
|
95
|
-
@if $tab-skin == 'bootstrap4' {
|
|
98
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
96
99
|
border: 1px solid $tab-hover-border-color;
|
|
97
100
|
border-radius: $tab-top-active-item-border-radius;
|
|
98
101
|
}
|
|
@@ -122,7 +125,7 @@
|
|
|
122
125
|
}
|
|
123
126
|
}
|
|
124
127
|
|
|
125
|
-
@if $tab-skin == 'bootstrap4' {
|
|
128
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
126
129
|
border: 0;
|
|
127
130
|
}
|
|
128
131
|
}
|
|
@@ -219,7 +222,7 @@
|
|
|
219
222
|
background: $tab-wrap-hover-bg-color;
|
|
220
223
|
}
|
|
221
224
|
|
|
222
|
-
@if $tab-skin == 'bootstrap4' {
|
|
225
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
223
226
|
border: $tab-vscroll-nav-border;
|
|
224
227
|
border-radius: 0;
|
|
225
228
|
}
|
|
@@ -244,7 +247,7 @@
|
|
|
244
247
|
color: $tab-wrap-active-color;
|
|
245
248
|
}
|
|
246
249
|
}
|
|
247
|
-
@if $tab-skin == 'bootstrap4' {
|
|
250
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
248
251
|
|
|
249
252
|
.e-tab-text,
|
|
250
253
|
.e-tab-icon {
|
|
@@ -265,7 +268,7 @@
|
|
|
265
268
|
|
|
266
269
|
.e-scroll-nav,
|
|
267
270
|
.e-hscroll:not(.e-scroll-device) .e-scroll-nav {
|
|
268
|
-
@if $tab-skin != 'tailwind'
|
|
271
|
+
@if $tab-skin != 'tailwind' {
|
|
269
272
|
background: inherit;
|
|
270
273
|
}
|
|
271
274
|
border: 0;
|
|
@@ -290,7 +293,7 @@
|
|
|
290
293
|
border: 2px solid $tab-wrap-hover-border-color;
|
|
291
294
|
}
|
|
292
295
|
|
|
293
|
-
@if $tab-skin == 'tailwind'
|
|
296
|
+
@if $tab-skin == 'tailwind' {
|
|
294
297
|
background: $tab-pop-icon-hover-bg-color;
|
|
295
298
|
}
|
|
296
299
|
}
|
|
@@ -336,7 +339,7 @@
|
|
|
336
339
|
}
|
|
337
340
|
}
|
|
338
341
|
|
|
339
|
-
@if $tab-skin == 'tailwind'
|
|
342
|
+
@if $tab-skin == 'tailwind' {
|
|
340
343
|
background: $tab-nav-focus-bg-color;
|
|
341
344
|
}
|
|
342
345
|
}
|
|
@@ -347,11 +350,11 @@
|
|
|
347
350
|
box-shadow: $tab-nav-active-box-shadow;
|
|
348
351
|
}
|
|
349
352
|
|
|
350
|
-
@if $tab-skin == 'bootstrap4' {
|
|
353
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
351
354
|
border: $tab-nav-pop-press-active-border;
|
|
352
355
|
}
|
|
353
356
|
|
|
354
|
-
@if $tab-skin == 'tailwind'
|
|
357
|
+
@if $tab-skin == 'tailwind' {
|
|
355
358
|
background: $tab-active-bg-color;
|
|
356
359
|
}
|
|
357
360
|
}
|
|
@@ -369,7 +372,7 @@
|
|
|
369
372
|
border-color: $tab-nav-disable-hover-border-color;
|
|
370
373
|
}
|
|
371
374
|
|
|
372
|
-
@if $tab-skin == 'tailwind'
|
|
375
|
+
@if $tab-skin == 'tailwind' {
|
|
373
376
|
background: $tab-pop-icon-hover-bg-color;
|
|
374
377
|
}
|
|
375
378
|
}
|
|
@@ -382,7 +385,7 @@
|
|
|
382
385
|
background: transparent;
|
|
383
386
|
border: 0;
|
|
384
387
|
|
|
385
|
-
@if $tab-skin == 'bootstrap4' {
|
|
388
|
+
@if $tab-skin == 'bootstrap4'or $tab-skin == 'bootstrap5' {
|
|
386
389
|
border: $tab-nav-pop-press-border;
|
|
387
390
|
}
|
|
388
391
|
|
|
@@ -398,7 +401,7 @@
|
|
|
398
401
|
border: 2px solid $tab-wrap-border-color;
|
|
399
402
|
}
|
|
400
403
|
|
|
401
|
-
@if $tab-skin == 'bootstrap4' {
|
|
404
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
402
405
|
border: $tab-active-text-item-border;
|
|
403
406
|
}
|
|
404
407
|
|
|
@@ -415,7 +418,7 @@
|
|
|
415
418
|
border: 2px solid $tab-wrap-hover-border-color;
|
|
416
419
|
}
|
|
417
420
|
|
|
418
|
-
@if $tab-skin == 'bootstrap4' {
|
|
421
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
419
422
|
border: $tab-active-text-item-border;
|
|
420
423
|
}
|
|
421
424
|
}
|
|
@@ -426,7 +429,7 @@
|
|
|
426
429
|
&:hover {
|
|
427
430
|
color: $tab-hover-nav-icon-color;
|
|
428
431
|
|
|
429
|
-
@if $tab-skin == 'bootstrap4' {
|
|
432
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
430
433
|
border: $tab-active-text-item-border;
|
|
431
434
|
}
|
|
432
435
|
}
|
|
@@ -449,7 +452,7 @@
|
|
|
449
452
|
background: $tab-nav-focus-bg-color;
|
|
450
453
|
}
|
|
451
454
|
|
|
452
|
-
@if $tab-skin == 'bootstrap4' {
|
|
455
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
453
456
|
border: $tab-active-text-item-border;
|
|
454
457
|
}
|
|
455
458
|
|
|
@@ -470,7 +473,7 @@
|
|
|
470
473
|
border: 2px solid $tab-nav-focus-hover-border-color;
|
|
471
474
|
}
|
|
472
475
|
|
|
473
|
-
@if $tab-skin == 'bootstrap4' {
|
|
476
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
474
477
|
border: $tab-active-text-item-border;
|
|
475
478
|
}
|
|
476
479
|
}
|
|
@@ -485,7 +488,7 @@
|
|
|
485
488
|
border: 1px solid $tab-nav-focus-active-border-color;
|
|
486
489
|
}
|
|
487
490
|
|
|
488
|
-
@if $tab-skin == 'bootstrap4' {
|
|
491
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
489
492
|
border: $tab-active-text-item-border;
|
|
490
493
|
}
|
|
491
494
|
|
|
@@ -497,7 +500,7 @@
|
|
|
497
500
|
}
|
|
498
501
|
}
|
|
499
502
|
|
|
500
|
-
@if $tab-skin == 'tailwind'
|
|
503
|
+
@if $tab-skin == 'tailwind' {
|
|
501
504
|
background: $tab-nav-focus-bg-color;
|
|
502
505
|
}
|
|
503
506
|
}
|
|
@@ -505,7 +508,7 @@
|
|
|
505
508
|
&:hover {
|
|
506
509
|
border: 0;
|
|
507
510
|
|
|
508
|
-
@if $tab-skin == 'bootstrap4' {
|
|
511
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
509
512
|
border: $tab-nav-pop-press-border;
|
|
510
513
|
}
|
|
511
514
|
|
|
@@ -513,7 +516,7 @@
|
|
|
513
516
|
background: transparent;
|
|
514
517
|
}
|
|
515
518
|
|
|
516
|
-
@if $tab-skin == 'tailwind'
|
|
519
|
+
@if $tab-skin == 'tailwind' {
|
|
517
520
|
background: $tab-pop-icon-hover-bg-color;
|
|
518
521
|
}
|
|
519
522
|
}
|
|
@@ -524,7 +527,7 @@
|
|
|
524
527
|
box-shadow: $tab-nav-active-box-shadow;
|
|
525
528
|
}
|
|
526
529
|
|
|
527
|
-
@if $tab-skin == 'tailwind'
|
|
530
|
+
@if $tab-skin == 'tailwind' {
|
|
528
531
|
background: $tab-active-bg-color;
|
|
529
532
|
}
|
|
530
533
|
}
|
|
@@ -534,7 +537,7 @@
|
|
|
534
537
|
border: 0;
|
|
535
538
|
box-shadow: none;
|
|
536
539
|
|
|
537
|
-
@if $tab-skin == 'bootstrap4' {
|
|
540
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
538
541
|
background: $tab-nav-focus-bg-color;
|
|
539
542
|
border: $tab-nav-pop-press-active-border;
|
|
540
543
|
border-radius: $tab-active-item-border-radius;
|
|
@@ -547,7 +550,7 @@
|
|
|
547
550
|
|
|
548
551
|
&:focus {
|
|
549
552
|
border: $tab-nav-pop-arrow-active-focus-border;
|
|
550
|
-
@if $tab-skin == 'bootstrap4' {
|
|
553
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
551
554
|
border: 0;
|
|
552
555
|
}
|
|
553
556
|
}
|
|
@@ -557,7 +560,7 @@
|
|
|
557
560
|
|
|
558
561
|
&.e-horizontal-bottom {
|
|
559
562
|
|
|
560
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
563
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
561
564
|
|
|
562
565
|
&[style*= 'overflow: hidden'] {
|
|
563
566
|
border: 0;
|
|
@@ -581,7 +584,7 @@
|
|
|
581
584
|
border-top: $tab-active-item-hide-border;
|
|
582
585
|
border-top-color: $tab-active-item-border-color;
|
|
583
586
|
|
|
584
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
587
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
585
588
|
border-bottom: 1px solid $tab-even-active-item-bottom-border-color;
|
|
586
589
|
}
|
|
587
590
|
}
|
|
@@ -701,7 +704,7 @@
|
|
|
701
704
|
&:hover {
|
|
702
705
|
background: inherit;
|
|
703
706
|
border: 0;
|
|
704
|
-
@if $tab-skin == 'bootstrap4' {
|
|
707
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
705
708
|
color: $gray-900;
|
|
706
709
|
}
|
|
707
710
|
}
|
|
@@ -742,7 +745,7 @@
|
|
|
742
745
|
}
|
|
743
746
|
}
|
|
744
747
|
|
|
745
|
-
&.e-focused .e-tab-header {
|
|
748
|
+
&.e-focused > .e-tab-header {
|
|
746
749
|
|
|
747
750
|
.e-toolbar-item {
|
|
748
751
|
|
|
@@ -753,6 +756,10 @@
|
|
|
753
756
|
border-color: $tab-focused-wrap-focus-border-color;
|
|
754
757
|
}
|
|
755
758
|
|
|
759
|
+
@if $tab-skin == 'bootstrap5' {
|
|
760
|
+
border: 1px solid $tab-focused-wrap-focus-border-color;
|
|
761
|
+
}
|
|
762
|
+
|
|
756
763
|
@if $tab-skin == 'highcontrast' {
|
|
757
764
|
border-style: solid;
|
|
758
765
|
}
|
|
@@ -876,7 +883,7 @@
|
|
|
876
883
|
.e-tab-header {
|
|
877
884
|
border-bottom: $tab-fill-hdr-border;
|
|
878
885
|
|
|
879
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
886
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
880
887
|
.e-toolbar-items.e-hscroll {
|
|
881
888
|
border: 0;
|
|
882
889
|
}
|
|
@@ -939,7 +946,12 @@
|
|
|
939
946
|
}
|
|
940
947
|
|
|
941
948
|
.e-close-icon:hover {
|
|
942
|
-
|
|
949
|
+
@if $tab-skin != 'tailwind' {
|
|
950
|
+
color: $tab-alt-active-hover-close-icon-color;
|
|
951
|
+
}
|
|
952
|
+
@if $tab-skin == 'bootstrap5' {
|
|
953
|
+
color: $tab-alt-active-close-icon-color;
|
|
954
|
+
}
|
|
943
955
|
}
|
|
944
956
|
}
|
|
945
957
|
}
|
|
@@ -958,7 +970,7 @@
|
|
|
958
970
|
|
|
959
971
|
.e-tab-wrap {
|
|
960
972
|
&:hover {
|
|
961
|
-
@if $tab-skin == 'bootstrap4' {
|
|
973
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
962
974
|
|
|
963
975
|
background: $tab-active-bg-color;
|
|
964
976
|
|
|
@@ -1069,7 +1081,7 @@
|
|
|
1069
1081
|
border-color: $tab-fill-focused-active-wrap-focus-border-color;
|
|
1070
1082
|
}
|
|
1071
1083
|
|
|
1072
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1084
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1073
1085
|
|
|
1074
1086
|
.e-tab-text,
|
|
1075
1087
|
.e-close-icon {
|
|
@@ -1084,7 +1096,7 @@
|
|
|
1084
1096
|
.e-tab-text,
|
|
1085
1097
|
.e-tab-icon {
|
|
1086
1098
|
color: $tab-alt-active-hover-text-color;
|
|
1087
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1099
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1088
1100
|
color: $tab-alt-active-style-hover-text-color;
|
|
1089
1101
|
}
|
|
1090
1102
|
}
|
|
@@ -1103,7 +1115,7 @@
|
|
|
1103
1115
|
background: $tab-alt-item-bg-color;
|
|
1104
1116
|
}
|
|
1105
1117
|
|
|
1106
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1118
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1107
1119
|
.e-toolbar-items.e-hscroll {
|
|
1108
1120
|
border: 0;
|
|
1109
1121
|
}
|
|
@@ -1112,7 +1124,7 @@
|
|
|
1112
1124
|
.e-indicator {
|
|
1113
1125
|
background: $tab-alt-border-color;
|
|
1114
1126
|
|
|
1115
|
-
@if $tab-skin == 'tailwind'
|
|
1127
|
+
@if $tab-skin == 'tailwind' {
|
|
1116
1128
|
bottom: 1px;
|
|
1117
1129
|
}
|
|
1118
1130
|
}
|
|
@@ -1120,6 +1132,10 @@
|
|
|
1120
1132
|
.e-toolbar-item {
|
|
1121
1133
|
border: $tab-alt-item-border;
|
|
1122
1134
|
|
|
1135
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1136
|
+
margin: 0;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1123
1139
|
.e-ripple-element {
|
|
1124
1140
|
background: $tab-alt-ripple-bg-color;
|
|
1125
1141
|
}
|
|
@@ -1168,6 +1184,12 @@
|
|
|
1168
1184
|
color: $tab-close-icon-color;
|
|
1169
1185
|
}
|
|
1170
1186
|
}
|
|
1187
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1188
|
+
.e-tab-text,
|
|
1189
|
+
.e-close-icon {
|
|
1190
|
+
color: $tab-alt-active-text-color;
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1171
1193
|
|
|
1172
1194
|
@if $tab-skin == 'highcontrast' {
|
|
1173
1195
|
background-color: $tab-alt-wrap-hover-bg-color;
|
|
@@ -1197,6 +1219,12 @@
|
|
|
1197
1219
|
|
|
1198
1220
|
.e-close-icon {
|
|
1199
1221
|
color: $tab-alt-close-icon-color;
|
|
1222
|
+
@if $tab-skin == 'tailwind' {
|
|
1223
|
+
color: $tab-alt-active-close-icon-color;
|
|
1224
|
+
}
|
|
1225
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1226
|
+
color: $tab-alt-active-text-color;
|
|
1227
|
+
}
|
|
1200
1228
|
}
|
|
1201
1229
|
|
|
1202
1230
|
.e-close-icon:hover {
|
|
@@ -1205,10 +1233,21 @@
|
|
|
1205
1233
|
|
|
1206
1234
|
&.e-active {
|
|
1207
1235
|
border: 0;
|
|
1236
|
+
margin: 0;
|
|
1208
1237
|
|
|
1209
1238
|
.e-tab-wrap {
|
|
1210
|
-
|
|
1211
|
-
|
|
1239
|
+
|
|
1240
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1241
|
+
background: $tab-active-item-border-color;
|
|
1242
|
+
border-color: $tab-alt-active-bg-color;
|
|
1243
|
+
border-radius: $tab-top-active-item-border-radius;
|
|
1244
|
+
border-style: solid;
|
|
1245
|
+
border-width: 2px 2px 0;
|
|
1246
|
+
}
|
|
1247
|
+
@else {
|
|
1248
|
+
background: $tab-alt-active-bg-color;
|
|
1249
|
+
border-radius: $tab-active-item-border-radius;
|
|
1250
|
+
}
|
|
1212
1251
|
|
|
1213
1252
|
@if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
|
|
1214
1253
|
border-color: $tab-alt-active-wrap-border-color;
|
|
@@ -1221,6 +1260,13 @@
|
|
|
1221
1260
|
color: $tab-alt-active-text-color;
|
|
1222
1261
|
}
|
|
1223
1262
|
|
|
1263
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1264
|
+
.e-tab-text,
|
|
1265
|
+
.e-close-icon {
|
|
1266
|
+
color: $tab-active-text-color;
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1224
1270
|
@if $tab-skin == 'fabric' {
|
|
1225
1271
|
background: $tab-alt-active-wrap-hover-bg-color;
|
|
1226
1272
|
}
|
|
@@ -1263,10 +1309,14 @@
|
|
|
1263
1309
|
&:focus {
|
|
1264
1310
|
background: $tab-alt-active-focus-bg-color;
|
|
1265
1311
|
|
|
1312
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1313
|
+
background-color: $tab-active-item-border-color;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1266
1316
|
.e-tab-text,
|
|
1267
1317
|
.e-tab-icon {
|
|
1268
1318
|
color: $tab-alt-active-text-color;
|
|
1269
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1319
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1270
1320
|
color: $tab-alt-active-hover-text-color;
|
|
1271
1321
|
}
|
|
1272
1322
|
}
|
|
@@ -1274,6 +1324,13 @@
|
|
|
1274
1324
|
|
|
1275
1325
|
&:focus:hover {
|
|
1276
1326
|
|
|
1327
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1328
|
+
.e-tab-text,
|
|
1329
|
+
.e-close-icon {
|
|
1330
|
+
color: $tab-active-text-color;
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1277
1334
|
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1278
1335
|
|
|
1279
1336
|
.e-tab-text,
|
|
@@ -1300,7 +1357,18 @@
|
|
|
1300
1357
|
}
|
|
1301
1358
|
|
|
1302
1359
|
.e-close-icon:hover {
|
|
1303
|
-
|
|
1360
|
+
@if $tab-skin != 'tailwind' {
|
|
1361
|
+
color: $tab-alt-active-hover-close-icon-color;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1366
|
+
.e-close-icon:hover,
|
|
1367
|
+
.e-tab-text:hover,
|
|
1368
|
+
.e-close-icon,
|
|
1369
|
+
.e-tab-text {
|
|
1370
|
+
color: $tab-active-text-color;
|
|
1371
|
+
}
|
|
1304
1372
|
}
|
|
1305
1373
|
|
|
1306
1374
|
&.e-itop .e-tab-wrap,
|
|
@@ -1333,7 +1401,7 @@
|
|
|
1333
1401
|
&:hover {
|
|
1334
1402
|
background: $tab-alt-hover-bg-color;
|
|
1335
1403
|
|
|
1336
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1404
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1337
1405
|
background: $tab-active-bg-color;
|
|
1338
1406
|
}
|
|
1339
1407
|
|
|
@@ -1463,11 +1531,11 @@
|
|
|
1463
1531
|
background: $tab-bg-hover-nav-bg-color;
|
|
1464
1532
|
color: $tab-bg-hover-nav-icon-color;
|
|
1465
1533
|
|
|
1466
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1534
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1467
1535
|
background: $tab-alt-nav-hover-bg-color;
|
|
1468
1536
|
}
|
|
1469
1537
|
|
|
1470
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1538
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1471
1539
|
background: $tab-pop-icon-hover-bg-color;
|
|
1472
1540
|
}
|
|
1473
1541
|
|
|
@@ -1541,8 +1609,54 @@
|
|
|
1541
1609
|
}
|
|
1542
1610
|
}
|
|
1543
1611
|
|
|
1612
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1613
|
+
&.e-horizontal-bottom {
|
|
1614
|
+
.e-toolbar-item.e-active {
|
|
1615
|
+
border: 0;
|
|
1616
|
+
margin: 0;
|
|
1617
|
+
|
|
1618
|
+
.e-tab-wrap {
|
|
1619
|
+
border-color: $tab-alt-active-bg-color;
|
|
1620
|
+
border-radius: 0 0 4px 4px;
|
|
1621
|
+
border-style: solid;
|
|
1622
|
+
border-width: 0 2px 2px;
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1544
1628
|
&.e-vertical {
|
|
1545
1629
|
|
|
1630
|
+
@if $tab-skin == 'bootstrap5' {
|
|
1631
|
+
&.e-vertical-left {
|
|
1632
|
+
.e-toolbar-item.e-active {
|
|
1633
|
+
border: 0;
|
|
1634
|
+
margin: 0;
|
|
1635
|
+
|
|
1636
|
+
.e-tab-wrap {
|
|
1637
|
+
border-color: $tab-alt-active-bg-color;
|
|
1638
|
+
border-radius: 4px 0 0 4px;
|
|
1639
|
+
border-style: solid;
|
|
1640
|
+
border-width: 2px 0 2px 2px;
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
&.e-vertical-right {
|
|
1646
|
+
.e-toolbar-item.e-active {
|
|
1647
|
+
border: 0;
|
|
1648
|
+
margin: 0;
|
|
1649
|
+
|
|
1650
|
+
.e-tab-wrap {
|
|
1651
|
+
border-color: $tab-alt-active-bg-color;
|
|
1652
|
+
border-radius: 0 4px 4px 0;
|
|
1653
|
+
border-style: solid;
|
|
1654
|
+
border-width: 2px 2px 2px 0;
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1546
1660
|
.e-scroll-nav {
|
|
1547
1661
|
|
|
1548
1662
|
.e-nav-arrow {
|
|
@@ -1643,7 +1757,7 @@
|
|
|
1643
1757
|
.e-indicator {
|
|
1644
1758
|
background: $tab-border-color;
|
|
1645
1759
|
|
|
1646
|
-
@if $tab-skin == 'tailwind'
|
|
1760
|
+
@if $tab-skin == 'tailwind' {
|
|
1647
1761
|
background: $tab-alt-border-color;
|
|
1648
1762
|
bottom: 1px;
|
|
1649
1763
|
}
|
|
@@ -1675,7 +1789,7 @@
|
|
|
1675
1789
|
border-style: solid;
|
|
1676
1790
|
}
|
|
1677
1791
|
|
|
1678
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1792
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1679
1793
|
background: $tab-active-bg-color;
|
|
1680
1794
|
}
|
|
1681
1795
|
|
|
@@ -1690,7 +1804,7 @@
|
|
|
1690
1804
|
|
|
1691
1805
|
.e-tab-wrap:focus {
|
|
1692
1806
|
|
|
1693
|
-
@if $tab-skin == 'material' or $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1807
|
+
@if $tab-skin == 'material' or $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1694
1808
|
background: $tab-key-alt-active-focus-bg-color;
|
|
1695
1809
|
}
|
|
1696
1810
|
|
|
@@ -1714,7 +1828,7 @@
|
|
|
1714
1828
|
background: $tab-alt-focused-active-wrap-hover-bg-color;
|
|
1715
1829
|
}
|
|
1716
1830
|
|
|
1717
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1831
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1718
1832
|
border: 1px solid $tab-hover-border-color;
|
|
1719
1833
|
border-radius: $tab-top-active-item-border-radius;
|
|
1720
1834
|
}
|
|
@@ -1723,7 +1837,7 @@
|
|
|
1723
1837
|
.e-tab-wrap:focus,
|
|
1724
1838
|
.e-tab-wrap:hover {
|
|
1725
1839
|
|
|
1726
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1840
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1727
1841
|
.e-tab-text,
|
|
1728
1842
|
.e-close-icon {
|
|
1729
1843
|
color: $tab-alt-focused-active-wrap-focus-or-hover-color;
|
|
@@ -1733,7 +1847,7 @@
|
|
|
1733
1847
|
|
|
1734
1848
|
.e-tab-wrap:focus:hover {
|
|
1735
1849
|
|
|
1736
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1850
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1737
1851
|
|
|
1738
1852
|
.e-tab-text,
|
|
1739
1853
|
.e-close-icon {
|
|
@@ -1796,10 +1910,9 @@
|
|
|
1796
1910
|
background: inherit;
|
|
1797
1911
|
color: $tab-content-font-color;
|
|
1798
1912
|
|
|
1799
|
-
@if $tab-skin == 'tailwind'
|
|
1913
|
+
@if $tab-skin == 'tailwind' {
|
|
1800
1914
|
font-size: $tab-nrml-font-size;
|
|
1801
1915
|
line-height: $tab-nrml-text-wrap-height;
|
|
1802
|
-
padding: 12px 0;
|
|
1803
1916
|
}
|
|
1804
1917
|
}
|
|
1805
1918
|
}
|
|
@@ -1820,7 +1933,7 @@
|
|
|
1820
1933
|
border: 2px $tab-wrap-border-color;
|
|
1821
1934
|
}
|
|
1822
1935
|
|
|
1823
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1936
|
+
@if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
|
|
1824
1937
|
border: $tab-vscroll-nav-border;
|
|
1825
1938
|
}
|
|
1826
1939
|
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
.e-tab.e-vertical-tab .e-tab-header .e-scroll-nav .e-nav-up-arrow::before {
|
|
53
|
-
content: '\
|
|
53
|
+
content: '\eb04';
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.e-tab.e-vertical-tab .e-tab-header .e-scroll-nav .e-nav-down-arrow::before {
|
|
57
|
-
content: '\
|
|
57
|
+
content: '\eb05';
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.e-tab.e-vertical-tab .e-tab-header .e-popup-up-icon::before {
|
|
@@ -3814,34 +3814,34 @@
|
|
|
3814
3814
|
border: 0;
|
|
3815
3815
|
}
|
|
3816
3816
|
|
|
3817
|
-
.e-tab.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
3817
|
+
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus {
|
|
3818
3818
|
background: #414141;
|
|
3819
3819
|
}
|
|
3820
3820
|
|
|
3821
|
-
.e-tab.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
3822
|
-
.e-tab.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
3821
|
+
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
3822
|
+
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text {
|
|
3823
3823
|
color: #f0f0f0;
|
|
3824
3824
|
}
|
|
3825
3825
|
|
|
3826
|
-
.e-tab.e-focused .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
3826
|
+
.e-tab.e-focused > .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
3827
3827
|
color: #f0f0f0;
|
|
3828
3828
|
}
|
|
3829
3829
|
|
|
3830
|
-
.e-tab.e-focused .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
3831
|
-
.e-tab.e-focused .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
3830
|
+
.e-tab.e-focused > .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
3831
|
+
.e-tab.e-focused > .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
3832
3832
|
color: #f0f0f0;
|
|
3833
3833
|
}
|
|
3834
3834
|
|
|
3835
|
-
.e-tab.e-focused .e-tab-header.e-vertical .e-scroll-nav:focus .e-nav-arrow {
|
|
3835
|
+
.e-tab.e-focused > .e-tab-header.e-vertical .e-scroll-nav:focus .e-nav-arrow {
|
|
3836
3836
|
border: 0;
|
|
3837
3837
|
}
|
|
3838
3838
|
|
|
3839
|
-
.e-tab.e-focused .e-tab-header.e-vertical .e-hor-nav .e-popup-up-icon,
|
|
3840
|
-
.e-tab.e-focused .e-tab-header.e-vertical .e-hor-nav .e-popup-down-icon {
|
|
3839
|
+
.e-tab.e-focused > .e-tab-header.e-vertical .e-hor-nav .e-popup-up-icon,
|
|
3840
|
+
.e-tab.e-focused > .e-tab-header.e-vertical .e-hor-nav .e-popup-down-icon {
|
|
3841
3841
|
border: 0;
|
|
3842
3842
|
}
|
|
3843
3843
|
|
|
3844
|
-
.e-tab.e-focused .e-tab-header.e-vertical .e-hor-nav:focus {
|
|
3844
|
+
.e-tab.e-focused > .e-tab-header.e-vertical .e-hor-nav:focus {
|
|
3845
3845
|
outline: 0;
|
|
3846
3846
|
}
|
|
3847
3847
|
|
|
@@ -4044,7 +4044,7 @@
|
|
|
4044
4044
|
|
|
4045
4045
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
|
|
4046
4046
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
|
|
4047
|
-
color: #
|
|
4047
|
+
color: #fff;
|
|
4048
4048
|
}
|
|
4049
4049
|
|
|
4050
4050
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
@@ -4063,6 +4063,7 @@
|
|
|
4063
4063
|
|
|
4064
4064
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
4065
4065
|
border: 0;
|
|
4066
|
+
margin: 0;
|
|
4066
4067
|
}
|
|
4067
4068
|
|
|
4068
4069
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
@@ -4076,7 +4077,7 @@
|
|
|
4076
4077
|
}
|
|
4077
4078
|
|
|
4078
4079
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-close-icon {
|
|
4079
|
-
color: #
|
|
4080
|
+
color: #fff;
|
|
4080
4081
|
}
|
|
4081
4082
|
|
|
4082
4083
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|