@syncfusion/ej2-navigations 29.2.5 → 29.2.8

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.
Files changed (80) hide show
  1. package/dist/ej2-navigations.min.js +2 -2
  2. package/dist/ej2-navigations.umd.min.js +2 -2
  3. package/dist/ej2-navigations.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-navigations.es2015.js +17 -3
  5. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es5.js +18 -3
  7. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  8. package/dist/global/ej2-navigations.min.js +2 -2
  9. package/dist/global/ej2-navigations.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +12 -64
  12. package/src/common/menu-base.js +12 -2
  13. package/src/tab/tab.js +6 -1
  14. package/styles/bds-lite.css +15 -0
  15. package/styles/bds.css +15 -0
  16. package/styles/bootstrap-dark-lite.css +15 -0
  17. package/styles/bootstrap-dark.css +15 -0
  18. package/styles/bootstrap-lite.css +15 -0
  19. package/styles/bootstrap.css +17 -2
  20. package/styles/bootstrap4-lite.css +15 -0
  21. package/styles/bootstrap4.css +15 -0
  22. package/styles/bootstrap5-dark-lite.css +15 -0
  23. package/styles/bootstrap5-dark.css +15 -0
  24. package/styles/bootstrap5-lite.css +15 -0
  25. package/styles/bootstrap5.3-lite.css +15 -0
  26. package/styles/bootstrap5.3.css +15 -0
  27. package/styles/bootstrap5.css +15 -0
  28. package/styles/fabric-dark-lite.css +15 -0
  29. package/styles/fabric-dark.css +15 -0
  30. package/styles/fabric-lite.css +15 -0
  31. package/styles/fabric.css +15 -0
  32. package/styles/fluent-dark-lite.css +15 -0
  33. package/styles/fluent-dark.css +15 -0
  34. package/styles/fluent-lite.css +15 -0
  35. package/styles/fluent.css +15 -0
  36. package/styles/fluent2-lite.css +15 -0
  37. package/styles/fluent2.css +15 -0
  38. package/styles/highcontrast-light-lite.css +15 -0
  39. package/styles/highcontrast-light.css +15 -0
  40. package/styles/highcontrast-lite.css +17 -2
  41. package/styles/highcontrast.css +17 -2
  42. package/styles/material-dark-lite.css +15 -0
  43. package/styles/material-dark.css +15 -0
  44. package/styles/material-lite.css +17 -2
  45. package/styles/material.css +17 -2
  46. package/styles/material3-dark-lite.css +15 -0
  47. package/styles/material3-dark.css +15 -0
  48. package/styles/material3-lite.css +15 -0
  49. package/styles/material3.css +15 -0
  50. package/styles/tailwind-dark-lite.css +15 -0
  51. package/styles/tailwind-dark.css +15 -0
  52. package/styles/tailwind-lite.css +15 -0
  53. package/styles/tailwind.css +15 -0
  54. package/styles/tailwind3-lite.css +15 -0
  55. package/styles/tailwind3.css +15 -0
  56. package/styles/toolbar/_bootstrap-definition.scss +1 -1
  57. package/styles/toolbar/_highcontrast-definition.scss +1 -1
  58. package/styles/toolbar/_layout.scss +21 -0
  59. package/styles/toolbar/_material-definition.scss +2 -2
  60. package/styles/toolbar/bds.css +15 -0
  61. package/styles/toolbar/bootstrap-dark.css +15 -0
  62. package/styles/toolbar/bootstrap.css +17 -2
  63. package/styles/toolbar/bootstrap4.css +15 -0
  64. package/styles/toolbar/bootstrap5-dark.css +15 -0
  65. package/styles/toolbar/bootstrap5.3.css +15 -0
  66. package/styles/toolbar/bootstrap5.css +15 -0
  67. package/styles/toolbar/fabric-dark.css +15 -0
  68. package/styles/toolbar/fabric.css +15 -0
  69. package/styles/toolbar/fluent-dark.css +15 -0
  70. package/styles/toolbar/fluent.css +15 -0
  71. package/styles/toolbar/fluent2.css +15 -0
  72. package/styles/toolbar/highcontrast-light.css +15 -0
  73. package/styles/toolbar/highcontrast.css +17 -2
  74. package/styles/toolbar/material-dark.css +15 -0
  75. package/styles/toolbar/material.css +17 -2
  76. package/styles/toolbar/material3-dark.css +15 -0
  77. package/styles/toolbar/material3.css +15 -0
  78. package/styles/toolbar/tailwind-dark.css +15 -0
  79. package/styles/toolbar/tailwind.css +15 -0
  80. package/styles/toolbar/tailwind3.css +15 -0
@@ -233,6 +233,9 @@
233
233
  min-width: 28px;
234
234
  padding: 4px;
235
235
  }
236
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
237
+ pointer-events: none;
238
+ }
236
239
  .e-toolbar .e-toolbar-item.e-separator {
237
240
  margin: 5px 10px;
238
241
  min-height: 24px;
@@ -248,6 +251,9 @@
248
251
  .e-toolbar .e-toolbar-item > * {
249
252
  text-overflow: ellipsis;
250
253
  }
254
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
255
+ pointer-events: auto;
256
+ }
251
257
  .e-toolbar .e-toolbar-item.e-hidden {
252
258
  display: none;
253
259
  }
@@ -410,6 +416,9 @@
410
416
  min-width: 100%;
411
417
  text-overflow: ellipsis;
412
418
  }
419
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
420
+ pointer-events: auto;
421
+ }
413
422
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
414
423
  min-width: 100%;
415
424
  }
@@ -523,6 +532,9 @@
523
532
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
524
533
  height: auto;
525
534
  }
535
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
536
+ pointer-events: auto;
537
+ }
526
538
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
527
539
  -ms-flex-item-align: center;
528
540
  align-self: center;
@@ -536,6 +548,9 @@
536
548
  display: -ms-inline-flexbox;
537
549
  display: inline-flex;
538
550
  }
551
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
552
+ pointer-events: auto;
553
+ }
539
554
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
540
555
  display: table;
541
556
  }
@@ -207,6 +207,9 @@
207
207
  min-width: 34px;
208
208
  padding: 0 1px;
209
209
  }
210
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
211
+ pointer-events: none;
212
+ }
210
213
  .e-toolbar .e-toolbar-item.e-separator {
211
214
  margin: 7.5px 3px;
212
215
  min-height: 27px;
@@ -222,6 +225,9 @@
222
225
  .e-toolbar .e-toolbar-item > * {
223
226
  text-overflow: ellipsis;
224
227
  }
228
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
229
+ pointer-events: auto;
230
+ }
225
231
  .e-toolbar .e-toolbar-item.e-hidden {
226
232
  display: none;
227
233
  }
@@ -384,6 +390,9 @@
384
390
  min-width: 100%;
385
391
  text-overflow: ellipsis;
386
392
  }
393
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
394
+ pointer-events: auto;
395
+ }
387
396
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
388
397
  min-width: 100%;
389
398
  }
@@ -497,6 +506,9 @@
497
506
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
498
507
  height: auto;
499
508
  }
509
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
510
+ pointer-events: auto;
511
+ }
500
512
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
501
513
  -ms-flex-item-align: center;
502
514
  align-self: center;
@@ -510,6 +522,9 @@
510
522
  display: -ms-inline-flexbox;
511
523
  display: inline-flex;
512
524
  }
525
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
526
+ pointer-events: auto;
527
+ }
513
528
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
514
529
  display: table;
515
530
  }
@@ -208,6 +208,9 @@
208
208
  min-width: 34px;
209
209
  padding: 0 1px;
210
210
  }
211
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
212
+ pointer-events: none;
213
+ }
211
214
  .e-toolbar .e-toolbar-item.e-separator {
212
215
  margin: 7.5px 3px;
213
216
  min-height: 24px;
@@ -223,6 +226,9 @@
223
226
  .e-toolbar .e-toolbar-item > * {
224
227
  text-overflow: ellipsis;
225
228
  }
229
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
230
+ pointer-events: auto;
231
+ }
226
232
  .e-toolbar .e-toolbar-item.e-hidden {
227
233
  display: none;
228
234
  }
@@ -385,6 +391,9 @@
385
391
  min-width: 100%;
386
392
  text-overflow: ellipsis;
387
393
  }
394
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
395
+ pointer-events: auto;
396
+ }
388
397
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
389
398
  min-width: 100%;
390
399
  }
@@ -498,6 +507,9 @@
498
507
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
499
508
  height: auto;
500
509
  }
510
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
511
+ pointer-events: auto;
512
+ }
501
513
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
502
514
  -ms-flex-item-align: center;
503
515
  align-self: center;
@@ -511,6 +523,9 @@
511
523
  display: -ms-inline-flexbox;
512
524
  display: inline-flex;
513
525
  }
526
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
527
+ pointer-events: auto;
528
+ }
514
529
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
515
530
  display: table;
516
531
  }
@@ -232,6 +232,9 @@
232
232
  min-width: 28px;
233
233
  padding: 0;
234
234
  }
235
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
236
+ pointer-events: none;
237
+ }
235
238
  .e-toolbar .e-toolbar-item.e-separator {
236
239
  margin: 4px;
237
240
  min-height: 24px;
@@ -247,6 +250,9 @@
247
250
  .e-toolbar .e-toolbar-item > * {
248
251
  text-overflow: ellipsis;
249
252
  }
253
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
254
+ pointer-events: auto;
255
+ }
250
256
  .e-toolbar .e-toolbar-item.e-hidden {
251
257
  display: none;
252
258
  }
@@ -409,6 +415,9 @@
409
415
  min-width: 100%;
410
416
  text-overflow: ellipsis;
411
417
  }
418
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
419
+ pointer-events: auto;
420
+ }
412
421
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
413
422
  min-width: 100%;
414
423
  }
@@ -522,6 +531,9 @@
522
531
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
523
532
  height: auto;
524
533
  }
534
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
535
+ pointer-events: auto;
536
+ }
525
537
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
526
538
  -ms-flex-item-align: center;
527
539
  align-self: center;
@@ -535,6 +547,9 @@
535
547
  display: -ms-inline-flexbox;
536
548
  display: inline-flex;
537
549
  }
550
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
551
+ pointer-events: auto;
552
+ }
538
553
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
539
554
  display: table;
540
555
  }
@@ -232,6 +232,9 @@
232
232
  min-width: 28px;
233
233
  padding: 0;
234
234
  }
235
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
236
+ pointer-events: none;
237
+ }
235
238
  .e-toolbar .e-toolbar-item.e-separator {
236
239
  margin: 4px;
237
240
  min-height: 24px;
@@ -247,6 +250,9 @@
247
250
  .e-toolbar .e-toolbar-item > * {
248
251
  text-overflow: ellipsis;
249
252
  }
253
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
254
+ pointer-events: auto;
255
+ }
250
256
  .e-toolbar .e-toolbar-item.e-hidden {
251
257
  display: none;
252
258
  }
@@ -409,6 +415,9 @@
409
415
  min-width: 100%;
410
416
  text-overflow: ellipsis;
411
417
  }
418
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
419
+ pointer-events: auto;
420
+ }
412
421
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
413
422
  min-width: 100%;
414
423
  }
@@ -522,6 +531,9 @@
522
531
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
523
532
  height: auto;
524
533
  }
534
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
535
+ pointer-events: auto;
536
+ }
525
537
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
526
538
  -ms-flex-item-align: center;
527
539
  align-self: center;
@@ -535,6 +547,9 @@
535
547
  display: -ms-inline-flexbox;
536
548
  display: inline-flex;
537
549
  }
550
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
551
+ pointer-events: auto;
552
+ }
538
553
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
539
554
  display: table;
540
555
  }
@@ -238,6 +238,9 @@
238
238
  min-width: 32px;
239
239
  padding: 4px 0;
240
240
  }
241
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
242
+ pointer-events: none;
243
+ }
241
244
  .e-toolbar .e-toolbar-item.e-separator {
242
245
  margin: 8px 4px;
243
246
  min-height: 24px;
@@ -253,6 +256,9 @@
253
256
  .e-toolbar .e-toolbar-item > * {
254
257
  text-overflow: ellipsis;
255
258
  }
259
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
260
+ pointer-events: auto;
261
+ }
256
262
  .e-toolbar .e-toolbar-item.e-hidden {
257
263
  display: none;
258
264
  }
@@ -415,6 +421,9 @@
415
421
  min-width: 100%;
416
422
  text-overflow: ellipsis;
417
423
  }
424
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
425
+ pointer-events: auto;
426
+ }
418
427
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
419
428
  min-width: 100%;
420
429
  }
@@ -528,6 +537,9 @@
528
537
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
529
538
  height: auto;
530
539
  }
540
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
541
+ pointer-events: auto;
542
+ }
531
543
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
532
544
  -ms-flex-item-align: center;
533
545
  align-self: center;
@@ -541,6 +553,9 @@
541
553
  display: -ms-inline-flexbox;
542
554
  display: inline-flex;
543
555
  }
556
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
557
+ pointer-events: auto;
558
+ }
544
559
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
545
560
  display: table;
546
561
  }
@@ -207,6 +207,9 @@
207
207
  min-width: 34px;
208
208
  padding: 0 1px;
209
209
  }
210
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
211
+ pointer-events: none;
212
+ }
210
213
  .e-toolbar .e-toolbar-item.e-separator {
211
214
  margin: 7.5px 3px;
212
215
  min-height: 27px;
@@ -222,6 +225,9 @@
222
225
  .e-toolbar .e-toolbar-item > * {
223
226
  text-overflow: ellipsis;
224
227
  }
228
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
229
+ pointer-events: auto;
230
+ }
225
231
  .e-toolbar .e-toolbar-item.e-hidden {
226
232
  display: none;
227
233
  }
@@ -384,6 +390,9 @@
384
390
  min-width: 100%;
385
391
  text-overflow: ellipsis;
386
392
  }
393
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
394
+ pointer-events: auto;
395
+ }
387
396
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
388
397
  min-width: 100%;
389
398
  }
@@ -497,6 +506,9 @@
497
506
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
498
507
  height: auto;
499
508
  }
509
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
510
+ pointer-events: auto;
511
+ }
500
512
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
501
513
  -ms-flex-item-align: center;
502
514
  align-self: center;
@@ -510,6 +522,9 @@
510
522
  display: -ms-inline-flexbox;
511
523
  display: inline-flex;
512
524
  }
525
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
526
+ pointer-events: auto;
527
+ }
513
528
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
514
529
  display: table;
515
530
  }
@@ -163,7 +163,7 @@
163
163
  -ms-flex-pack: center;
164
164
  justify-content: center;
165
165
  margin: 0;
166
- min-height: 39px;
166
+ min-height: 40px;
167
167
  min-width: 40px;
168
168
  padding: 0;
169
169
  border-radius: 0;
@@ -208,6 +208,9 @@
208
208
  min-width: 34px;
209
209
  padding: 0 1px;
210
210
  }
211
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
212
+ pointer-events: none;
213
+ }
211
214
  .e-toolbar .e-toolbar-item.e-separator {
212
215
  margin: 7.5px 3px;
213
216
  min-height: 24px;
@@ -223,6 +226,9 @@
223
226
  .e-toolbar .e-toolbar-item > * {
224
227
  text-overflow: ellipsis;
225
228
  }
229
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
230
+ pointer-events: auto;
231
+ }
226
232
  .e-toolbar .e-toolbar-item.e-hidden {
227
233
  display: none;
228
234
  }
@@ -385,6 +391,9 @@
385
391
  min-width: 100%;
386
392
  text-overflow: ellipsis;
387
393
  }
394
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
395
+ pointer-events: auto;
396
+ }
388
397
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
389
398
  min-width: 100%;
390
399
  }
@@ -426,7 +435,7 @@
426
435
  }
427
436
  .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
428
437
  .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
429
- min-height: 39px;
438
+ min-height: 40px;
430
439
  min-width: 40px;
431
440
  padding: 0;
432
441
  }
@@ -498,6 +507,9 @@
498
507
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
499
508
  height: auto;
500
509
  }
510
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
511
+ pointer-events: auto;
512
+ }
501
513
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
502
514
  -ms-flex-item-align: center;
503
515
  align-self: center;
@@ -511,6 +523,9 @@
511
523
  display: -ms-inline-flexbox;
512
524
  display: inline-flex;
513
525
  }
526
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
527
+ pointer-events: auto;
528
+ }
514
529
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
515
530
  display: table;
516
531
  }
@@ -273,6 +273,9 @@
273
273
  min-width: 34px;
274
274
  padding: 3.5px;
275
275
  }
276
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
277
+ pointer-events: none;
278
+ }
276
279
  .e-toolbar .e-toolbar-item.e-separator {
277
280
  margin: 7.5px 3px;
278
281
  min-height: 27px;
@@ -288,6 +291,9 @@
288
291
  .e-toolbar .e-toolbar-item > * {
289
292
  text-overflow: ellipsis;
290
293
  }
294
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
295
+ pointer-events: auto;
296
+ }
291
297
  .e-toolbar .e-toolbar-item.e-hidden {
292
298
  display: none;
293
299
  }
@@ -450,6 +456,9 @@
450
456
  min-width: 100%;
451
457
  text-overflow: ellipsis;
452
458
  }
459
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
460
+ pointer-events: auto;
461
+ }
453
462
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
454
463
  min-width: 100%;
455
464
  }
@@ -563,6 +572,9 @@
563
572
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
564
573
  height: auto;
565
574
  }
575
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
576
+ pointer-events: auto;
577
+ }
566
578
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
567
579
  -ms-flex-item-align: center;
568
580
  align-self: center;
@@ -576,6 +588,9 @@
576
588
  display: -ms-inline-flexbox;
577
589
  display: inline-flex;
578
590
  }
591
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
592
+ pointer-events: auto;
593
+ }
579
594
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
580
595
  display: table;
581
596
  }
@@ -234,7 +234,7 @@
234
234
  min-width: 0;
235
235
  padding: 0 1.5px;
236
236
  border-radius: 2px;
237
- line-height: 25px;
237
+ line-height: 24px;
238
238
  border: none;
239
239
  cursor: pointer;
240
240
  font-size: 14px;
@@ -255,7 +255,7 @@
255
255
  min-width: 24px;
256
256
  width: auto;
257
257
  font-size: 14px;
258
- line-height: 25px;
258
+ line-height: 24px;
259
259
  }
260
260
  .e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
261
261
  padding: 0 1.5px;
@@ -275,6 +275,9 @@
275
275
  min-width: 34px;
276
276
  padding: 3.5px;
277
277
  }
278
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
279
+ pointer-events: none;
280
+ }
278
281
  .e-toolbar .e-toolbar-item.e-separator {
279
282
  margin: 7.5px 3px;
280
283
  min-height: 27px;
@@ -290,6 +293,9 @@
290
293
  .e-toolbar .e-toolbar-item > * {
291
294
  text-overflow: ellipsis;
292
295
  }
296
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
297
+ pointer-events: auto;
298
+ }
293
299
  .e-toolbar .e-toolbar-item.e-hidden {
294
300
  display: none;
295
301
  }
@@ -452,6 +458,9 @@
452
458
  min-width: 100%;
453
459
  text-overflow: ellipsis;
454
460
  }
461
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
462
+ pointer-events: auto;
463
+ }
455
464
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
456
465
  min-width: 100%;
457
466
  }
@@ -565,6 +574,9 @@
565
574
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
566
575
  height: auto;
567
576
  }
577
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
578
+ pointer-events: auto;
579
+ }
568
580
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
569
581
  -ms-flex-item-align: center;
570
582
  align-self: center;
@@ -578,6 +590,9 @@
578
590
  display: -ms-inline-flexbox;
579
591
  display: inline-flex;
580
592
  }
593
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
594
+ pointer-events: auto;
595
+ }
581
596
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
582
597
  display: table;
583
598
  }
@@ -235,6 +235,9 @@
235
235
  min-width: 32px;
236
236
  padding: 8px 4px 8px 4px;
237
237
  }
238
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
239
+ pointer-events: none;
240
+ }
238
241
  .e-toolbar .e-toolbar-item.e-separator {
239
242
  margin: 8px 4px 8px 4px;
240
243
  min-height: 20px;
@@ -250,6 +253,9 @@
250
253
  .e-toolbar .e-toolbar-item > * {
251
254
  text-overflow: ellipsis;
252
255
  }
256
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
257
+ pointer-events: auto;
258
+ }
253
259
  .e-toolbar .e-toolbar-item.e-hidden {
254
260
  display: none;
255
261
  }
@@ -412,6 +418,9 @@
412
418
  min-width: 100%;
413
419
  text-overflow: ellipsis;
414
420
  }
421
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
422
+ pointer-events: auto;
423
+ }
415
424
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
416
425
  min-width: 100%;
417
426
  }
@@ -525,6 +534,9 @@
525
534
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
526
535
  height: auto;
527
536
  }
537
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
538
+ pointer-events: auto;
539
+ }
528
540
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
529
541
  -ms-flex-item-align: center;
530
542
  align-self: center;
@@ -538,6 +550,9 @@
538
550
  display: -ms-inline-flexbox;
539
551
  display: inline-flex;
540
552
  }
553
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
554
+ pointer-events: auto;
555
+ }
541
556
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
542
557
  display: table;
543
558
  }
@@ -237,6 +237,9 @@
237
237
  min-width: 32px;
238
238
  padding: 8px 4px 8px 4px;
239
239
  }
240
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
241
+ pointer-events: none;
242
+ }
240
243
  .e-toolbar .e-toolbar-item.e-separator {
241
244
  margin: 8px 4px 8px 4px;
242
245
  min-height: 20px;
@@ -252,6 +255,9 @@
252
255
  .e-toolbar .e-toolbar-item > * {
253
256
  text-overflow: ellipsis;
254
257
  }
258
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
259
+ pointer-events: auto;
260
+ }
255
261
  .e-toolbar .e-toolbar-item.e-hidden {
256
262
  display: none;
257
263
  }
@@ -414,6 +420,9 @@
414
420
  min-width: 100%;
415
421
  text-overflow: ellipsis;
416
422
  }
423
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
424
+ pointer-events: auto;
425
+ }
417
426
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
418
427
  min-width: 100%;
419
428
  }
@@ -527,6 +536,9 @@
527
536
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
528
537
  height: auto;
529
538
  }
539
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
540
+ pointer-events: auto;
541
+ }
530
542
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
531
543
  -ms-flex-item-align: center;
532
544
  align-self: center;
@@ -540,6 +552,9 @@
540
552
  display: -ms-inline-flexbox;
541
553
  display: inline-flex;
542
554
  }
555
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
556
+ pointer-events: auto;
557
+ }
543
558
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
544
559
  display: table;
545
560
  }
@@ -232,6 +232,9 @@
232
232
  min-width: 28px;
233
233
  padding: 4px;
234
234
  }
235
+ .e-toolbar .e-toolbar-item:not(.e-separator):not(.e-spacer), .e-toolbar .e-toolbar-item.e-overlay > * {
236
+ pointer-events: none;
237
+ }
235
238
  .e-toolbar .e-toolbar-item.e-separator {
236
239
  margin: 7px 4px;
237
240
  min-height: 24px;
@@ -247,6 +250,9 @@
247
250
  .e-toolbar .e-toolbar-item > * {
248
251
  text-overflow: ellipsis;
249
252
  }
253
+ .e-toolbar .e-toolbar-item:not(.e-overlay) > * {
254
+ pointer-events: auto;
255
+ }
250
256
  .e-toolbar .e-toolbar-item.e-hidden {
251
257
  display: none;
252
258
  }
@@ -409,6 +415,9 @@
409
415
  min-width: 100%;
410
416
  text-overflow: ellipsis;
411
417
  }
418
+ .e-toolbar .e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
419
+ pointer-events: auto;
420
+ }
412
421
  .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
413
422
  min-width: 100%;
414
423
  }
@@ -522,6 +531,9 @@
522
531
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-separator) {
523
532
  height: auto;
524
533
  }
534
+ .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item:not(.e-overlay) > * {
535
+ pointer-events: auto;
536
+ }
525
537
  .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item > * {
526
538
  -ms-flex-item-align: center;
527
539
  align-self: center;
@@ -535,6 +547,9 @@
535
547
  display: -ms-inline-flexbox;
536
548
  display: inline-flex;
537
549
  }
550
+ .e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item:not(.e-overlay) > * {
551
+ pointer-events: auto;
552
+ }
538
553
  .e-toolbar.e-extended-toolbar .e-hor-nav.e-ie-align {
539
554
  display: table;
540
555
  }