@syncfusion/ej2-angular-ribbon 22.1.34 → 22.1.39

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 (57) hide show
  1. package/license +10 -0
  2. package/package.json +7 -7
  3. package/styles/bootstrap-dark.css +79 -13
  4. package/styles/bootstrap.css +79 -13
  5. package/styles/bootstrap4.css +79 -13
  6. package/styles/bootstrap5-dark.css +79 -13
  7. package/styles/bootstrap5.css +79 -13
  8. package/styles/fabric-dark.css +79 -13
  9. package/styles/fabric.css +79 -13
  10. package/styles/fluent-dark.css +79 -13
  11. package/styles/fluent.css +79 -13
  12. package/styles/highcontrast-light.css +79 -13
  13. package/styles/highcontrast.css +83 -17
  14. package/styles/material-dark.css +79 -13
  15. package/styles/material.css +79 -13
  16. package/styles/material3-dark.css +1672 -0
  17. package/styles/material3-dark.scss +3 -0
  18. package/styles/material3.css +1728 -0
  19. package/styles/material3.scss +3 -0
  20. package/styles/ribbon/_bootstrap-dark-definition.scss +4 -0
  21. package/styles/ribbon/_bootstrap-definition.scss +4 -0
  22. package/styles/ribbon/_bootstrap4-definition.scss +4 -0
  23. package/styles/ribbon/_bootstrap5-definition.scss +4 -0
  24. package/styles/ribbon/_fabric-dark-definition.scss +4 -0
  25. package/styles/ribbon/_fabric-definition.scss +4 -0
  26. package/styles/ribbon/_fluent-definition.scss +4 -0
  27. package/styles/ribbon/_fusionnew-definition.scss +4 -0
  28. package/styles/ribbon/_highcontrast-definition.scss +6 -2
  29. package/styles/ribbon/_highcontrast-light-definition.scss +4 -0
  30. package/styles/ribbon/_layout.scss +110 -19
  31. package/styles/ribbon/_material-dark-definition.scss +4 -0
  32. package/styles/ribbon/_material-definition.scss +4 -0
  33. package/styles/ribbon/_material3-dark-definition.scss +1 -0
  34. package/styles/ribbon/_material3-definition.scss +210 -0
  35. package/styles/ribbon/_tailwind-definition.scss +4 -0
  36. package/styles/ribbon/bootstrap-dark.css +79 -13
  37. package/styles/ribbon/bootstrap.css +79 -13
  38. package/styles/ribbon/bootstrap4.css +79 -13
  39. package/styles/ribbon/bootstrap5-dark.css +79 -13
  40. package/styles/ribbon/bootstrap5.css +79 -13
  41. package/styles/ribbon/fabric-dark.css +79 -13
  42. package/styles/ribbon/fabric.css +79 -13
  43. package/styles/ribbon/fluent-dark.css +79 -13
  44. package/styles/ribbon/fluent.css +79 -13
  45. package/styles/ribbon/highcontrast-light.css +79 -13
  46. package/styles/ribbon/highcontrast.css +83 -17
  47. package/styles/ribbon/icons/_material3-dark.scss +1 -0
  48. package/styles/ribbon/material-dark.css +79 -13
  49. package/styles/ribbon/material.css +79 -13
  50. package/styles/ribbon/material3-dark.css +1672 -0
  51. package/styles/ribbon/material3-dark.scss +18 -0
  52. package/styles/ribbon/material3.css +1728 -0
  53. package/styles/ribbon/material3.scss +18 -0
  54. package/styles/ribbon/tailwind-dark.css +79 -13
  55. package/styles/ribbon/tailwind.css +79 -13
  56. package/styles/tailwind-dark.css +79 -13
  57. package/styles/tailwind.css +79 -13
@@ -0,0 +1,3 @@
1
+
2
+ @import 'ej2-base/styles/material3-definition.scss';
3
+ @import 'ribbon/material3.scss';
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 4px !default;
94
94
  $ribbon-menu-blank-icon-padding: 37px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 3px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 3px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 14px;
98
+ $ribbon-ddb-popup-height: 26px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 12px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 12px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $gray-darker !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 4px !default;
94
94
  $ribbon-menu-blank-icon-padding: 34px !default;
95
95
  $ribbon-launcher-icon-margin: 0 7px 3px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 3px 7px !default;
97
+ $ribbon-ddb-popup-font-size: 14px;
98
+ $ribbon-ddb-popup-height: 26px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $grey-f8 !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 4px !default;
94
94
  $ribbon-menu-blank-icon-padding: 34px !default;
95
95
  $ribbon-launcher-icon-margin: 0 7px 5px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 5px 7px !default;
97
+ $ribbon-ddb-popup-font-size: 14px;
98
+ $ribbon-ddb-popup-height: 26px;
97
99
 
98
100
  $ribbon-bigger-content-height: 120px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 120px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $gray-100 !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 2px !default;
94
94
  $ribbon-menu-blank-icon-padding: 38px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 4px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 4px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 12px;
98
+ $ribbon-ddb-popup-height: 24px;
97
99
 
98
100
  $ribbon-bigger-content-height: 114px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 114px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 4px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 4px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $content-bg-color-alt1 !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: unset !default;
94
94
  $ribbon-menu-blank-icon-padding: 30px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 4px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 4px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 16px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 45px;
160
164
 
161
165
  $ribbon-header-bg-color: $neutral-lighter !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 2px !default;
94
94
  $ribbon-menu-blank-icon-padding: 30px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 4px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 4px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 16px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 45px;
160
164
 
161
165
  $ribbon-header-bg-color: $neutral-white !default;
162
166
  $ribbon-border-color: $neutral-quintenaryalt !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 2px !default;
94
94
  $ribbon-menu-blank-icon-padding: 26px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 4px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 4px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 12px;
98
+ $ribbon-ddb-popup-height: 24px;
97
99
 
98
100
  $ribbon-bigger-content-height: 114px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 114px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 4px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 4px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $content-bg-color-alt2 !default;
162
166
  $ribbon-border-color: unset !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: 2px !default;
94
94
  $ribbon-menu-blank-icon-padding: 26px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 4px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 4px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 12px;
98
+ $ribbon-ddb-popup-height: 24px;
97
99
 
98
100
  $ribbon-bigger-content-height: 114px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 114px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 4px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 4px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 14px;
163
+ $ribbon-bigger-ddb-popup-height: 32px;
160
164
 
161
165
  $ribbon-header-bg-color: $content-bg-color-alt2 !default;
162
166
  $ribbon-border-color: unset !default;
@@ -28,7 +28,7 @@ $ribbon-simplified-group-content-height: 40px !default;
28
28
  $ribbon-collapse-btn-padding: 4px !default;
29
29
  $ribbon-collapse-btn-height: 16px !default;
30
30
  $ribbon-collapse-btn-font-weight: 400 !default;
31
- $ribbon-collapsible-content-width: 20px !default;
31
+ $ribbon-collapsible-content-width: 25px !default;
32
32
  $ribbon-overflow-btn-content-width: 40px !default;
33
33
  $ribbon-overflow-btn-font-weight: 400 !default;
34
34
  $ribbon-overflow-btn-icon-padding: 12px 10px !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: unset !default;
94
94
  $ribbon-menu-blank-icon-padding: 30px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 2px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 2px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 16px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -108,7 +110,7 @@ $ribbon-bigger-horizontal-nav-height: 50px !default;
108
110
  $ribbon-bigger-collapse-btn-padding: 4px !default;
109
111
  $ribbon-bigger-collapse-btn-height: 16px !default;
110
112
  $ribbon-bigger-collapse-btn-font-size: 16px !default;
111
- $ribbon-bigger-collapsible-content-width: 24px !default;
113
+ $ribbon-bigger-collapsible-content-width: 28px !default;
112
114
  $ribbon-bigger-overflow-btn-content-width: 40px !default;
113
115
  $ribbon-bigger-overflow-btn-font-size: 20px !default;
114
116
  $ribbon-bigger-overflow-btn-height: 20px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 45px;
160
164
 
161
165
  $ribbon-header-bg-color: $bg-base-0 !default;
162
166
  $ribbon-border-color: $border-default !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: unset !default;
94
94
  $ribbon-menu-blank-icon-padding: 30px !default;
95
95
  $ribbon-launcher-icon-margin: 0 8px 2px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 2px 8px !default;
97
+ $ribbon-ddb-popup-font-size: 16px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 132px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 132px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 45px;
160
164
 
161
165
  $ribbon-header-bg-color: $bg-base-0 !default;
162
166
  $ribbon-border-color: $border-default !default;
@@ -12,10 +12,6 @@
12
12
  display: none;
13
13
  }
14
14
 
15
- .e-item {
16
- width: fit-content;
17
- }
18
-
19
15
  .e-ribbon-file-menu {
20
16
  position: absolute;
21
17
  line-height: $ribbon-file-menu-height;
@@ -24,6 +20,7 @@
24
20
  border-width: $ribbon-file-menu-border-width;
25
21
  font-size: $ribbon-file-menu-size;
26
22
  font-weight: $ribbon-file-menu-weight;
23
+ box-shadow: none;
27
24
 
28
25
  &.e-active {
29
26
  border-radius: $ribbon-file-menu-border-radius;
@@ -121,6 +118,12 @@
121
118
  }
122
119
  }
123
120
 
121
+ .e-hscroll.e-scroll-device {
122
+ .e-scroll-nav.e-scroll-right-nav {
123
+ box-shadow: none;
124
+ }
125
+ }
126
+
124
127
  .e-hscroll {
125
128
  padding: $ribbon-hscroll-padding;
126
129
 
@@ -130,9 +133,10 @@
130
133
  min-width: auto;
131
134
  width: auto;
132
135
  border-style: solid;
136
+ transform: none;
133
137
  border-width: $ribbon-hscroll-nav-border-width;
134
138
  border-radius: $ribbon-hscroll-nav-border-radius;
135
- z-index: 2;
139
+ z-index: 3;
136
140
 
137
141
  &.e-overlay {
138
142
  display: none;
@@ -141,6 +145,7 @@
141
145
  .e-nav-arrow {
142
146
  font-size: $ribbon-nav-arrow-size;
143
147
  height: auto;
148
+ transform: none;
144
149
  line-height: $ribbon-nav-arrow-height;
145
150
  padding: $ribbon-hscroll-nav-arrow-padding;
146
151
  width: auto;
@@ -192,6 +197,7 @@
192
197
  border: $ribbon-items-border;
193
198
  height: $ribbon-overflow-btn-height;
194
199
  margin: auto;
200
+ box-shadow: none;
195
201
 
196
202
  .e-btn-icon {
197
203
  font-size: 16px;
@@ -232,6 +238,10 @@
232
238
  overflow-y: hidden;
233
239
  }
234
240
 
241
+ .e-input-group {
242
+ margin-bottom: 0;
243
+ }
244
+
235
245
  .e-ribbon-group {
236
246
  padding-top: $ribbon-simplified-group-padding;
237
247
  height: auto;
@@ -295,6 +305,10 @@
295
305
  .e-tab-header {
296
306
  left: var(--fileMenuWidth);
297
307
  }
308
+
309
+ .e-ribbon-tab .e-hscroll.e-scroll-device {
310
+ padding-right: 30px;
311
+ }
298
312
  }
299
313
 
300
314
  &.e-rtl {
@@ -312,6 +326,10 @@
312
326
  .e-tab-header {
313
327
  right: var(--fileMenuWidth);
314
328
  }
329
+
330
+ .e-ribbon-tab .e-hscroll.e-scroll-device {
331
+ padding-left: 30px;
332
+ }
315
333
  }
316
334
  }
317
335
 
@@ -353,6 +371,8 @@
353
371
 
354
372
  .e-clear-icon {
355
373
  min-width: auto;
374
+ min-height: auto;
375
+ border-radius: unset;
356
376
  }
357
377
  }
358
378
 
@@ -430,6 +450,7 @@
430
450
  font-weight: $ribbon-items-font-weight;
431
451
  font-size: $ribbon-items-btn-size;
432
452
  text-transform: none;
453
+ box-shadow: none;
433
454
 
434
455
  &:focus {
435
456
  outline: none;
@@ -513,6 +534,7 @@
513
534
 
514
535
  .e-colorpicker-wrapper {
515
536
  border: 1px solid transparent;
537
+ border-radius: $ribbon-items-border-radius;
516
538
 
517
539
  .e-split-btn-wrapper.e-rtl .e-split-colorpicker {
518
540
  &.e-split-btn {
@@ -524,6 +546,7 @@
524
546
  .e-split-btn-wrapper {
525
547
  border: 1px solid transparent;
526
548
  border-radius: $ribbon-items-border-radius;
549
+ box-shadow: none;
527
550
 
528
551
  .e-btn {
529
552
  border-radius: 0;
@@ -659,8 +682,12 @@
659
682
 
660
683
  .e-ribbon-overflow-target {
661
684
 
662
- .e-ribbon-item > .e-input-group {
663
- margin: $ribbon-overflow-wrapper-item-margin;
685
+ .e-ribbon-item {
686
+
687
+ & > .e-input-group,
688
+ .e-ribbon-template {
689
+ margin: $ribbon-overflow-wrapper-item-margin;
690
+ }
664
691
  }
665
692
 
666
693
  .e-ribbon-item > .e-checkbox-wrapper {
@@ -675,6 +702,7 @@
675
702
  > .e-split-btn-wrapper .e-btn,
676
703
  > .e-btn {
677
704
  line-height: $ribbon-overflow-item-btn-height;
705
+ overflow: hidden;
678
706
  }
679
707
 
680
708
  >.e-split-btn-wrapper {
@@ -686,14 +714,6 @@
686
714
  width: 100%;
687
715
  justify-content: flex-start;
688
716
  }
689
-
690
- >.e-split-btn-wrapper,
691
- >.e-dropdown-btn {
692
- .e-icons.e-caret {
693
- transform: rotate(-90deg);
694
- margin-left: auto;
695
- }
696
- }
697
717
  }
698
718
 
699
719
  .e-ribbon-overflow-header {
@@ -704,6 +724,20 @@
704
724
  }
705
725
  }
706
726
 
727
+ .e-ribbon-group-overflow-ddb:not(.e-rtl) {
728
+ .e-ribbon-overflow-target .e-ribbon-item {
729
+
730
+ >.e-split-btn-wrapper,
731
+ >.e-dropdown-btn {
732
+ .e-icons.e-caret {
733
+ transform: rotate(-90deg);
734
+ padding: $ribbon-items-margin;
735
+ margin: 0 0 0 auto;
736
+ }
737
+ }
738
+ }
739
+ }
740
+
707
741
  .e-rtl.e-ribbon-group-overflow-ddb {
708
742
  .e-ribbon-overflow-target .e-ribbon-item {
709
743
 
@@ -711,8 +745,8 @@
711
745
  >.e-dropdown-btn {
712
746
  .e-icons.e-caret {
713
747
  transform: rotate(90deg);
714
- margin-right: auto;
715
- margin-left: unset;
748
+ padding: $ribbon-items-margin;
749
+ margin: 0 auto 0 0;
716
750
  }
717
751
  }
718
752
  }
@@ -742,6 +776,17 @@
742
776
  }
743
777
  }
744
778
 
779
+ .e-ribbon-control.e-dropdown-popup ul .e-item {
780
+ font-size: $ribbon-ddb-popup-font-size;
781
+ height: $ribbon-ddb-popup-height;
782
+ align-items: center;
783
+
784
+ .e-menu-icon {
785
+ font-size: 16px;
786
+ line-height: 16px;
787
+ }
788
+ }
789
+
745
790
  .e-ribbon-tooltip {
746
791
  .e-tip-content {
747
792
  padding: 4px;
@@ -789,6 +834,10 @@
789
834
  height: $ribbon-bigger-help-template-height;
790
835
  }
791
836
 
837
+ .e-hscroll {
838
+ min-height: auto;
839
+ }
840
+
792
841
  .e-tab-header {
793
842
  .e-hor-nav {
794
843
  height: $ribbon-bigger-horizontal-nav-height;
@@ -888,6 +937,10 @@
888
937
  height: auto;
889
938
  }
890
939
 
940
+ .e-input-group {
941
+ margin-bottom: 0;
942
+ }
943
+
891
944
  .e-ribbon-group-content {
892
945
  height: $ribbon-bigger-simplified-group-content-height;
893
946
  }
@@ -1011,8 +1064,12 @@
1011
1064
  .e-bigger.e-ribbon-group-overflow-ddb {
1012
1065
  .e-ribbon-overflow-target {
1013
1066
 
1014
- .e-ribbon-item > .e-input-group {
1015
- margin: $ribbon-bigger-overflow-wrapper-item-margin;
1067
+ .e-ribbon-item {
1068
+
1069
+ & > .e-input-group,
1070
+ .e-ribbon-template {
1071
+ margin: $ribbon-bigger-overflow-wrapper-item-margin;
1072
+ }
1016
1073
  }
1017
1074
 
1018
1075
  .e-ribbon-item > .e-checkbox-wrapper {
@@ -1020,6 +1077,40 @@
1020
1077
  padding: 0;
1021
1078
  }
1022
1079
  }
1080
+
1081
+ &:not(.e-rtl) {
1082
+ .e-ribbon-overflow-target .e-ribbon-item {
1083
+
1084
+ >.e-split-btn-wrapper,
1085
+ >.e-dropdown-btn {
1086
+ .e-icons.e-caret {
1087
+ padding: $ribbon-bigger-items-margin;
1088
+ }
1089
+ }
1090
+ }
1091
+ }
1092
+
1093
+ &.e-rtl {
1094
+ .e-ribbon-overflow-target .e-ribbon-item {
1095
+
1096
+ >.e-split-btn-wrapper,
1097
+ >.e-dropdown-btn {
1098
+ .e-icons.e-caret {
1099
+ padding: $ribbon-bigger-items-margin;
1100
+ }
1101
+ }
1102
+ }
1103
+ }
1104
+ }
1105
+
1106
+ .e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
1107
+ font-size: $ribbon-bigger-ddb-popup-font-size;
1108
+ height: $ribbon-bigger-ddb-popup-height;
1109
+
1110
+ .e-menu-icon {
1111
+ font-size: 20px;
1112
+ line-height: 20px;
1113
+ }
1023
1114
  }
1024
1115
 
1025
1116
  .e-bigger .e-ribbon-menu.e-menu-wrapper ul.e-vertical,
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: unset !default;
94
94
  $ribbon-menu-blank-icon-padding: 34px !default;
95
95
  $ribbon-launcher-icon-margin: 0 7px 2px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 2px 7px !default;
97
+ $ribbon-ddb-popup-font-size: 14px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 120px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 120px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 48px;
160
164
 
161
165
  $ribbon-header-bg-color: $grey-900 !default;
162
166
  $ribbon-border-color: $grey-600 !default;
@@ -94,6 +94,8 @@ $ribbon-menu-border-radius: unset !default;
94
94
  $ribbon-menu-blank-icon-padding: 34px !default;
95
95
  $ribbon-launcher-icon-margin: 0 7px 2px 0 !default;
96
96
  $ribbon-rtl-launcher-icon-margin: 0 0 2px 7px !default;
97
+ $ribbon-ddb-popup-font-size: 14px;
98
+ $ribbon-ddb-popup-height: 36px;
97
99
 
98
100
  $ribbon-bigger-content-height: 120px !default;
99
101
  $ribbon-bigger-group-overflow-content-height: 120px !default;
@@ -157,6 +159,8 @@ $ribbon-bigger-color-picker-height: 20px !default;
157
159
  $ribbon-bigger-color-picker-width: 20px !default;
158
160
  $ribbon-bigger-launcher-icon-margin: 0 8px 8px 0 !default;
159
161
  $ribbon-bigger-rtl-launcher-icon-margin: 0 0 8px 8px !default;
162
+ $ribbon-bigger-ddb-popup-font-size: 16px;
163
+ $ribbon-bigger-ddb-popup-height: 48px;
160
164
 
161
165
  $ribbon-header-bg-color: $grey-50 !default;
162
166
  $ribbon-border-color: $grey-300 !default;
@@ -0,0 +1 @@
1
+ @import './material3-definition.scss';