@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
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import '../h-scroll/bootstrap5-definition.scss';
|
|
3
|
+
@import '../v-scroll/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-popups/styles/popup/bootstrap5-definition.scss';
|
|
6
|
+
@import 'bootstrap5-definition.scss';
|
|
7
|
+
@import 'icons/bootstrap5.scss';
|
|
8
|
+
@import 'all.scss';
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
height: inherit;
|
|
241
241
|
margin: 0;
|
|
242
242
|
min-height: 50px;
|
|
243
|
-
min-width:
|
|
243
|
+
min-width: 50px;
|
|
244
244
|
padding: 0;
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -343,7 +343,7 @@
|
|
|
343
343
|
height: inherit;
|
|
344
344
|
margin: 0;
|
|
345
345
|
min-height: 50px;
|
|
346
|
-
min-width:
|
|
346
|
+
min-width: 50px;
|
|
347
347
|
padding: 0;
|
|
348
348
|
}
|
|
349
349
|
|
|
@@ -549,18 +549,6 @@
|
|
|
549
549
|
line-height: 25px;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
553
|
-
padding: 0 1.5px;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
557
|
-
padding: 0 1.5px;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
561
|
-
padding: 0 1.5px;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
552
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
565
553
|
margin: 7.5px 3px;
|
|
566
554
|
min-height: 25px;
|
|
@@ -652,6 +640,8 @@
|
|
|
652
640
|
}
|
|
653
641
|
|
|
654
642
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
643
|
+
-ms-flex-align: center;
|
|
644
|
+
align-items: center;
|
|
655
645
|
display: -ms-inline-flexbox;
|
|
656
646
|
display: inline-flex;
|
|
657
647
|
-ms-flex-pack: start;
|
|
@@ -835,6 +825,7 @@
|
|
|
835
825
|
|
|
836
826
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
837
827
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
828
|
+
color: #dadada;
|
|
838
829
|
display: table-cell;
|
|
839
830
|
text-align: center;
|
|
840
831
|
vertical-align: middle;
|
|
@@ -1214,6 +1205,10 @@
|
|
|
1214
1205
|
color: #dadada;
|
|
1215
1206
|
}
|
|
1216
1207
|
|
|
1208
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1209
|
+
color: #dadada;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1217
1212
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1218
1213
|
background: #414040;
|
|
1219
1214
|
border-color: #414040;
|
|
@@ -1236,11 +1231,7 @@
|
|
|
1236
1231
|
color: #000;
|
|
1237
1232
|
}
|
|
1238
1233
|
|
|
1239
|
-
.e-toolbar
|
|
1240
|
-
color: #dadada;
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
.e-toolbar .e-icons {
|
|
1234
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1244
1235
|
color: #dadada;
|
|
1245
1236
|
}
|
|
1246
1237
|
|
|
@@ -1250,10 +1241,6 @@
|
|
|
1250
1241
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1251
1242
|
}
|
|
1252
1243
|
|
|
1253
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1254
|
-
color: #dadada;
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
1244
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-btn:focus {
|
|
1258
1245
|
outline: none;
|
|
1259
1246
|
}
|
|
@@ -1262,13 +1249,13 @@
|
|
|
1262
1249
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1263
1250
|
background: #514f4f;
|
|
1264
1251
|
border: 0;
|
|
1265
|
-
border-left: 1px solid #514f4f;
|
|
1266
1252
|
box-shadow: none;
|
|
1253
|
+
border-left: 1px solid #514f4f;
|
|
1267
1254
|
}
|
|
1268
1255
|
|
|
1269
1256
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
1270
1257
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) .e-icons {
|
|
1271
|
-
color: #
|
|
1258
|
+
color: #fff;
|
|
1272
1259
|
}
|
|
1273
1260
|
|
|
1274
1261
|
.e-toolbar .e-tbar-btn {
|
|
@@ -1357,8 +1344,8 @@
|
|
|
1357
1344
|
.e-toolbar .e-hor-nav:focus {
|
|
1358
1345
|
background: #414040;
|
|
1359
1346
|
border-left: 0;
|
|
1360
|
-
color: #dadada;
|
|
1361
1347
|
border-color: #414040;
|
|
1348
|
+
color: #dadada;
|
|
1362
1349
|
}
|
|
1363
1350
|
|
|
1364
1351
|
.e-toolbar .e-tbar-btn:active {
|
|
@@ -550,18 +550,6 @@
|
|
|
550
550
|
line-height: 25px;
|
|
551
551
|
}
|
|
552
552
|
|
|
553
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
554
|
-
padding: 0 1.5px;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
558
|
-
padding: 0 1.5px;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
562
|
-
padding: 0 1.5px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
553
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
566
554
|
margin: 7.5px 3px;
|
|
567
555
|
min-height: 25px;
|
|
@@ -653,6 +641,8 @@
|
|
|
653
641
|
}
|
|
654
642
|
|
|
655
643
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
644
|
+
-ms-flex-align: center;
|
|
645
|
+
align-items: center;
|
|
656
646
|
display: -ms-inline-flexbox;
|
|
657
647
|
display: inline-flex;
|
|
658
648
|
-ms-flex-pack: start;
|
|
@@ -836,6 +826,7 @@
|
|
|
836
826
|
|
|
837
827
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
838
828
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
829
|
+
color: #333;
|
|
839
830
|
display: table-cell;
|
|
840
831
|
text-align: center;
|
|
841
832
|
vertical-align: middle;
|
|
@@ -1215,6 +1206,10 @@
|
|
|
1215
1206
|
color: #333;
|
|
1216
1207
|
}
|
|
1217
1208
|
|
|
1209
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1210
|
+
color: #333;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1218
1213
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1219
1214
|
background: #f4f4f4;
|
|
1220
1215
|
border-color: #eaeaea;
|
|
@@ -1237,11 +1232,7 @@
|
|
|
1237
1232
|
color: #333;
|
|
1238
1233
|
}
|
|
1239
1234
|
|
|
1240
|
-
.e-toolbar
|
|
1241
|
-
color: #333;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
.e-toolbar .e-icons {
|
|
1235
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1245
1236
|
color: #333;
|
|
1246
1237
|
}
|
|
1247
1238
|
|
|
@@ -1251,10 +1242,6 @@
|
|
|
1251
1242
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1252
1243
|
}
|
|
1253
1244
|
|
|
1254
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1255
|
-
color: #333;
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
1245
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-btn:focus {
|
|
1259
1246
|
outline: none;
|
|
1260
1247
|
}
|
|
@@ -1263,8 +1250,8 @@
|
|
|
1263
1250
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1264
1251
|
background: #d1ebff;
|
|
1265
1252
|
border: 0;
|
|
1266
|
-
border-left: 1px solid #d1ebff;
|
|
1267
1253
|
box-shadow: none;
|
|
1254
|
+
border-left: 1px solid #d1ebff;
|
|
1268
1255
|
}
|
|
1269
1256
|
|
|
1270
1257
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
@@ -1358,8 +1345,8 @@
|
|
|
1358
1345
|
.e-toolbar .e-hor-nav:focus {
|
|
1359
1346
|
background: #f4f4f4;
|
|
1360
1347
|
border-left: 0;
|
|
1361
|
-
color: #fff;
|
|
1362
1348
|
border-color: #eaeaea;
|
|
1349
|
+
color: #fff;
|
|
1363
1350
|
}
|
|
1364
1351
|
|
|
1365
1352
|
.e-toolbar .e-tbar-btn:active {
|
|
@@ -549,18 +549,6 @@
|
|
|
549
549
|
line-height: 25px;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
553
|
-
padding: 0 1.5px;
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
557
|
-
padding: 0 1.5px;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
561
|
-
padding: 0 1.5px;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
552
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
565
553
|
margin: 7.5px 3px;
|
|
566
554
|
min-height: 25px;
|
|
@@ -652,6 +640,8 @@
|
|
|
652
640
|
}
|
|
653
641
|
|
|
654
642
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
643
|
+
-ms-flex-align: center;
|
|
644
|
+
align-items: center;
|
|
655
645
|
display: -ms-inline-flexbox;
|
|
656
646
|
display: inline-flex;
|
|
657
647
|
-ms-flex-pack: start;
|
|
@@ -835,6 +825,7 @@
|
|
|
835
825
|
|
|
836
826
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
837
827
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
828
|
+
color: #000;
|
|
838
829
|
display: table-cell;
|
|
839
830
|
text-align: center;
|
|
840
831
|
vertical-align: middle;
|
|
@@ -1215,6 +1206,10 @@
|
|
|
1215
1206
|
border: 2px solid #fff;
|
|
1216
1207
|
}
|
|
1217
1208
|
|
|
1209
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1210
|
+
color: #000;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1218
1213
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1219
1214
|
background: inherit;
|
|
1220
1215
|
border-color: #000;
|
|
@@ -1263,11 +1258,7 @@
|
|
|
1263
1258
|
color: #000;
|
|
1264
1259
|
}
|
|
1265
1260
|
|
|
1266
|
-
.e-toolbar
|
|
1267
|
-
color: #000;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.e-toolbar .e-icons {
|
|
1261
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1271
1262
|
color: #000;
|
|
1272
1263
|
}
|
|
1273
1264
|
|
|
@@ -1277,10 +1268,6 @@
|
|
|
1277
1268
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1278
1269
|
}
|
|
1279
1270
|
|
|
1280
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1281
|
-
color: #000;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
1271
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-btn:focus {
|
|
1285
1272
|
outline: none;
|
|
1286
1273
|
}
|
|
@@ -1289,8 +1276,8 @@
|
|
|
1289
1276
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1290
1277
|
background: #400074;
|
|
1291
1278
|
border: 0;
|
|
1292
|
-
border-left: 1px solid #400074;
|
|
1293
1279
|
box-shadow: none;
|
|
1280
|
+
border-left: 1px solid #400074;
|
|
1294
1281
|
}
|
|
1295
1282
|
|
|
1296
1283
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:focus,
|
|
@@ -1416,8 +1403,8 @@
|
|
|
1416
1403
|
.e-toolbar .e-hor-nav:focus {
|
|
1417
1404
|
background: #ecf;
|
|
1418
1405
|
border-left: 0;
|
|
1419
|
-
color: #000;
|
|
1420
1406
|
border-color: #000;
|
|
1407
|
+
color: #000;
|
|
1421
1408
|
background: inherit;
|
|
1422
1409
|
border: 2px solid #fff;
|
|
1423
1410
|
}
|
|
@@ -550,18 +550,6 @@
|
|
|
550
550
|
line-height: 25px;
|
|
551
551
|
}
|
|
552
552
|
|
|
553
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
554
|
-
padding: 0 1.5px;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
558
|
-
padding: 0 1.5px;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
562
|
-
padding: 0 1.5px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
553
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
566
554
|
margin: 7.5px 3px;
|
|
567
555
|
min-height: 25px;
|
|
@@ -653,6 +641,8 @@
|
|
|
653
641
|
}
|
|
654
642
|
|
|
655
643
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
644
|
+
-ms-flex-align: center;
|
|
645
|
+
align-items: center;
|
|
656
646
|
display: -ms-inline-flexbox;
|
|
657
647
|
display: inline-flex;
|
|
658
648
|
-ms-flex-pack: start;
|
|
@@ -836,6 +826,7 @@
|
|
|
836
826
|
|
|
837
827
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
838
828
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
829
|
+
color: #fff;
|
|
839
830
|
display: table-cell;
|
|
840
831
|
text-align: center;
|
|
841
832
|
vertical-align: middle;
|
|
@@ -1216,6 +1207,10 @@
|
|
|
1216
1207
|
border: 2px solid #000;
|
|
1217
1208
|
}
|
|
1218
1209
|
|
|
1210
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1211
|
+
color: #fff;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1219
1214
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1220
1215
|
background: inherit;
|
|
1221
1216
|
border-color: #fff;
|
|
@@ -1264,11 +1259,7 @@
|
|
|
1264
1259
|
color: #000;
|
|
1265
1260
|
}
|
|
1266
1261
|
|
|
1267
|
-
.e-toolbar
|
|
1268
|
-
color: #fff;
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
.e-toolbar .e-icons {
|
|
1262
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1272
1263
|
color: #fff;
|
|
1273
1264
|
}
|
|
1274
1265
|
|
|
@@ -1278,10 +1269,6 @@
|
|
|
1278
1269
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1279
1270
|
}
|
|
1280
1271
|
|
|
1281
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1282
|
-
color: #fff;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
1272
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-btn:focus {
|
|
1286
1273
|
outline: none;
|
|
1287
1274
|
}
|
|
@@ -1290,8 +1277,8 @@
|
|
|
1290
1277
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1291
1278
|
background: #ffd939;
|
|
1292
1279
|
border: 0;
|
|
1293
|
-
border-left: 1px solid #ffd939;
|
|
1294
1280
|
box-shadow: none;
|
|
1281
|
+
border-left: 1px solid #ffd939;
|
|
1295
1282
|
}
|
|
1296
1283
|
|
|
1297
1284
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:focus,
|
|
@@ -1417,8 +1404,8 @@
|
|
|
1417
1404
|
.e-toolbar .e-hor-nav:focus {
|
|
1418
1405
|
background: #685708;
|
|
1419
1406
|
border-left: 0;
|
|
1420
|
-
color: #000;
|
|
1421
1407
|
border-color: #fff;
|
|
1408
|
+
color: #000;
|
|
1422
1409
|
background: inherit;
|
|
1423
1410
|
border: 2px solid #fff;
|
|
1424
1411
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5.scss';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
@include export-module('toolbar-bootstrap5-icons') {
|
|
3
|
+
/*! toolbar icons */
|
|
4
|
+
#{&}.e-toolbar {
|
|
5
|
+
|
|
6
|
+
.e-popup-down-icon::before {
|
|
7
|
+
content: '\e729';
|
|
8
|
+
line-height: normal;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-popup-up-icon::before {
|
|
12
|
+
content: '\e776';
|
|
13
|
+
line-height: normal;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@include export-module('toolbar-tailwind-dark-icons') {
|
|
3
|
-
/*! toolbar icons */
|
|
4
|
-
#{&}.e-toolbar {
|
|
5
|
-
|
|
6
|
-
.e-popup-down-icon::before {
|
|
7
|
-
content: '\e706';
|
|
8
|
-
line-height: normal;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.e-popup-up-icon::before {
|
|
12
|
-
content: '\e752';
|
|
13
|
-
line-height: normal;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
1
|
+
@import './tailwind.scss';
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
@include export-module('toolbar-tailwind-icons') {
|
|
3
|
-
/*! toolbar icons */
|
|
4
|
-
#{&}.e-toolbar {
|
|
5
|
-
|
|
6
|
-
.e-popup-down-icon::before {
|
|
7
|
-
content: '\e706';
|
|
8
|
-
line-height: normal;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.e-popup-up-icon::before {
|
|
12
|
-
content: '\e752';
|
|
13
|
-
line-height: normal;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
1
|
+
|
|
2
|
+
@include export-module('toolbar-tailwind-icons') {
|
|
3
|
+
/*! toolbar icons */
|
|
4
|
+
#{&}.e-toolbar {
|
|
5
|
+
|
|
6
|
+
.e-popup-down-icon::before {
|
|
7
|
+
content: '\e706';
|
|
8
|
+
line-height: normal;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-popup-up-icon::before {
|
|
12
|
+
content: '\e752';
|
|
13
|
+
line-height: normal;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -579,18 +579,6 @@
|
|
|
579
579
|
line-height: 25px;
|
|
580
580
|
}
|
|
581
581
|
|
|
582
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
583
|
-
padding: 0 1.5px;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
587
|
-
padding: 0 1.5px;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
591
|
-
padding: 0 1.5px;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
582
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
595
583
|
margin: 7.5px 3px;
|
|
596
584
|
min-height: 25px;
|
|
@@ -682,6 +670,8 @@
|
|
|
682
670
|
}
|
|
683
671
|
|
|
684
672
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
673
|
+
-ms-flex-align: center;
|
|
674
|
+
align-items: center;
|
|
685
675
|
display: -ms-inline-flexbox;
|
|
686
676
|
display: inline-flex;
|
|
687
677
|
-ms-flex-pack: start;
|
|
@@ -875,6 +865,7 @@
|
|
|
875
865
|
|
|
876
866
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
877
867
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
868
|
+
color: #fff;
|
|
878
869
|
display: table-cell;
|
|
879
870
|
text-align: center;
|
|
880
871
|
vertical-align: middle;
|
|
@@ -1246,6 +1237,10 @@
|
|
|
1246
1237
|
color: #fff;
|
|
1247
1238
|
}
|
|
1248
1239
|
|
|
1240
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1241
|
+
color: #fff;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1249
1244
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1250
1245
|
background: rgba(255, 255, 255, 0.1);
|
|
1251
1246
|
border-color: #000;
|
|
@@ -1268,11 +1263,7 @@
|
|
|
1268
1263
|
color: #000;
|
|
1269
1264
|
}
|
|
1270
1265
|
|
|
1271
|
-
.e-toolbar
|
|
1272
|
-
color: #fff;
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
.e-toolbar .e-icons {
|
|
1266
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1276
1267
|
color: #fff;
|
|
1277
1268
|
}
|
|
1278
1269
|
|
|
@@ -1282,21 +1273,17 @@
|
|
|
1282
1273
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1283
1274
|
}
|
|
1284
1275
|
|
|
1285
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1286
|
-
color: #fff;
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
1276
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
1290
1277
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1291
1278
|
background: rgba(255, 255, 255, 0.1);
|
|
1292
1279
|
border: 0;
|
|
1293
|
-
border-left: 1px none rgba(255, 255, 255, 0.1);
|
|
1294
1280
|
box-shadow: none;
|
|
1281
|
+
border-left: 1px none rgba(255, 255, 255, 0.1);
|
|
1295
1282
|
}
|
|
1296
1283
|
|
|
1297
1284
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
1298
1285
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) .e-icons {
|
|
1299
|
-
color: #
|
|
1286
|
+
color: #fff;
|
|
1300
1287
|
}
|
|
1301
1288
|
|
|
1302
1289
|
.e-toolbar .e-tbar-btn {
|
|
@@ -1396,8 +1383,8 @@
|
|
|
1396
1383
|
.e-toolbar .e-hor-nav:focus {
|
|
1397
1384
|
background: rgba(255, 255, 255, 0.1);
|
|
1398
1385
|
border-left: 0;
|
|
1399
|
-
color: #000;
|
|
1400
1386
|
border-color: #000;
|
|
1387
|
+
color: #000;
|
|
1401
1388
|
}
|
|
1402
1389
|
|
|
1403
1390
|
.e-toolbar .e-tbar-btn:active {
|
|
@@ -582,18 +582,6 @@
|
|
|
582
582
|
line-height: 25px;
|
|
583
583
|
}
|
|
584
584
|
|
|
585
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
586
|
-
padding: 0 1.5px;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
590
|
-
padding: 0 1.5px;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
594
|
-
padding: 0 1.5px;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
585
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-separator {
|
|
598
586
|
margin: 7.5px 3px;
|
|
599
587
|
min-height: 25px;
|
|
@@ -685,6 +673,8 @@
|
|
|
685
673
|
}
|
|
686
674
|
|
|
687
675
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn.e-btn {
|
|
676
|
+
-ms-flex-align: center;
|
|
677
|
+
align-items: center;
|
|
688
678
|
display: -ms-inline-flexbox;
|
|
689
679
|
display: inline-flex;
|
|
690
680
|
-ms-flex-pack: start;
|
|
@@ -878,6 +868,7 @@
|
|
|
878
868
|
|
|
879
869
|
.e-toolbar .e-popup-down-icon.e-icons,
|
|
880
870
|
.e-toolbar .e-popup-up-icon.e-icons {
|
|
871
|
+
color: rgba(0, 0, 0, 0.54);
|
|
881
872
|
display: table-cell;
|
|
882
873
|
text-align: center;
|
|
883
874
|
vertical-align: middle;
|
|
@@ -1249,6 +1240,10 @@
|
|
|
1249
1240
|
color: rgba(0, 0, 0, 0.87);
|
|
1250
1241
|
}
|
|
1251
1242
|
|
|
1243
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-toolbar-item .e-tbar-btn-text {
|
|
1244
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1252
1247
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus {
|
|
1253
1248
|
background: rgba(0, 0, 0, 0.12);
|
|
1254
1249
|
border-color: rgba(0, 0, 0, 0.12);
|
|
@@ -1271,11 +1266,7 @@
|
|
|
1271
1266
|
color: rgba(0, 0, 0, 0.87);
|
|
1272
1267
|
}
|
|
1273
1268
|
|
|
1274
|
-
.e-toolbar
|
|
1275
|
-
color: rgba(0, 0, 0, 0.87);
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.e-toolbar .e-icons {
|
|
1269
|
+
.e-toolbar .e-tbar-btn.e-btn .e-icons {
|
|
1279
1270
|
color: rgba(0, 0, 0, 0.54);
|
|
1280
1271
|
}
|
|
1281
1272
|
|
|
@@ -1285,16 +1276,12 @@
|
|
|
1285
1276
|
box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.21);
|
|
1286
1277
|
}
|
|
1287
1278
|
|
|
1288
|
-
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn-text {
|
|
1289
|
-
color: rgba(0, 0, 0, 0.87);
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
1279
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active,
|
|
1293
1280
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active:not(.e-expended-nav) {
|
|
1294
1281
|
background: rgba(0, 0, 0, 0.12);
|
|
1295
1282
|
border: 0;
|
|
1296
|
-
border-left: 1px none rgba(0, 0, 0, 0.12);
|
|
1297
1283
|
box-shadow: none;
|
|
1284
|
+
border-left: 1px none rgba(0, 0, 0, 0.12);
|
|
1298
1285
|
}
|
|
1299
1286
|
|
|
1300
1287
|
.e-toolbar.e-toolpop .e-hor-nav.e-nav-active .e-icons,
|
|
@@ -1399,8 +1386,8 @@
|
|
|
1399
1386
|
.e-toolbar .e-hor-nav:focus {
|
|
1400
1387
|
background: rgba(0, 0, 0, 0.12);
|
|
1401
1388
|
border-left: 0;
|
|
1402
|
-
color: rgba(0, 0, 0, 0.87);
|
|
1403
1389
|
border-color: rgba(0, 0, 0, 0.12);
|
|
1390
|
+
color: rgba(0, 0, 0, 0.87);
|
|
1404
1391
|
}
|
|
1405
1392
|
|
|
1406
1393
|
.e-toolbar .e-tbar-btn:active {
|