@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/_layout.scss
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
height: auto;
|
|
13
13
|
min-height: auto;
|
|
14
14
|
|
|
15
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
15
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
16
16
|
height: $tab-big-height;
|
|
17
17
|
min-height: $tab-big-height;
|
|
18
18
|
}
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.e-indicator + .e-toolbar-item:nth-last-child(1).e-active {
|
|
38
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
38
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
39
39
|
margin: 1px 2px 0 0;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
.e-scroll-nav {
|
|
59
59
|
width: 50px;
|
|
60
|
-
@if $tab-skin == 'bootstrap4' {
|
|
60
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
61
61
|
border-radius: 4px;
|
|
62
62
|
width: 38px;
|
|
63
63
|
}
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
margin: $tab-mob-boot-item-margin;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
123
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
124
124
|
&.e-ileft:not(.e-icon) .e-tab-icon::before {
|
|
125
125
|
position: relative;
|
|
126
126
|
top: -.5px;
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
min-width: $tab-big-icon-container-size;
|
|
184
184
|
width: $tab-big-icon-container-size;
|
|
185
185
|
|
|
186
|
-
@if $tab-skin == 'bootstrap4' {
|
|
186
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
187
187
|
line-height: $tab-big-icon-container-size;
|
|
188
188
|
}
|
|
189
189
|
}
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
@if $tab-skin == 'bootstrap' {
|
|
436
436
|
line-height: 42px;
|
|
437
437
|
}
|
|
438
|
-
@if $tab-skin == 'bootstrap4' {
|
|
438
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
439
439
|
line-height: 38px;
|
|
440
440
|
}
|
|
441
441
|
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
line-height: 42px;
|
|
447
447
|
top: .5px;
|
|
448
448
|
}
|
|
449
|
-
@if $tab-skin == 'bootstrap4' {
|
|
449
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
450
450
|
line-height: 38px;
|
|
451
451
|
top: .5px;
|
|
452
452
|
}
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
@if $tab-skin == 'bootstrap' {
|
|
466
466
|
line-height: 42px;
|
|
467
467
|
}
|
|
468
|
-
@if $tab-skin == 'bootstrap4' {
|
|
468
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
469
469
|
line-height: 38px;
|
|
470
470
|
}
|
|
471
471
|
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
@if $tab-skin == 'bootstrap' {
|
|
476
476
|
line-height: 42px;
|
|
477
477
|
}
|
|
478
|
-
@if $tab-skin == 'bootstrap4' {
|
|
478
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
479
479
|
line-height: 38px;
|
|
480
480
|
}
|
|
481
481
|
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
line-height: 42px;
|
|
490
490
|
top: -2px;
|
|
491
491
|
}
|
|
492
|
-
@if $tab-skin == 'bootstrap4' {
|
|
492
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
493
493
|
line-height: 38px;
|
|
494
494
|
top: -2px;
|
|
495
495
|
}
|
|
@@ -532,7 +532,7 @@
|
|
|
532
532
|
padding-top: $tab-big-even-boot-active-item-padding-bottom;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
535
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
536
536
|
.e-close-icon::before {
|
|
537
537
|
top: .5px;
|
|
538
538
|
}
|
|
@@ -557,7 +557,7 @@
|
|
|
557
557
|
margin: $tab-mob-even-last-item-margin;
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
560
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4'or $tbar-skin == 'bootstrap5' {
|
|
561
561
|
|
|
562
562
|
.e-tab-text {
|
|
563
563
|
padding-top: .5px;
|
|
@@ -757,7 +757,7 @@
|
|
|
757
757
|
}
|
|
758
758
|
}
|
|
759
759
|
|
|
760
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
760
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
761
761
|
&.e-rtl .e-toolbar-item.e-active {
|
|
762
762
|
margin: 0 0 0 2px;
|
|
763
763
|
}
|
|
@@ -932,7 +932,7 @@
|
|
|
932
932
|
|
|
933
933
|
&.e-rtl {
|
|
934
934
|
|
|
935
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
935
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
936
936
|
|
|
937
937
|
.e-tab-header {
|
|
938
938
|
|
|
@@ -978,7 +978,7 @@
|
|
|
978
978
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
979
979
|
margin: $tab-big-alt-first-item-margin;
|
|
980
980
|
padding: 0;
|
|
981
|
-
@if $tab-skin == 'tailwind'
|
|
981
|
+
@if $tab-skin == 'tailwind' {
|
|
982
982
|
padding: 0 12px;
|
|
983
983
|
}
|
|
984
984
|
}
|
|
@@ -1215,7 +1215,7 @@
|
|
|
1215
1215
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
1216
1216
|
margin: $tab-big-alt-first-item-margin;
|
|
1217
1217
|
padding: 0;
|
|
1218
|
-
@if $tab-skin == 'tailwind'
|
|
1218
|
+
@if $tab-skin == 'tailwind' {
|
|
1219
1219
|
padding: 0 12px;
|
|
1220
1220
|
}
|
|
1221
1221
|
}
|
|
@@ -1223,7 +1223,9 @@
|
|
|
1223
1223
|
.e-toolbar-item {
|
|
1224
1224
|
|
|
1225
1225
|
&:not(.e-separator) {
|
|
1226
|
-
|
|
1226
|
+
@if $tab-skin != 'bootstrap5' {
|
|
1227
|
+
margin: $tab-alt-item-margin;
|
|
1228
|
+
}
|
|
1227
1229
|
}
|
|
1228
1230
|
|
|
1229
1231
|
.e-tab-wrap {
|
|
@@ -1415,14 +1417,6 @@
|
|
|
1415
1417
|
}
|
|
1416
1418
|
}
|
|
1417
1419
|
}
|
|
1418
|
-
|
|
1419
|
-
.e-content {
|
|
1420
|
-
.e-item {
|
|
1421
|
-
@if $tab-skin == 'tailwind' or $tab-skin == 'tailwind-dark' {
|
|
1422
|
-
padding: 16px 0;
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
}
|
|
1426
1420
|
}
|
|
1427
1421
|
|
|
1428
1422
|
.e-tab {
|
|
@@ -1453,7 +1447,7 @@
|
|
|
1453
1447
|
content: '';
|
|
1454
1448
|
position: absolute;
|
|
1455
1449
|
|
|
1456
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1450
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1457
1451
|
display: block;
|
|
1458
1452
|
}
|
|
1459
1453
|
}
|
|
@@ -1473,14 +1467,14 @@
|
|
|
1473
1467
|
min-height: $tab-nrml-height;
|
|
1474
1468
|
position: relative;
|
|
1475
1469
|
|
|
1476
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1470
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1477
1471
|
height: $tab-nrml-height;
|
|
1478
1472
|
min-height: $tab-nrml-height;
|
|
1479
1473
|
}
|
|
1480
1474
|
|
|
1481
1475
|
@media screen and (max-width: 480px) {
|
|
1482
1476
|
min-height: $tab-big-height;
|
|
1483
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1477
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1484
1478
|
height: $tab-big-height;
|
|
1485
1479
|
}
|
|
1486
1480
|
}
|
|
@@ -1510,7 +1504,7 @@
|
|
|
1510
1504
|
}
|
|
1511
1505
|
}
|
|
1512
1506
|
|
|
1513
|
-
@if $tab-skin == 'bootstrap'or $tab-skin == 'bootstrap4' {
|
|
1507
|
+
@if $tab-skin == 'bootstrap'or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1514
1508
|
|
|
1515
1509
|
&[style*= 'overflow: hidden'] .e-toolbar-item:not(.e-separator).e-active {
|
|
1516
1510
|
margin-bottom: 0;
|
|
@@ -1525,12 +1519,12 @@
|
|
|
1525
1519
|
|
|
1526
1520
|
.e-scroll-nav {
|
|
1527
1521
|
width: 40px;
|
|
1528
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1522
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1529
1523
|
border-radius: 4px;
|
|
1530
1524
|
width: 32px;
|
|
1531
1525
|
}
|
|
1532
1526
|
|
|
1533
|
-
@if $tab-skin == 'tailwind'
|
|
1527
|
+
@if $tab-skin == 'tailwind' {
|
|
1534
1528
|
width: 24px;
|
|
1535
1529
|
}
|
|
1536
1530
|
}
|
|
@@ -1568,7 +1562,7 @@
|
|
|
1568
1562
|
right: 0;
|
|
1569
1563
|
transition: left .125s cubic-bezier(.35, 0, .25, 1), right .25s cubic-bezier(.35, 0, .25, 1);
|
|
1570
1564
|
|
|
1571
|
-
@if $tab-skin == 'tailwind'
|
|
1565
|
+
@if $tab-skin == 'tailwind' {
|
|
1572
1566
|
border-radius: 2px;
|
|
1573
1567
|
bottom: -1px;
|
|
1574
1568
|
height: 2px;
|
|
@@ -1671,7 +1665,7 @@
|
|
|
1671
1665
|
.e-tab-wrap {
|
|
1672
1666
|
margin-bottom: $tab-nrml-active-item-wrap-margin-bottom;
|
|
1673
1667
|
|
|
1674
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1668
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1675
1669
|
&:hover {
|
|
1676
1670
|
border: 0;
|
|
1677
1671
|
}
|
|
@@ -1688,7 +1682,7 @@
|
|
|
1688
1682
|
}
|
|
1689
1683
|
}
|
|
1690
1684
|
|
|
1691
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
1685
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1692
1686
|
.e-tab-icon::before {
|
|
1693
1687
|
top: -1px;
|
|
1694
1688
|
}
|
|
@@ -1760,7 +1754,7 @@
|
|
|
1760
1754
|
min-width: $tab-nrml-icon-container-size;
|
|
1761
1755
|
width: $tab-nrml-icon-container-size;
|
|
1762
1756
|
|
|
1763
|
-
@if $tab-skin == 'bootstrap4' {
|
|
1757
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
1764
1758
|
line-height: $tab-nrml-icon-container-size;
|
|
1765
1759
|
}
|
|
1766
1760
|
|
|
@@ -1903,7 +1897,7 @@
|
|
|
1903
1897
|
|
|
1904
1898
|
&:not(.e-separator) {
|
|
1905
1899
|
margin: $tab-pop-item-margin;
|
|
1906
|
-
@if $tab-skin == 'tailwind'
|
|
1900
|
+
@if $tab-skin == 'tailwind' {
|
|
1907
1901
|
padding: 0;
|
|
1908
1902
|
}
|
|
1909
1903
|
}
|
|
@@ -2147,7 +2141,7 @@
|
|
|
2147
2141
|
@if $tab-skin == 'bootstrap' {
|
|
2148
2142
|
line-height: 34px;
|
|
2149
2143
|
}
|
|
2150
|
-
@if $tab-skin == 'bootstrap4' {
|
|
2144
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2151
2145
|
line-height: 32px;
|
|
2152
2146
|
}
|
|
2153
2147
|
|
|
@@ -2166,7 +2160,7 @@
|
|
|
2166
2160
|
line-height: 43px;
|
|
2167
2161
|
}
|
|
2168
2162
|
}
|
|
2169
|
-
@if $tab-skin == 'bootstrap4' {
|
|
2163
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2170
2164
|
line-height: 32px;
|
|
2171
2165
|
top: 0;
|
|
2172
2166
|
|
|
@@ -2206,7 +2200,7 @@
|
|
|
2206
2200
|
|
|
2207
2201
|
.e-popup-up-icon,
|
|
2208
2202
|
.e-popup-down-icon {
|
|
2209
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
2203
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2210
2204
|
line-height: 32px;
|
|
2211
2205
|
}
|
|
2212
2206
|
|
|
@@ -2217,7 +2211,7 @@
|
|
|
2217
2211
|
top: -1px;
|
|
2218
2212
|
}
|
|
2219
2213
|
|
|
2220
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
2214
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2221
2215
|
line-height: 32px;
|
|
2222
2216
|
top: 0;
|
|
2223
2217
|
|
|
@@ -2232,7 +2226,7 @@
|
|
|
2232
2226
|
}
|
|
2233
2227
|
|
|
2234
2228
|
&:hover {
|
|
2235
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
2229
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2236
2230
|
line-height: 32px;
|
|
2237
2231
|
top: -.5px;
|
|
2238
2232
|
}
|
|
@@ -2247,7 +2241,7 @@
|
|
|
2247
2241
|
bottom: auto;
|
|
2248
2242
|
}
|
|
2249
2243
|
|
|
2250
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
2244
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2251
2245
|
.e-hscroll-bar {
|
|
2252
2246
|
margin-top: -1px;
|
|
2253
2247
|
}
|
|
@@ -2740,7 +2734,7 @@
|
|
|
2740
2734
|
}
|
|
2741
2735
|
}
|
|
2742
2736
|
|
|
2743
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
2737
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
2744
2738
|
&.e-rtl .e-tab-header .e-toolbar-item.e-active {
|
|
2745
2739
|
margin: 0 0 0 2px;
|
|
2746
2740
|
}
|
|
@@ -3020,7 +3014,7 @@
|
|
|
3020
3014
|
min-height: $tab-mob-fill-height;
|
|
3021
3015
|
}
|
|
3022
3016
|
|
|
3023
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
3017
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3024
3018
|
&::before {
|
|
3025
3019
|
display: none;
|
|
3026
3020
|
}
|
|
@@ -3042,7 +3036,7 @@
|
|
|
3042
3036
|
&:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
3043
3037
|
margin: $tab-nrml-alt-first-item-margin;
|
|
3044
3038
|
padding: 0;
|
|
3045
|
-
@if $tab-skin == 'tailwind'
|
|
3039
|
+
@if $tab-skin == 'tailwind' {
|
|
3046
3040
|
padding: 0 8px;
|
|
3047
3041
|
}
|
|
3048
3042
|
}
|
|
@@ -3300,7 +3294,7 @@
|
|
|
3300
3294
|
|
|
3301
3295
|
.e-tab-header {
|
|
3302
3296
|
|
|
3303
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
3297
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3304
3298
|
&::before {
|
|
3305
3299
|
display: none;
|
|
3306
3300
|
}
|
|
@@ -3310,7 +3304,7 @@
|
|
|
3310
3304
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
|
|
3311
3305
|
margin: $tab-nrml-alt-first-item-margin;
|
|
3312
3306
|
padding: 0;
|
|
3313
|
-
@if $tab-skin == 'tailwind'
|
|
3307
|
+
@if $tab-skin == 'tailwind' {
|
|
3314
3308
|
padding: 0 8px;
|
|
3315
3309
|
}
|
|
3316
3310
|
}
|
|
@@ -3437,7 +3431,7 @@
|
|
|
3437
3431
|
margin: $tab-nrml-rtl-item-margin;
|
|
3438
3432
|
}
|
|
3439
3433
|
|
|
3440
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
3434
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3441
3435
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
|
|
3442
3436
|
margin: $tab-nrml-rtl-item-margin;
|
|
3443
3437
|
}
|
|
@@ -3470,7 +3464,7 @@
|
|
|
3470
3464
|
}
|
|
3471
3465
|
}
|
|
3472
3466
|
|
|
3473
|
-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' {
|
|
3467
|
+
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3474
3468
|
&.e-horizontal-bottom {
|
|
3475
3469
|
|
|
3476
3470
|
.e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
|
|
@@ -3653,7 +3647,7 @@
|
|
|
3653
3647
|
min-width: $tab-nrml-icon-container-size;
|
|
3654
3648
|
width: $tab-nrml-icon-container-size;
|
|
3655
3649
|
|
|
3656
|
-
@if $tab-skin == 'bootstrap4' {
|
|
3650
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3657
3651
|
line-height: $tab-nrml-icon-container-size;
|
|
3658
3652
|
}
|
|
3659
3653
|
|
|
@@ -3848,7 +3842,7 @@
|
|
|
3848
3842
|
min-width: $tab-big-icon-container-size;
|
|
3849
3843
|
width: $tab-big-icon-container-size;
|
|
3850
3844
|
|
|
3851
|
-
@if $tab-skin == 'bootstrap4' {
|
|
3845
|
+
@if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
|
|
3852
3846
|
line-height: $tab-big-icon-container-size;
|
|
3853
3847
|
}
|
|
3854
3848
|
}
|
|
@@ -48,7 +48,6 @@ $tab-focus-nrml-fill-height: 34px !default;
|
|
|
48
48
|
$tab-disable-cnt-opacity: .38 !default;
|
|
49
49
|
$tab-big-tb-icon-height: 72px !default;
|
|
50
50
|
$tab-nrml-tb-icon-height: 62px !default;
|
|
51
|
-
$tab-content-font-color: $base-font !default;
|
|
52
51
|
$tab-border-width: 2px !default;
|
|
53
52
|
$tab-border-style: $tab-border-width Solid !default;
|
|
54
53
|
$tab-focus-outline: 0 !default;
|