@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
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
148
148
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
149
149
|
margin-left: 0;
|
|
150
|
-
padding:
|
|
150
|
+
padding: 0 6px 0 0;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
@@ -558,18 +558,6 @@
|
|
|
558
558
|
line-height: 22px;
|
|
559
559
|
}
|
|
560
560
|
|
|
561
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
562
|
-
padding: 0 1.5px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
566
|
-
padding: 0 1.5px;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
570
|
-
padding: 0 1.5px;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
561
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
574
562
|
margin: 7px 3px;
|
|
575
563
|
min-height: 16px;
|
|
@@ -663,6 +651,8 @@
|
|
|
663
651
|
}
|
|
664
652
|
|
|
665
653
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
654
|
+
-ms-flex-align: center;
|
|
655
|
+
align-items: center;
|
|
666
656
|
display: -ms-inline-flexbox;
|
|
667
657
|
display: inline-flex;
|
|
668
658
|
-ms-flex-pack: start;
|
|
@@ -673,7 +663,7 @@
|
|
|
673
663
|
|
|
674
664
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
675
665
|
margin: 0;
|
|
676
|
-
padding:
|
|
666
|
+
padding: 0 4px 0 0;
|
|
677
667
|
width: auto;
|
|
678
668
|
}
|
|
679
669
|
|
|
@@ -847,6 +837,7 @@
|
|
|
847
837
|
|
|
848
838
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
849
839
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
840
|
+
color: #d1d5db;
|
|
850
841
|
display: table-cell;
|
|
851
842
|
text-align: center;
|
|
852
843
|
vertical-align: middle;
|
|
@@ -1183,18 +1174,18 @@
|
|
|
1183
1174
|
.e-toolbar {
|
|
1184
1175
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1185
1176
|
background: #374151;
|
|
1186
|
-
border:
|
|
1177
|
+
border: 0 solid #4b5563;
|
|
1187
1178
|
box-shadow: none;
|
|
1188
1179
|
}
|
|
1189
1180
|
|
|
1190
1181
|
.e-toolbar.e-vertical .e-hor-nav {
|
|
1191
1182
|
border: solid #4b5563;
|
|
1192
|
-
border-width:
|
|
1183
|
+
border-width: 0 0 0 0;
|
|
1193
1184
|
}
|
|
1194
1185
|
|
|
1195
1186
|
.e-toolbar.e-vertical.e-rtl .e-hor-nav {
|
|
1196
1187
|
border: solid #4b5563;
|
|
1197
|
-
border-width: 0 0
|
|
1188
|
+
border-width: 0 0 0 0;
|
|
1198
1189
|
}
|
|
1199
1190
|
|
|
1200
1191
|
.e-toolbar.e-vertical .e-toolbar-items .e-toolbar-item.e-separator {
|
|
@@ -1220,6 +1211,10 @@
|
|
|
1220
1211
|
color: #fff;
|
|
1221
1212
|
}
|
|
1222
1213
|
|
|
1214
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1215
|
+
color: #fff;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1223
1218
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1224
1219
|
background: #4b5563;
|
|
1225
1220
|
border-color: #d1d5db;
|
|
@@ -1242,17 +1237,13 @@
|
|
|
1242
1237
|
color: #9ca3af;
|
|
1243
1238
|
}
|
|
1244
1239
|
|
|
1245
|
-
.e-toolbar
|
|
1246
|
-
color: #fff;
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
.e-toolbar .e-icons {
|
|
1240
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1250
1241
|
color: #d1d5db;
|
|
1251
1242
|
}
|
|
1252
1243
|
|
|
1253
1244
|
.e-toolbar .e-toolbar-pop {
|
|
1254
1245
|
background: #374151;
|
|
1255
|
-
border:
|
|
1246
|
+
border: 0 solid #4b5563;
|
|
1256
1247
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1257
1248
|
background: #374151;
|
|
1258
1249
|
}
|
|
@@ -1261,20 +1252,20 @@
|
|
|
1261
1252
|
background: transparent;
|
|
1262
1253
|
}
|
|
1263
1254
|
|
|
1264
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:
|
|
1255
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
1265
1256
|
background: #4b5563;
|
|
1266
1257
|
}
|
|
1267
1258
|
|
|
1268
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn
|
|
1269
|
-
|
|
1259
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:hover {
|
|
1260
|
+
background: #4b5563;
|
|
1270
1261
|
}
|
|
1271
1262
|
|
|
1272
1263
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
1273
1264
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1274
1265
|
background: #374151;
|
|
1275
1266
|
border: 0;
|
|
1276
|
-
border-left: 1px #4b5563 #374151;
|
|
1277
1267
|
box-shadow: none;
|
|
1268
|
+
border-left: 0 #4b5563 #374151;
|
|
1278
1269
|
}
|
|
1279
1270
|
|
|
1280
1271
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
@@ -1331,7 +1322,7 @@
|
|
|
1331
1322
|
background: #374151;
|
|
1332
1323
|
border: solid #4b5563;
|
|
1333
1324
|
border-left: 0;
|
|
1334
|
-
border-width: 0
|
|
1325
|
+
border-width: 0 0 0 0;
|
|
1335
1326
|
}
|
|
1336
1327
|
|
|
1337
1328
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
@@ -1368,8 +1359,8 @@
|
|
|
1368
1359
|
.e-toolbar .e-hor-nav:focus {
|
|
1369
1360
|
background: #4b5563;
|
|
1370
1361
|
border-left: 0;
|
|
1371
|
-
color: #9ca3af;
|
|
1372
1362
|
border-color: #d1d5db;
|
|
1363
|
+
color: #9ca3af;
|
|
1373
1364
|
}
|
|
1374
1365
|
|
|
1375
1366
|
.e-toolbar .e-tbar-btn:active {
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon,
|
|
148
148
|
.e-toolbar.e-bigger .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
149
149
|
margin-left: 0;
|
|
150
|
-
padding:
|
|
150
|
+
padding: 0 6px 0 0;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.e-bigger .e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
|
|
@@ -558,18 +558,6 @@
|
|
|
558
558
|
line-height: 22px;
|
|
559
559
|
}
|
|
560
560
|
|
|
561
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
562
|
-
padding: 0 1.5px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
566
|
-
padding: 0 1.5px;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
570
|
-
padding: 0 1.5px;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
561
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
574
562
|
margin: 7px 3px;
|
|
575
563
|
min-height: 16px;
|
|
@@ -663,6 +651,8 @@
|
|
|
663
651
|
}
|
|
664
652
|
|
|
665
653
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
654
|
+
-ms-flex-align: center;
|
|
655
|
+
align-items: center;
|
|
666
656
|
display: -ms-inline-flexbox;
|
|
667
657
|
display: inline-flex;
|
|
668
658
|
-ms-flex-pack: start;
|
|
@@ -673,7 +663,7 @@
|
|
|
673
663
|
|
|
674
664
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
675
665
|
margin: 0;
|
|
676
|
-
padding:
|
|
666
|
+
padding: 0 4px 0 0;
|
|
677
667
|
width: auto;
|
|
678
668
|
}
|
|
679
669
|
|
|
@@ -847,6 +837,7 @@
|
|
|
847
837
|
|
|
848
838
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
849
839
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
840
|
+
color: #6b7280;
|
|
850
841
|
display: table-cell;
|
|
851
842
|
text-align: center;
|
|
852
843
|
vertical-align: middle;
|
|
@@ -1220,6 +1211,10 @@
|
|
|
1220
1211
|
color: #111827;
|
|
1221
1212
|
}
|
|
1222
1213
|
|
|
1214
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1215
|
+
color: #111827;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1223
1218
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1224
1219
|
background: #e5e7eb;
|
|
1225
1220
|
border-color: #6b7280;
|
|
@@ -1242,11 +1237,7 @@
|
|
|
1242
1237
|
color: #6b7280;
|
|
1243
1238
|
}
|
|
1244
1239
|
|
|
1245
|
-
.e-toolbar
|
|
1246
|
-
color: #111827;
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
.e-toolbar .e-icons {
|
|
1240
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1250
1241
|
color: #6b7280;
|
|
1251
1242
|
}
|
|
1252
1243
|
|
|
@@ -1261,20 +1252,20 @@
|
|
|
1261
1252
|
background: transparent;
|
|
1262
1253
|
}
|
|
1263
1254
|
|
|
1264
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:
|
|
1255
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:focus {
|
|
1265
1256
|
background: #e5e7eb;
|
|
1266
1257
|
}
|
|
1267
1258
|
|
|
1268
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn
|
|
1269
|
-
|
|
1259
|
+
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn:hover {
|
|
1260
|
+
background: #e5e7eb;
|
|
1270
1261
|
}
|
|
1271
1262
|
|
|
1272
1263
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
1273
1264
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1274
1265
|
background: #f3f4f6;
|
|
1275
1266
|
border: 0;
|
|
1276
|
-
border-left: 0 #e5e7eb #f3f4f6;
|
|
1277
1267
|
box-shadow: none;
|
|
1268
|
+
border-left: 0 #e5e7eb #f3f4f6;
|
|
1278
1269
|
}
|
|
1279
1270
|
|
|
1280
1271
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
@@ -1342,7 +1333,7 @@
|
|
|
1342
1333
|
.e-toolbar .e-hor-nav {
|
|
1343
1334
|
background: #f3f4f6;
|
|
1344
1335
|
border: solid #e5e7eb;
|
|
1345
|
-
border-width: 0 0 0
|
|
1336
|
+
border-width: 0 0 0 1px;
|
|
1346
1337
|
}
|
|
1347
1338
|
|
|
1348
1339
|
.e-toolbar .e-hor-nav::after {
|
|
@@ -1368,8 +1359,8 @@
|
|
|
1368
1359
|
.e-toolbar .e-hor-nav:focus {
|
|
1369
1360
|
background: #e5e7eb;
|
|
1370
1361
|
border-left: 0;
|
|
1371
|
-
color: #6b7280;
|
|
1372
1362
|
border-color: #6b7280;
|
|
1363
|
+
color: #6b7280;
|
|
1373
1364
|
}
|
|
1374
1365
|
|
|
1375
1366
|
.e-toolbar .e-tbar-btn:active {
|
|
@@ -36,9 +36,9 @@ $treeview-drop-count-color: $primary-font !default;
|
|
|
36
36
|
$treeview-drag-item-bg: $gray-200 !default;
|
|
37
37
|
$treeview-drag-item-color: $gray-900 !default ;
|
|
38
38
|
$treeview-drag-icon-color: $gray-700 !default;
|
|
39
|
-
$treeview-
|
|
40
|
-
$treeview-
|
|
41
|
-
$treeview-
|
|
39
|
+
$treeview-item-active-check-bg: $primary-font !default;
|
|
40
|
+
$treeview-item-active-check-border-color: $primary-font !default;
|
|
41
|
+
$treeview-item-active-check-color: $primary !default;
|
|
42
42
|
//enddefault
|
|
43
43
|
//dimensions
|
|
44
44
|
$treeview-skin-name: 'bootstrap4';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
2
|
+
// sass-lint:disable-all
|
|
3
|
+
$treeview-font-size: $text-sm !default;
|
|
4
|
+
$treeview-icon-font-size: 20px !default;
|
|
5
|
+
$treeview-image-font-size: 20px !default;
|
|
6
|
+
$treeview-item-height: 36px !default;
|
|
7
|
+
$treeview-text-height: 34px !default;
|
|
8
|
+
$treeview-input-height: 30px !default;
|
|
9
|
+
$treeview-root-ul-padding: 0 0 0 12px !default;
|
|
10
|
+
$treeview-rtl-root-ul-padding: 0 12px 0 0 !default;
|
|
11
|
+
$treeview-child-ul-padding: 0 0 0 20px !default;
|
|
12
|
+
$treeview-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
13
|
+
$treeview-text-wrap-padding: 0 0 0 20px !default;
|
|
14
|
+
$treeview-rtl-text-wrap-padding: 0 20px 0 0 !default;
|
|
15
|
+
$treeview-icon-size: 20px !default;
|
|
16
|
+
$treeview-icon-margin: 0 0 0 -20px !default;
|
|
17
|
+
$treeview-rtl-icon-margin: 0 -20px 0 0 !default;
|
|
18
|
+
$treeview-icon-padding: 0px !default;
|
|
19
|
+
$treeview-text-padding: 0 8px !default;
|
|
20
|
+
$treeview-text-margin: 0 !default;
|
|
21
|
+
$treeview-image-size: 20px !default;
|
|
22
|
+
$treeview-image-margin: 0 0 0 8px !default;
|
|
23
|
+
$treeview-navigable-icon-image-anchor-margin-bigger: 0 12px 0 8px !default;
|
|
24
|
+
$treeview-navigable-icon-image-anchor-margin-reverse-bigger: 0 6px 0 10px !default;
|
|
25
|
+
$treeview-navigable-icon-image-anchor-margin: 0 8px 0 0 !default;
|
|
26
|
+
$treeview-navigable-icon-image-anchor-margin-reverse: 0 0 0 8px !default;
|
|
27
|
+
$treeview-navigable-rtl-margin-reverse: 0 12px 0 0 !default;
|
|
28
|
+
$treeview-rtl-image-margin: 0 8px 0 0 !default;
|
|
29
|
+
$treeview-image-text-padding: 0 8px !default;
|
|
30
|
+
$treeview-icon-image-margin: 0 0 0 8px !default;
|
|
31
|
+
$treeview-rtl-icon-image-margin: 0 8px 0 0 !default;
|
|
32
|
+
$treeview-check-margin: 0 0 0 8px !default;
|
|
33
|
+
$treeview-rtl-check-margin: 0 8px 0 0 !default;
|
|
34
|
+
$treeview-check-text-padding: 0 8px !default;
|
|
35
|
+
$treeview-check-image-margin: 0 0 0 8px !default;
|
|
36
|
+
$treeview-rtl-check-image-margin: 0 8px 0 0 !default;
|
|
37
|
+
$treeview-drop-count-border-size: 1px !default;
|
|
38
|
+
$treeview-drop-count-font-size: $text-xs !default;
|
|
39
|
+
|
|
40
|
+
$treeview-big-font-size: $text-base !default;
|
|
41
|
+
$treeview-big-icon-font-size: 24px !default;
|
|
42
|
+
$treeview-big-item-height: 42px !default;
|
|
43
|
+
$treeview-big-text-height: 40px !default;
|
|
44
|
+
$treeview-big-input-height: 40px !default;
|
|
45
|
+
$treeview-big-text-padding: 0 12px !default;
|
|
46
|
+
$treeview-big-input-padding: 0 9px !default;
|
|
47
|
+
$treeview-big-icon-padding: 0px !default;
|
|
48
|
+
$treeview-big-image-margin: 0 0 0 12px !default;
|
|
49
|
+
$treeview-big-rtl-image-margin: 0 12px 0 0 !default;
|
|
50
|
+
$treeview-big-icon-image-margin: 0 0 0 12px !default;
|
|
51
|
+
$treeview-big-rtl-icon-image-margin: 0 12px 0 0 !default;
|
|
52
|
+
$treeview-big-check-margin: 0 0 0 12px !default;
|
|
53
|
+
$treeview-big-rtl-check-margin: 0 12px 0 0 !default;
|
|
54
|
+
$treeview-big-check-image-margin: 0 0 0 12px !default;
|
|
55
|
+
$treeview-big-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
56
|
+
$treeview-big-root-ul-padding: 0 0 0 16px !default;
|
|
57
|
+
$treeview-big-rtl-root-ul-padding: 0 16px 0 0 !default;
|
|
58
|
+
$treeview-big-child-ul-padding: 0 0 0 20px !default;
|
|
59
|
+
$treeview-big-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
60
|
+
$treeview-big-image-text-padding: 0 12px !default;
|
|
61
|
+
$treeview-big-icon-margin: 0 0 0 -24px !default;
|
|
62
|
+
$treeview-big-rtl-icon-margin: 0 -24px 0 0 !default;
|
|
63
|
+
$treeview-big-text-wrap-padding: 0 0 0 24px !default;
|
|
64
|
+
$treeview-big-rtl-text-wrap-padding: 0 24px 0 0 !default;
|
|
65
|
+
$treeview-big-drag-icon-font-size: 24px !default;
|
|
66
|
+
$treeview-big-drag-item-text-padding-left: 24px !default;
|
|
67
|
+
$treeview-big-drag-before-icon-padding: 6px !default;
|
|
68
|
+
$treeview-big-check-text-padding: 0 12px !default;
|
|
69
|
+
|
|
70
|
+
$treeview-font-family: $font-family !default;
|
|
71
|
+
$treeview-drag-icon-font-size: 20px !default;
|
|
72
|
+
$treeview-drag-icon-padding: 12px !default;
|
|
73
|
+
|
|
74
|
+
//treeview ripple effect variables
|
|
75
|
+
$ripple-size: -7px !default;
|
|
76
|
+
$ripple-height: 32px !default;
|
|
77
|
+
$ripple-width: 32px !default;
|
|
78
|
+
|
|
79
|
+
//color variables
|
|
80
|
+
$treeview-icon-color: $icon-color !default;
|
|
81
|
+
$treeview-text-color: $content-text-color !default;
|
|
82
|
+
$treeview-item-border-color: $transparent !default;
|
|
83
|
+
$treeview-item-active-bg: $content-bg-color-selected !default;
|
|
84
|
+
$treeview-icon-active-color: $content-text-color-selected !default;
|
|
85
|
+
$treeview-text-active-color: $content-text-color-selected !default;
|
|
86
|
+
$treeview-item-active-border-color: $content-bg-color-selected !default;
|
|
87
|
+
$treeview-item-hover-bg: $content-bg-color-hover !default;
|
|
88
|
+
$treeview-icon-hover-color: $icon-color-hover !default;
|
|
89
|
+
$treeview-text-hover-color: $content-text-color-hover !default;
|
|
90
|
+
$treeview-item-hover-border-color: $content-bg-color-hover !default;
|
|
91
|
+
$treeview-item-active-hover-bg: darken($treeview-item-active-bg, 5%) !default;
|
|
92
|
+
$treeview-icon-active-hover-color: $content-text-color-selected !default;
|
|
93
|
+
$treeview-text-active-hover-color: $content-text-color-selected !default;
|
|
94
|
+
$treeview-item-active-hover-border-color: $content-bg-color-selected !default;
|
|
95
|
+
$treeview-text-disable-color: $content-text-color-disabled !default;
|
|
96
|
+
$treeview-icon-disable-color: $icon-color-disabled !default;
|
|
97
|
+
$treeview-drag-line-bg: $primary !default;
|
|
98
|
+
$treeview-drag-line-color: $primary !default;
|
|
99
|
+
$treeview-popup-bg-color: $content-bg-color-hover !default;
|
|
100
|
+
$treeview-popup-border-color: $content-bg-color-hover !default;
|
|
101
|
+
$treeview-drop-count-bg: $primary !default;
|
|
102
|
+
$treeview-drop-count-border: $primary-text-color !default;
|
|
103
|
+
$treeview-drop-count-color: $primary-text-color !default;
|
|
104
|
+
$treeview-drag-item-bg: $content-bg-color-alt3 !default;
|
|
105
|
+
$treeview-drag-item-color: $content-text-color-alt1 !default;
|
|
106
|
+
$treeview-drag-icon-color: $content-text-color-alt1 !default;
|
|
107
|
+
$treeview-item-active-check-bg: $primary-text-color !default;
|
|
108
|
+
$treeview-item-active-check-border-color: $primary-text-color !default;
|
|
109
|
+
$treeview-item-active-check-color: $primary !default;
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
@if $skin-name == 'tailwind' or $skin-name == '
|
|
67
|
+
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
|
|
68
68
|
.e-ul {
|
|
69
69
|
padding: $treeview-big-root-ul-padding;
|
|
70
70
|
}
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
|
|
201
201
|
.e-checkbox-wrapper {
|
|
202
202
|
margin: $treeview-big-check-margin;
|
|
203
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind'
|
|
203
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind') {
|
|
204
204
|
& + .e-list-text {
|
|
205
205
|
padding: $treeview-big-check-text-padding;
|
|
206
206
|
}
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
@if $skin-name == 'bootstrap4' {
|
|
219
219
|
font-size: $treeview-big-image-font-size;
|
|
220
220
|
}
|
|
221
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == '
|
|
221
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
222
222
|
& + .e-list-text {
|
|
223
223
|
padding: $treeview-big-image-text-padding;
|
|
224
224
|
}
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
|
|
247
247
|
&.e-drag-item {
|
|
248
248
|
|
|
249
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == '
|
|
249
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
250
250
|
|
|
251
251
|
.e-text-content {
|
|
252
252
|
padding-left: $treeview-big-drag-item-text-padding-left;
|
|
@@ -255,12 +255,19 @@
|
|
|
255
255
|
.e-icon-collapsible,
|
|
256
256
|
.e-icon-expandable {
|
|
257
257
|
font-size: $treeview-big-drag-icon-font-size;
|
|
258
|
-
|
|
258
|
+
@if ($skin-name != 'bootstrap5') {
|
|
259
|
+
margin: $treeview-big-drag-icon-margin;
|
|
260
|
+
}
|
|
259
261
|
}
|
|
260
262
|
|
|
261
263
|
.e-icon-collapsible::before,
|
|
262
264
|
.e-icon-expandable::before {
|
|
263
|
-
|
|
265
|
+
@if ($skin-name != 'bootstrap5') {
|
|
266
|
+
padding: $treeview-big-drag-before-icon-padding;
|
|
267
|
+
}
|
|
268
|
+
@if ($skin-name == 'bootstrap5') {
|
|
269
|
+
font-size: $treeview-big-drag-icon-font-size;
|
|
270
|
+
}
|
|
264
271
|
}
|
|
265
272
|
|
|
266
273
|
@if $skin-name == 'bootstrap4' {
|
|
@@ -273,7 +280,7 @@
|
|
|
273
280
|
|
|
274
281
|
&.e-rtl {
|
|
275
282
|
|
|
276
|
-
@if $skin-name == 'tailwind' or $skin-name == '
|
|
283
|
+
@if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
|
|
277
284
|
.e-ul {
|
|
278
285
|
padding: $treeview-big-rtl-root-ul-padding;
|
|
279
286
|
}
|
|
@@ -294,6 +301,17 @@
|
|
|
294
301
|
}
|
|
295
302
|
}
|
|
296
303
|
|
|
304
|
+
&.e-drag-item {
|
|
305
|
+
|
|
306
|
+
@if ($skin-name == 'bootstrap5') {
|
|
307
|
+
|
|
308
|
+
.e-text-content {
|
|
309
|
+
padding-left: 0;
|
|
310
|
+
padding-right: $treeview-big-drag-item-text-padding-left;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
297
315
|
.e-navigable {
|
|
298
316
|
|
|
299
317
|
.e-checkbox-wrapper + .e-list-url .e-anchor-wrap {
|
|
@@ -450,6 +468,14 @@
|
|
|
450
468
|
position: relative;
|
|
451
469
|
}
|
|
452
470
|
|
|
471
|
+
.e-icons .e-treeview-spinner {
|
|
472
|
+
position: absolute;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.e-icons-spinner {
|
|
476
|
+
position: relative;
|
|
477
|
+
}
|
|
478
|
+
|
|
453
479
|
.e-text-content {
|
|
454
480
|
@include user-select;
|
|
455
481
|
border: 1px solid;
|
|
@@ -511,9 +537,12 @@
|
|
|
511
537
|
|
|
512
538
|
.e-input-group {
|
|
513
539
|
height: $treeview-input-height;
|
|
514
|
-
@if($skin-name == 'tailwind'
|
|
540
|
+
@if($skin-name == 'tailwind') {
|
|
515
541
|
margin-top: 3px;
|
|
516
542
|
}
|
|
543
|
+
@else if($skin-name == 'bootstrap5') {
|
|
544
|
+
margin-bottom: 2px;
|
|
545
|
+
}
|
|
517
546
|
@else {
|
|
518
547
|
margin-bottom: 0;
|
|
519
548
|
}
|
|
@@ -567,7 +596,7 @@
|
|
|
567
596
|
}
|
|
568
597
|
|
|
569
598
|
.e-sibling {
|
|
570
|
-
@if ($skin-name == 'tailwind' or $skin-name == '
|
|
599
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
571
600
|
width: 100%;
|
|
572
601
|
}
|
|
573
602
|
@else {
|
|
@@ -581,9 +610,12 @@
|
|
|
581
610
|
}
|
|
582
611
|
|
|
583
612
|
.e-text-content + .e-sibling {
|
|
584
|
-
@if ($skin-name == 'tailwind'
|
|
613
|
+
@if ($skin-name == 'tailwind') {
|
|
585
614
|
margin-top: -2px;
|
|
586
615
|
}
|
|
616
|
+
@else if ($skin-name == 'bootstrap5') {
|
|
617
|
+
margin-top: 1px;
|
|
618
|
+
}
|
|
587
619
|
@else {
|
|
588
620
|
margin-top: -1px;
|
|
589
621
|
}
|
|
@@ -591,7 +623,7 @@
|
|
|
591
623
|
|
|
592
624
|
.e-sibling::before {
|
|
593
625
|
@include sibling-before(ltr);
|
|
594
|
-
@if ($skin-name == 'tailwind' or $skin-name == '
|
|
626
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
595
627
|
height: 2px;
|
|
596
628
|
top: -1.5px;
|
|
597
629
|
}
|
|
@@ -708,19 +740,34 @@
|
|
|
708
740
|
|
|
709
741
|
.e-text-content {
|
|
710
742
|
float: left;
|
|
743
|
+
|
|
744
|
+
.e-list-text {
|
|
745
|
+
@if ($skin-name == 'bootstrap5') {
|
|
746
|
+
padding: 0 $treeview-drag-icon-padding;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
711
749
|
}
|
|
712
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == '
|
|
750
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' ) {
|
|
713
751
|
.e-icon-collapsible,
|
|
714
752
|
.e-icon-expandable {
|
|
715
|
-
|
|
753
|
+
@if ($skin-name != 'bootstrap5') {
|
|
754
|
+
margin: $treeview-drag-icon-margin;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
@if ($skin-name == 'bootstrap5') {
|
|
758
|
+
box-sizing: content-box;
|
|
759
|
+
padding-left: $treeview-drag-icon-padding;
|
|
760
|
+
}
|
|
716
761
|
}
|
|
717
762
|
}
|
|
718
763
|
|
|
719
764
|
.e-icon-collapsible::before,
|
|
720
765
|
.e-icon-expandable::before {
|
|
721
766
|
font-size: $treeview-drag-icon-font-size;
|
|
722
|
-
|
|
723
|
-
|
|
767
|
+
@if ($skin-name != 'bootstrap5') {
|
|
768
|
+
padding: $treeview-drag-icon-padding;
|
|
769
|
+
}
|
|
770
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind') {
|
|
724
771
|
padding-right: $treeview-drag-icon-padding-right;
|
|
725
772
|
}
|
|
726
773
|
}
|
|
@@ -738,7 +785,7 @@
|
|
|
738
785
|
@else {
|
|
739
786
|
line-height: normal;
|
|
740
787
|
min-width: 12px;
|
|
741
|
-
@if ($skin-name == 'tailwind' or $skin-name == '
|
|
788
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
|
|
742
789
|
padding: 1px 3px 2px;
|
|
743
790
|
}
|
|
744
791
|
@else {
|
|
@@ -850,7 +897,7 @@
|
|
|
850
897
|
|
|
851
898
|
.e-icon-collapsible,
|
|
852
899
|
.e-icon-expandable {
|
|
853
|
-
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind'
|
|
900
|
+
@if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind') {
|
|
854
901
|
margin: $treeview-rtl-drag-margin;
|
|
855
902
|
}
|
|
856
903
|
}
|