@syncfusion/ej2-ribbon 25.2.5 → 26.1.35
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 +3 -2
- package/dist/ej2-ribbon.umd.min.js +2 -2
- package/dist/ej2-ribbon.umd.min.js.map +1 -1
- package/dist/es6/ej2-ribbon.es2015.js +821 -592
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +812 -577
- package/dist/es6/ej2-ribbon.es5.js.map +1 -1
- package/dist/global/ej2-ribbon.min.js +2 -2
- package/dist/global/ej2-ribbon.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/ribbon/base/interface.d.ts +14 -0
- package/src/ribbon/base/ribbon-model.d.ts +1 -1
- package/src/ribbon/base/ribbon.d.ts +3 -1
- package/src/ribbon/base/ribbon.js +195 -94
- package/src/ribbon/items/ribbon-button.js +6 -1
- package/src/ribbon/items/ribbon-gallery.d.ts +15 -6
- package/src/ribbon/items/ribbon-gallery.js +164 -96
- package/src/ribbon/items/ribbon-groupbutton.d.ts +1 -0
- package/src/ribbon/items/ribbon-groupbutton.js +11 -3
- package/src/ribbon/models/ribbon-contextual-tab-settings-model.d.ts +1 -1
- package/src/ribbon/models/ribbon-gallery-group-model.d.ts +5 -5
- package/src/ribbon/models/ribbon-gallery-group.d.ts +2 -2
- package/src/ribbon/models/ribbon-gallery-group.js +2 -2
- package/src/ribbon/models/ribbon-gallery-item-model.d.ts +5 -5
- package/src/ribbon/models/ribbon-gallery-item.d.ts +1 -1
- package/src/ribbon/models/ribbon-gallery-item.js +1 -1
- package/src/ribbon/models/ribbon-gallery-settings-model.d.ts +1 -1
- package/src/ribbon/models/ribbon-gallery-settings.d.ts +3 -3
- package/src/ribbon/models/ribbon-gallery-settings.js +2 -2
- package/src/ribbon/modules/ribbon-backstage.d.ts +6 -3
- package/src/ribbon/modules/ribbon-backstage.js +65 -12
- package/src/ribbon/modules/ribbon-contextualtab.js +5 -2
- package/src/ribbon/modules/ribbon-keytip.d.ts +1 -0
- package/src/ribbon/modules/ribbon-keytip.js +58 -46
- package/styles/bootstrap-dark.css +452 -269
- package/styles/bootstrap-dark.scss +18 -1
- package/styles/bootstrap.css +456 -276
- package/styles/bootstrap.scss +18 -1
- package/styles/bootstrap4.css +455 -272
- package/styles/bootstrap4.scss +18 -1
- package/styles/bootstrap5-dark.css +470 -278
- package/styles/bootstrap5-dark.scss +18 -1
- package/styles/bootstrap5.css +470 -278
- package/styles/bootstrap5.scss +18 -1
- package/styles/fabric-dark.css +451 -269
- package/styles/fabric-dark.scss +18 -1
- package/styles/fabric.css +450 -272
- package/styles/fabric.scss +18 -1
- package/styles/fluent-dark.css +472 -277
- package/styles/fluent-dark.scss +18 -1
- package/styles/fluent.css +472 -277
- package/styles/fluent.scss +18 -1
- package/styles/fluent2.css +3868 -0
- package/styles/fluent2.scss +18 -0
- package/styles/highcontrast-light.css +445 -263
- package/styles/highcontrast-light.scss +17 -1
- package/styles/highcontrast.css +451 -273
- package/styles/highcontrast.scss +18 -1
- package/styles/material-dark.css +540 -283
- package/styles/material-dark.scss +18 -1
- package/styles/material.css +539 -289
- package/styles/material.scss +18 -1
- package/styles/material3-dark.css +496 -280
- package/styles/material3-dark.scss +18 -1
- package/styles/material3.css +496 -280
- package/styles/material3.scss +18 -1
- package/styles/ribbon/_bds-definition.scss +56 -20
- package/styles/ribbon/_bootstrap-dark-definition.scss +56 -20
- package/styles/ribbon/_bootstrap-definition.scss +57 -21
- package/styles/ribbon/_bootstrap4-definition.scss +57 -21
- package/styles/ribbon/_bootstrap5-definition.scss +57 -21
- package/styles/ribbon/_bootstrap5.3-definition.scss +396 -0
- package/styles/ribbon/_fabric-dark-definition.scss +55 -19
- package/styles/ribbon/_fabric-definition.scss +56 -20
- package/styles/ribbon/_fluent-definition.scss +59 -23
- package/styles/ribbon/_fluent2-definition.scss +396 -0
- package/styles/ribbon/_fusionnew-definition.scss +50 -14
- package/styles/ribbon/_highcontrast-definition.scss +58 -22
- package/styles/ribbon/_highcontrast-light-definition.scss +49 -13
- package/styles/ribbon/_layout.scss +359 -399
- package/styles/ribbon/_material-dark-definition.scss +56 -20
- package/styles/ribbon/_material-definition.scss +56 -20
- package/styles/ribbon/_material3-definition.scss +56 -19
- package/styles/ribbon/_tailwind-definition.scss +56 -20
- package/styles/ribbon/_theme.scss +118 -170
- package/styles/ribbon/bootstrap-dark.css +452 -269
- package/styles/ribbon/bootstrap.css +456 -276
- package/styles/ribbon/bootstrap4.css +455 -272
- package/styles/ribbon/bootstrap5-dark.css +470 -278
- package/styles/ribbon/bootstrap5.css +470 -278
- package/styles/ribbon/fabric-dark.css +451 -269
- package/styles/ribbon/fabric.css +450 -272
- package/styles/ribbon/fluent-dark.css +472 -277
- package/styles/ribbon/fluent.css +472 -277
- package/styles/ribbon/fluent2.css +3868 -0
- package/styles/ribbon/fluent2.scss +18 -0
- package/styles/ribbon/highcontrast-light.css +445 -263
- package/styles/ribbon/highcontrast.css +451 -273
- package/styles/ribbon/icons/_bootstrap5.3.scss +9 -0
- package/styles/ribbon/icons/_fluent2.scss +9 -0
- package/styles/ribbon/material-dark.css +540 -283
- package/styles/ribbon/material.css +539 -289
- package/styles/ribbon/material3-dark.css +496 -280
- package/styles/ribbon/material3.css +496 -280
- package/styles/ribbon/tailwind-dark.css +506 -280
- package/styles/ribbon/tailwind.css +506 -280
- package/styles/tailwind-dark.css +506 -280
- package/styles/tailwind-dark.scss +18 -1
- package/styles/tailwind.css +506 -280
- package/styles/tailwind.scss +18 -1
- package/CHANGELOG.md +0 -101
|
@@ -1,6 +1,56 @@
|
|
|
1
|
+
@mixin ribbon-backstage-border($width) {
|
|
2
|
+
border-style: solid;
|
|
3
|
+
border-width: $width;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@mixin ribbon-tab-text-height($height) {
|
|
7
|
+
.e-toolbar-item .e-tab-wrap:focus .e-text-wrap {
|
|
8
|
+
height: $height;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@mixin ribbon-item-padding($btn-padding, $icon-padding) {
|
|
13
|
+
&.e-ribbon-small-item,
|
|
14
|
+
&.e-ribbon-medium-item {
|
|
15
|
+
.e-btn {
|
|
16
|
+
&:not(.e-icon-btn, .e-dropdown-btn) {
|
|
17
|
+
padding: $btn-padding;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.e-ribbon-medium-item {
|
|
23
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
24
|
+
padding: $icon-padding;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@mixin ribbon-font-styles($font-size, $font-weight, $line-height) {
|
|
30
|
+
font-size: $font-size;
|
|
31
|
+
font-weight: $font-weight;
|
|
32
|
+
line-height: $line-height;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@mixin ribbon-font-props($font-size, $line-height) {
|
|
36
|
+
font-size: $font-size;
|
|
37
|
+
line-height: $line-height;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@mixin ribbon-items-height($height, $min-height) {
|
|
41
|
+
height: $height;
|
|
42
|
+
min-height: $min-height;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@mixin ribbon-display($rb-display, $rb-flex-direction) {
|
|
46
|
+
display: $rb-display;
|
|
47
|
+
flex-direction: $rb-flex-direction;
|
|
48
|
+
}
|
|
49
|
+
|
|
1
50
|
@include export-module('ribbon-layout') {
|
|
2
51
|
.e-ribbon.e-rbn {
|
|
3
52
|
display: block;
|
|
53
|
+
border-radius: $ribbon-border-radius;
|
|
4
54
|
|
|
5
55
|
.e-ribbon-tab {
|
|
6
56
|
.e-toolbar {
|
|
@@ -14,13 +64,11 @@
|
|
|
14
64
|
|
|
15
65
|
.e-ribbon-file-menu,
|
|
16
66
|
.e-ribbon-backstage {
|
|
67
|
+
@include ribbon-font-styles($ribbon-file-menu-size, $ribbon-file-menu-weight, $ribbon-file-menu-height);
|
|
17
68
|
position: absolute;
|
|
18
|
-
line-height: $ribbon-file-menu-height;
|
|
19
69
|
padding: $ribbon-file-menu-padding;
|
|
20
70
|
border: $ribbon-file-menu-border;
|
|
21
71
|
border-width: $ribbon-file-menu-border-width;
|
|
22
|
-
font-size: $ribbon-file-menu-size;
|
|
23
|
-
font-weight: $ribbon-file-menu-weight;
|
|
24
72
|
box-shadow: none;
|
|
25
73
|
text-transform: none;
|
|
26
74
|
|
|
@@ -49,8 +97,7 @@
|
|
|
49
97
|
border-bottom: $ribbon-tab-border;
|
|
50
98
|
|
|
51
99
|
.e-hor-nav {
|
|
52
|
-
height
|
|
53
|
-
min-height: $ribbon-horizontal-nav-height;
|
|
100
|
+
@include ribbon-items-height($ribbon-horizontal-nav-height, $ribbon-horizontal-nav-height);
|
|
54
101
|
}
|
|
55
102
|
|
|
56
103
|
&::before {
|
|
@@ -63,11 +110,9 @@
|
|
|
63
110
|
}
|
|
64
111
|
|
|
65
112
|
.e-toolbar-items {
|
|
66
|
-
|
|
67
|
-
height: $ribbon-toolbar-items-height;
|
|
113
|
+
@include ribbon-items-height($ribbon-toolbar-items-height, auto);
|
|
68
114
|
|
|
69
115
|
&:not(.e-tbar-pos) {
|
|
70
|
-
|
|
71
116
|
.e-toolbar-item:first-child,
|
|
72
117
|
.e-toolbar-item:last-child {
|
|
73
118
|
margin: 0;
|
|
@@ -79,6 +124,11 @@
|
|
|
79
124
|
vertical-align: unset;
|
|
80
125
|
margin: 0;
|
|
81
126
|
border: none;
|
|
127
|
+
border-radius: $ribbon-tab-border-radius;
|
|
128
|
+
|
|
129
|
+
&:not(.e-separator) {
|
|
130
|
+
@include ribbon-items-height(auto, auto);
|
|
131
|
+
}
|
|
82
132
|
|
|
83
133
|
&.e-active {
|
|
84
134
|
border: none;
|
|
@@ -95,12 +145,10 @@
|
|
|
95
145
|
}
|
|
96
146
|
|
|
97
147
|
.e-tab-text {
|
|
148
|
+
@include ribbon-font-styles($ribbon-tab-text-size, $ribbon-tab-text-weight, $ribbon-tab-text-height);
|
|
98
149
|
padding: $ribbon-tab-text-padding;
|
|
99
|
-
line-height: $ribbon-tab-text-height;
|
|
100
150
|
text-transform: none;
|
|
101
151
|
margin: 0;
|
|
102
|
-
font-size: $ribbon-tab-text-size;
|
|
103
|
-
font-weight: $ribbon-tab-text-weight;
|
|
104
152
|
}
|
|
105
153
|
|
|
106
154
|
.e-text-wrap {
|
|
@@ -111,27 +159,22 @@
|
|
|
111
159
|
&::before {
|
|
112
160
|
display: none;
|
|
113
161
|
}
|
|
162
|
+
.e-tab-text {
|
|
163
|
+
font-weight: $ribbon-active-tab-text-weight;
|
|
164
|
+
}
|
|
114
165
|
}
|
|
115
166
|
}
|
|
116
|
-
|
|
117
|
-
.e-toolbar-item:not(.e-separator) {
|
|
118
|
-
height: auto;
|
|
119
|
-
min-height: auto;
|
|
120
|
-
}
|
|
121
167
|
}
|
|
122
168
|
|
|
123
|
-
.e-hscroll.e-scroll-device {
|
|
124
|
-
|
|
125
|
-
box-shadow: none;
|
|
126
|
-
}
|
|
169
|
+
.e-hscroll.e-scroll-device .e-scroll-nav.e-scroll-right-nav {
|
|
170
|
+
box-shadow: none;
|
|
127
171
|
}
|
|
128
172
|
|
|
129
173
|
.e-hscroll {
|
|
130
174
|
padding: $ribbon-hscroll-padding;
|
|
131
175
|
|
|
132
176
|
.e-scroll-nav {
|
|
133
|
-
height
|
|
134
|
-
min-height: auto;
|
|
177
|
+
@include ribbon-items-height(auto, auto);
|
|
135
178
|
min-width: auto;
|
|
136
179
|
width: auto;
|
|
137
180
|
border-style: solid;
|
|
@@ -145,33 +188,26 @@
|
|
|
145
188
|
}
|
|
146
189
|
|
|
147
190
|
.e-nav-arrow {
|
|
148
|
-
font-size
|
|
191
|
+
@include ribbon-font-styles($ribbon-nav-arrow-size, $ribbon-hscroll-nav-arrow-weight, $ribbon-nav-arrow-height);
|
|
149
192
|
height: auto;
|
|
150
193
|
transform: none;
|
|
151
|
-
line-height: $ribbon-nav-arrow-height;
|
|
152
194
|
padding: $ribbon-hscroll-nav-arrow-padding;
|
|
153
195
|
width: auto;
|
|
154
196
|
letter-spacing: unset;
|
|
155
|
-
font-weight: $ribbon-hscroll-nav-arrow-weight;
|
|
156
197
|
}
|
|
157
198
|
|
|
158
199
|
.e-nav-arrow::before {
|
|
159
|
-
font-size
|
|
160
|
-
line-height: $ribbon-nav-arrow-height;
|
|
200
|
+
@include ribbon-font-props($ribbon-nav-arrow-size, $ribbon-nav-arrow-height);
|
|
161
201
|
}
|
|
162
202
|
}
|
|
163
203
|
}
|
|
164
204
|
|
|
165
205
|
&.e-focused .e-tab-header {
|
|
166
|
-
|
|
167
|
-
height: $ribbon-toolbar-items-height;
|
|
168
|
-
}
|
|
206
|
+
@include ribbon-tab-text-height($ribbon-toolbar-items-height);
|
|
169
207
|
}
|
|
170
208
|
|
|
171
209
|
.e-tab-header {
|
|
172
|
-
|
|
173
|
-
height: auto;
|
|
174
|
-
}
|
|
210
|
+
@include ribbon-tab-text-height(auto);
|
|
175
211
|
}
|
|
176
212
|
}
|
|
177
213
|
|
|
@@ -233,15 +269,15 @@
|
|
|
233
269
|
.e-ribbon-overall-of-btn {
|
|
234
270
|
bottom: $ribbon-overall-overflow-btn-position;
|
|
235
271
|
position: absolute;
|
|
272
|
+
|
|
273
|
+
&.e-ribbon-hide {
|
|
274
|
+
display: none;
|
|
275
|
+
}
|
|
236
276
|
}
|
|
237
277
|
|
|
238
278
|
.e-ribbon-group-container {
|
|
239
279
|
display: inline-flex;
|
|
240
280
|
}
|
|
241
|
-
|
|
242
|
-
.e-ribbon-overall-of-btn.e-ribbon-hide {
|
|
243
|
-
display: none;
|
|
244
|
-
}
|
|
245
281
|
}
|
|
246
282
|
|
|
247
283
|
&.e-ribbon-minimize .e-ribbon-tab .e-content,
|
|
@@ -251,14 +287,19 @@
|
|
|
251
287
|
}
|
|
252
288
|
|
|
253
289
|
&.e-ribbon-simplified-mode {
|
|
254
|
-
|
|
290
|
+
.e-ribbon-item {
|
|
291
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
292
|
+
height: $ribbon-gallery-simplified-wrapper-height;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
255
295
|
.e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
256
|
-
|
|
296
|
+
margin: $ribbon-simplified-wrapper-margin;
|
|
297
|
+
|
|
257
298
|
.e-ribbon-gallery-container {
|
|
258
299
|
.e-ribbon-gallery-item {
|
|
259
|
-
padding: $ribbon-gallery-simplified-items-padding;
|
|
260
300
|
width: $ribbon-gallery-simplified-items-width;
|
|
261
|
-
margin:
|
|
301
|
+
margin: $ribbon-simplified-wrapper-item-margin;
|
|
302
|
+
border-radius: $ribbon-simplified-wrapper-item-border-radius;
|
|
262
303
|
max-height: $ribbon-gallery-simplified-items-wrapper-height;
|
|
263
304
|
&.e-disabled {
|
|
264
305
|
pointer-events: none;
|
|
@@ -348,11 +389,8 @@
|
|
|
348
389
|
right: 0;
|
|
349
390
|
}
|
|
350
391
|
|
|
351
|
-
&.e-ribbon-collapsible {
|
|
352
|
-
|
|
353
|
-
.e-ribbon-overall-of-btn {
|
|
354
|
-
right: $ribbon-overflow-collapse-btn-right;
|
|
355
|
-
}
|
|
392
|
+
&.e-ribbon-collapsible .e-ribbon-overall-of-btn {
|
|
393
|
+
right: $ribbon-overflow-collapse-btn-right;
|
|
356
394
|
}
|
|
357
395
|
|
|
358
396
|
.e-tab-header {
|
|
@@ -376,11 +414,8 @@
|
|
|
376
414
|
left: 0;
|
|
377
415
|
}
|
|
378
416
|
|
|
379
|
-
&.e-ribbon-collapsible {
|
|
380
|
-
|
|
381
|
-
.e-ribbon-overall-of-btn {
|
|
382
|
-
left: $ribbon-overflow-collapse-btn-right;
|
|
383
|
-
}
|
|
417
|
+
&.e-ribbon-collapsible .e-ribbon-overall-of-btn {
|
|
418
|
+
left: $ribbon-overflow-collapse-btn-right;
|
|
384
419
|
}
|
|
385
420
|
|
|
386
421
|
.e-tab-header {
|
|
@@ -393,18 +428,16 @@
|
|
|
393
428
|
}
|
|
394
429
|
}
|
|
395
430
|
|
|
396
|
-
.e-ribbon-backstage-popup.e-ribbon-backstage-open {
|
|
397
|
-
display: flex;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
431
|
.e-ribbon-backstage-popup {
|
|
401
|
-
|
|
432
|
+
&.e-ribbon-backstage-open {
|
|
402
433
|
display: flex;
|
|
403
|
-
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.e-ribbon-backstage-wrapper {
|
|
437
|
+
@include ribbon-display(flex, column);
|
|
404
438
|
|
|
405
439
|
.e-ribbon-backstage-items-wrapper {
|
|
406
|
-
display
|
|
407
|
-
flex-direction: column;
|
|
440
|
+
@include ribbon-display(flex, column);
|
|
408
441
|
justify-content: space-between;
|
|
409
442
|
height: 100%;
|
|
410
443
|
}
|
|
@@ -420,26 +453,22 @@
|
|
|
420
453
|
line-height: $ribbon-backstage-btn-line-height;
|
|
421
454
|
|
|
422
455
|
.e-btn-icon {
|
|
456
|
+
@include ribbon-font-props($ribbon-backstage-btn-icon-font-size, $ribbon-backstage-btn-icon-line-height);
|
|
423
457
|
width: auto;
|
|
424
458
|
margin: 0;
|
|
425
|
-
font-size: $ribbon-backstage-btn-icon-font-size;
|
|
426
|
-
line-height: $ribbon-backstage-btn-icon-line-height;
|
|
427
459
|
padding: $ribbon-backstage-btn-icon-padding;
|
|
428
460
|
}
|
|
429
461
|
|
|
430
462
|
&:focus {
|
|
431
|
-
border-
|
|
432
|
-
border-width: $ribbon-backstage-btn-focus-border;
|
|
463
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-focus-border);
|
|
433
464
|
}
|
|
434
465
|
|
|
435
466
|
&:hover {
|
|
436
|
-
border-
|
|
437
|
-
border-width: $ribbon-backstage-btn-hover-border;
|
|
467
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-hover-border);
|
|
438
468
|
}
|
|
439
469
|
|
|
440
470
|
&:focus:hover {
|
|
441
|
-
border-
|
|
442
|
-
border-width: $ribbon-backstage-btn-focus-border;
|
|
471
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-focus-border);
|
|
443
472
|
}
|
|
444
473
|
}
|
|
445
474
|
|
|
@@ -451,10 +480,8 @@
|
|
|
451
480
|
&.e-menu-wrapper ul.e-ul {
|
|
452
481
|
min-width: 135px;
|
|
453
482
|
|
|
454
|
-
&.e-menu .e-menu-item {
|
|
455
|
-
|
|
456
|
-
margin: 4px 20px;
|
|
457
|
-
}
|
|
483
|
+
&.e-menu .e-menu-item.e-separator {
|
|
484
|
+
margin: 4px 20px;
|
|
458
485
|
}
|
|
459
486
|
|
|
460
487
|
.e-menu-item:not(.e-separator) {
|
|
@@ -463,26 +490,22 @@
|
|
|
463
490
|
padding: 0;
|
|
464
491
|
|
|
465
492
|
&:focus {
|
|
466
|
-
border-
|
|
467
|
-
border-width: $ribbon-backstage-menu-hover-border;
|
|
493
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-hover-border);
|
|
468
494
|
}
|
|
469
495
|
|
|
470
496
|
&.e-selected,
|
|
471
497
|
&:hover {
|
|
472
|
-
border-
|
|
473
|
-
border-width: $ribbon-backstage-menu-active-border;
|
|
498
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-active-border);
|
|
474
499
|
}
|
|
475
500
|
|
|
476
501
|
&.e-selected:focus {
|
|
477
|
-
border-
|
|
478
|
-
border-width: $ribbon-backstage-menu-hover-border;
|
|
502
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-hover-border);
|
|
479
503
|
}
|
|
480
504
|
|
|
481
505
|
.e-menu-icon {
|
|
506
|
+
@include ribbon-font-props($ribbon-backstage-menu-icon-font-size, $ribbon-backstage-menu-icon-line-height);
|
|
482
507
|
width: auto;
|
|
483
508
|
margin-right: unset;
|
|
484
|
-
font-size: $ribbon-backstage-menu-icon-font-size;
|
|
485
|
-
line-height: $ribbon-backstage-menu-icon-line-height;
|
|
486
509
|
padding: $ribbon-backstage-menu-icon-padding;
|
|
487
510
|
}
|
|
488
511
|
|
|
@@ -511,31 +534,29 @@
|
|
|
511
534
|
.e-ribbon-group-overflow-ddb {
|
|
512
535
|
border: $ribbon-border;
|
|
513
536
|
|
|
537
|
+
.e-disabled {
|
|
538
|
+
opacity: $ribbon-disabled-opacity;
|
|
539
|
+
}
|
|
540
|
+
|
|
514
541
|
.e-input-group {
|
|
515
542
|
height: $ribbon-input-group-height;
|
|
516
543
|
border-radius: $ribbon-input-group-border-radius;
|
|
517
|
-
margin
|
|
544
|
+
margin: $ribbon-input-group-margin;
|
|
518
545
|
|
|
519
546
|
input.e-input {
|
|
547
|
+
@include ribbon-font-styles($ribbon-input-size, $ribbon-input-weight, $ribbon-input-height);
|
|
548
|
+
@include ribbon-items-height(auto, auto);
|
|
520
549
|
padding: $ribbon-input-padding;
|
|
521
|
-
font-size: $ribbon-input-size;
|
|
522
|
-
line-height: $ribbon-input-height;
|
|
523
|
-
font-weight: $ribbon-input-weight;
|
|
524
|
-
height: auto;
|
|
525
|
-
min-height: auto;
|
|
526
550
|
}
|
|
527
551
|
|
|
528
552
|
&.e-control-wrapper {
|
|
529
553
|
.e-input-group-icon {
|
|
530
|
-
font-size
|
|
531
|
-
|
|
532
|
-
height: auto;
|
|
554
|
+
@include ribbon-font-styles($ribbon-input-icon-size, $ribbon-input-icon-weight, $ribbon-input-icon-height);
|
|
555
|
+
@include ribbon-items-height(auto, auto);
|
|
533
556
|
padding: $ribbon-input-icon-padding;
|
|
534
557
|
margin: 0;
|
|
535
|
-
font-weight: $ribbon-input-icon-weight;
|
|
536
558
|
border: none;
|
|
537
559
|
min-width: auto;
|
|
538
|
-
min-height: auto;
|
|
539
560
|
border-radius: unset;
|
|
540
561
|
|
|
541
562
|
&.e-ddl-icon {
|
|
@@ -564,13 +585,12 @@
|
|
|
564
585
|
}
|
|
565
586
|
|
|
566
587
|
.e-ribbon-group-header {
|
|
588
|
+
@include ribbon-font-props($ribbon-group-header-font-size, $ribbon-group-header-height);
|
|
567
589
|
align-items: center;
|
|
568
590
|
display: flex;
|
|
569
591
|
justify-content: center;
|
|
570
592
|
white-space: nowrap;
|
|
571
593
|
padding: $ribbon-group-header-padding;
|
|
572
|
-
line-height: $ribbon-group-header-height;
|
|
573
|
-
font-size: $ribbon-group-header-font-size;
|
|
574
594
|
}
|
|
575
595
|
|
|
576
596
|
.e-ribbon-launcher-icon {
|
|
@@ -603,13 +623,11 @@
|
|
|
603
623
|
}
|
|
604
624
|
|
|
605
625
|
.e-ribbon-column {
|
|
606
|
-
display
|
|
607
|
-
flex-direction: row;
|
|
626
|
+
@include ribbon-display(inline-flex, row);
|
|
608
627
|
}
|
|
609
628
|
|
|
610
629
|
.e-ribbon-row {
|
|
611
|
-
display
|
|
612
|
-
flex-direction: column;
|
|
630
|
+
@include ribbon-display(inline-flex, column);
|
|
613
631
|
}
|
|
614
632
|
|
|
615
633
|
.e-ribbon-group-overflow,
|
|
@@ -619,19 +637,23 @@
|
|
|
619
637
|
vertical-align: middle;
|
|
620
638
|
|
|
621
639
|
.e-ribbon-gallery-wrapper {
|
|
622
|
-
height: $ribbon-gallery-wrapper-height;
|
|
623
640
|
display: flex;
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
641
|
+
margin: $ribbon-wrapper-margin;
|
|
642
|
+
|
|
643
|
+
.e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
644
|
+
max-height: $ribbon-gallery-items-wrapper-height;
|
|
645
|
+
margin: $ribbon-wrapper-item-margin;
|
|
646
|
+
border-radius: $ribbon-wrapper-item-border-radius;
|
|
628
647
|
}
|
|
629
648
|
}
|
|
630
649
|
|
|
631
650
|
.e-ribbon-gallery-button {
|
|
632
|
-
padding:
|
|
651
|
+
padding: $ribbon-gallery-button-icon-padding;
|
|
633
652
|
border-width: 0 0 0 1px;
|
|
634
653
|
border-radius: 0 4px 4px 0;
|
|
654
|
+
line-height: $ribbon-gallery-button-icon-line-height;
|
|
655
|
+
font-weight: $ribbon-gallery-button-icon-font-weight;
|
|
656
|
+
font-size: $ribbon-gallery-button-icon-font-size;
|
|
635
657
|
}
|
|
636
658
|
|
|
637
659
|
&.e-hidden {
|
|
@@ -658,15 +680,13 @@
|
|
|
658
680
|
|
|
659
681
|
&.e-ribbon-large-item {
|
|
660
682
|
.e-btn {
|
|
683
|
+
@include ribbon-items-height(100%, inherit);
|
|
684
|
+
@include ribbon-display(flex, column);
|
|
661
685
|
max-width: $ribbon-large-items-max-width;
|
|
662
|
-
min-height: inherit;
|
|
663
686
|
min-width: fit-content;
|
|
664
687
|
white-space: normal;
|
|
665
688
|
padding: $ribbon-large-items-btn-padding;
|
|
666
689
|
line-height: $ribbon-large-items-btn-height;
|
|
667
|
-
height: 100%;
|
|
668
|
-
display: flex;
|
|
669
|
-
flex-direction: column;
|
|
670
690
|
justify-content: flex-start;
|
|
671
691
|
align-items: center;
|
|
672
692
|
|
|
@@ -692,15 +712,16 @@
|
|
|
692
712
|
& > .e-split-btn-wrapper.e-vertical .e-btn {
|
|
693
713
|
justify-content: space-evenly;
|
|
694
714
|
height: 50%;
|
|
695
|
-
}
|
|
696
715
|
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
font-size: $ribbon-dropdown-caret-btn-size;
|
|
700
|
-
padding: $ribbon-overflow-dropdown-btn-padding;
|
|
701
|
-
line-height: $ribbon-dropdown-caret-btn-height;
|
|
716
|
+
.e-icon-top {
|
|
717
|
+
height: 100%;
|
|
702
718
|
}
|
|
703
719
|
}
|
|
720
|
+
|
|
721
|
+
.e-dropdown-btn .e-caret {
|
|
722
|
+
@include ribbon-font-props($ribbon-dropdown-caret-btn-size, $ribbon-dropdown-caret-btn-height);
|
|
723
|
+
padding: $ribbon-overflow-dropdown-btn-padding;
|
|
724
|
+
}
|
|
704
725
|
}
|
|
705
726
|
}
|
|
706
727
|
|
|
@@ -717,7 +738,10 @@
|
|
|
717
738
|
padding: 0;
|
|
718
739
|
border-style: solid;
|
|
719
740
|
border-width: 1px;
|
|
720
|
-
|
|
741
|
+
}
|
|
742
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
743
|
+
height: $ribbon-gallery-wrapper-height;
|
|
744
|
+
border-radius: $ribbon-wrapper-border-radius;
|
|
721
745
|
}
|
|
722
746
|
|
|
723
747
|
.e-btn-group {
|
|
@@ -725,6 +749,9 @@
|
|
|
725
749
|
}
|
|
726
750
|
|
|
727
751
|
.e-checkbox-wrapper {
|
|
752
|
+
height: fit-content;
|
|
753
|
+
margin: auto 0;
|
|
754
|
+
width: max-content;
|
|
728
755
|
padding: $ribbon-items-checkbox-padding;
|
|
729
756
|
|
|
730
757
|
.e-label {
|
|
@@ -740,20 +767,12 @@
|
|
|
740
767
|
}
|
|
741
768
|
}
|
|
742
769
|
|
|
743
|
-
.e-checkbox-wrapper {
|
|
744
|
-
height: fit-content;
|
|
745
|
-
margin: auto 0;
|
|
746
|
-
width: max-content;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
770
|
.e-colorpicker-wrapper {
|
|
750
771
|
border: 1px solid transparent;
|
|
751
772
|
border-radius: $ribbon-items-border-radius;
|
|
752
773
|
|
|
753
|
-
.e-split-btn-wrapper.e-rtl .e-split-colorpicker {
|
|
754
|
-
|
|
755
|
-
padding: 0;
|
|
756
|
-
}
|
|
774
|
+
.e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
775
|
+
padding: 0;
|
|
757
776
|
}
|
|
758
777
|
}
|
|
759
778
|
|
|
@@ -788,12 +807,11 @@
|
|
|
788
807
|
&.e-ribbon-medium-item {
|
|
789
808
|
.e-btn {
|
|
790
809
|
white-space: nowrap;
|
|
791
|
-
padding:
|
|
810
|
+
padding: 0;
|
|
792
811
|
line-height: $ribbon-items-height;
|
|
793
812
|
|
|
794
813
|
.e-btn-icon {
|
|
795
|
-
font-
|
|
796
|
-
line-height: 16px;
|
|
814
|
+
@include ribbon-font-props(16px, 16px);
|
|
797
815
|
margin: $ribbon-items-margin;
|
|
798
816
|
}
|
|
799
817
|
}
|
|
@@ -814,9 +832,8 @@
|
|
|
814
832
|
}
|
|
815
833
|
|
|
816
834
|
.e-dropdown-btn .e-caret {
|
|
817
|
-
font-size
|
|
835
|
+
@include ribbon-font-props($ribbon-dropdown-caret-btn-size, $ribbon-dropdown-caret-btn-height);
|
|
818
836
|
padding: $ribbon-dropdown-caret-btn-padding;
|
|
819
|
-
line-height: $ribbon-dropdown-caret-btn-height;
|
|
820
837
|
margin: 0;
|
|
821
838
|
width: auto;
|
|
822
839
|
}
|
|
@@ -843,49 +860,12 @@
|
|
|
843
860
|
}
|
|
844
861
|
}
|
|
845
862
|
|
|
846
|
-
.e-ribbon-vertical-center:not(.e-ribbon-large-item) {
|
|
847
|
-
margin-bottom: auto;
|
|
848
|
-
margin-top: auto;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
863
|
&:not(.e-rtl) .e-ribbon-item {
|
|
852
|
-
|
|
853
|
-
&.e-ribbon-small-item,
|
|
854
|
-
&.e-ribbon-medium-item {
|
|
855
|
-
.e-btn {
|
|
856
|
-
&:not(.e-icon-btn, .e-dropdown-btn) {
|
|
857
|
-
padding: 0 4px 0 0;
|
|
858
|
-
}
|
|
859
|
-
}
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
&.e-ribbon-medium-item {
|
|
863
|
-
.e-btn {
|
|
864
|
-
.e-btn-icon.e-icon-left {
|
|
865
|
-
padding: 0 2px 0 0;
|
|
866
|
-
}
|
|
867
|
-
}
|
|
868
|
-
}
|
|
864
|
+
@include ribbon-item-padding(0 4px 0 0, 0 2px 0 0);
|
|
869
865
|
}
|
|
870
866
|
|
|
871
867
|
&.e-rtl .e-ribbon-item {
|
|
872
|
-
|
|
873
|
-
&.e-ribbon-small-item,
|
|
874
|
-
&.e-ribbon-medium-item {
|
|
875
|
-
.e-btn {
|
|
876
|
-
&:not(.e-icon-btn, .e-dropdown-btn) {
|
|
877
|
-
padding: 0 0 0 4px;
|
|
878
|
-
}
|
|
879
|
-
}
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
&.e-ribbon-medium-item {
|
|
883
|
-
.e-btn {
|
|
884
|
-
.e-btn-icon.e-icon-left {
|
|
885
|
-
padding: 0 0 0 2px;
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
}
|
|
868
|
+
@include ribbon-item-padding(0 0 0 4px, 0 0 0 2px);
|
|
889
869
|
}
|
|
890
870
|
}
|
|
891
871
|
|
|
@@ -898,7 +878,6 @@
|
|
|
898
878
|
}
|
|
899
879
|
|
|
900
880
|
.e-ribbon-overflow-target {
|
|
901
|
-
|
|
902
881
|
.e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
903
882
|
border: 0;
|
|
904
883
|
}
|
|
@@ -919,30 +898,19 @@
|
|
|
919
898
|
}
|
|
920
899
|
.e-ribbon-gallery-wrapper.e-hidden,
|
|
921
900
|
.e-ribbon-gallery-container.e-hidden,
|
|
922
|
-
.e-ribbon-gallery-button.e-hidden
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
901
|
+
.e-ribbon-gallery-button.e-hidden,
|
|
902
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-hidden,
|
|
903
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-hide-group,
|
|
926
904
|
&.e-hidden,
|
|
927
905
|
&.e-hide-group {
|
|
928
906
|
display: none;
|
|
929
907
|
}
|
|
930
908
|
|
|
931
|
-
&.e-disabled
|
|
909
|
+
&.e-disabled,
|
|
910
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
932
911
|
pointer-events: none;
|
|
933
912
|
}
|
|
934
913
|
|
|
935
|
-
.e-ribbon-of-tab .e-ribbon-of-group-container {
|
|
936
|
-
&.e-hidden,
|
|
937
|
-
&.e-hide-group {
|
|
938
|
-
display: none;
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
&.e-disabled {
|
|
942
|
-
pointer-events: none;
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
|
|
946
914
|
.e-ribbon-item {
|
|
947
915
|
.e-dropdown-btn .e-caret {
|
|
948
916
|
font-size: $ribbon-items-caret-icon-size;
|
|
@@ -967,10 +935,8 @@
|
|
|
967
935
|
.e-ribbon-template {
|
|
968
936
|
margin: $ribbon-overflow-wrapper-item-margin;
|
|
969
937
|
}
|
|
970
|
-
.e-btn {
|
|
971
|
-
|
|
972
|
-
font-size: $ribbon-items-btn-icon-size;
|
|
973
|
-
}
|
|
938
|
+
.e-btn .e-btn-icon {
|
|
939
|
+
font-size: $ribbon-items-btn-icon-size;
|
|
974
940
|
}
|
|
975
941
|
}
|
|
976
942
|
|
|
@@ -984,10 +950,8 @@
|
|
|
984
950
|
width: 100%;
|
|
985
951
|
height: $ribbon-medium-item-height;
|
|
986
952
|
|
|
987
|
-
.e-btn {
|
|
988
|
-
|
|
989
|
-
margin: 0;
|
|
990
|
-
}
|
|
953
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
954
|
+
margin: 0;
|
|
991
955
|
}
|
|
992
956
|
|
|
993
957
|
> .e-split-btn-wrapper .e-btn,
|
|
@@ -1008,10 +972,8 @@
|
|
|
1008
972
|
}
|
|
1009
973
|
|
|
1010
974
|
.e-ribbon-overflow-header {
|
|
975
|
+
@include ribbon-font-styles($ribbon-overflow-header-font-size, $ribbon-overflow-header-weight, $ribbon-overflow-header-line-height);
|
|
1011
976
|
padding: $ribbon-overflow-header-padding;
|
|
1012
|
-
font-size: $ribbon-overflow-header-font-size;
|
|
1013
|
-
font-weight: $ribbon-overflow-header-weight;
|
|
1014
|
-
line-height: $ribbon-overflow-header-line-height;
|
|
1015
977
|
height: $ribbon-overflow-header-height;
|
|
1016
978
|
}
|
|
1017
979
|
}
|
|
@@ -1019,21 +981,25 @@
|
|
|
1019
981
|
|
|
1020
982
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) {
|
|
1021
983
|
.e-ribbon-overflow-target .e-ribbon-item {
|
|
1022
|
-
|
|
1023
984
|
.e-ribbon-combobox-label,
|
|
1024
985
|
.e-ribbon-colorpicker-label {
|
|
1025
986
|
margin-left: $ribbon-items-label;
|
|
1026
987
|
}
|
|
1027
988
|
|
|
1028
989
|
&.e-ribbon-medium-item {
|
|
1029
|
-
.e-btn {
|
|
1030
|
-
|
|
1031
|
-
|
|
990
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
991
|
+
padding: $ribbon-button-icon-padding;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
995
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
996
|
+
padding-left: $ribbon-items-label;
|
|
1032
997
|
}
|
|
1033
998
|
}
|
|
1034
999
|
}
|
|
1035
1000
|
|
|
1036
|
-
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper
|
|
1001
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1002
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1037
1003
|
margin-left: $ribbon-items-label;
|
|
1038
1004
|
}
|
|
1039
1005
|
|
|
@@ -1054,21 +1020,25 @@
|
|
|
1054
1020
|
padding: $ribbon-rtl-overflow-header-padding;
|
|
1055
1021
|
}
|
|
1056
1022
|
.e-ribbon-item {
|
|
1057
|
-
|
|
1058
1023
|
.e-ribbon-combobox-label,
|
|
1059
1024
|
.e-ribbon-colorpicker-label {
|
|
1060
1025
|
margin-right: $ribbon-items-label;
|
|
1061
1026
|
}
|
|
1062
1027
|
|
|
1063
1028
|
&.e-ribbon-medium-item {
|
|
1064
|
-
.e-btn {
|
|
1065
|
-
|
|
1066
|
-
|
|
1029
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1030
|
+
padding: $ribbon-rtl-button-icon-padding;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1034
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1035
|
+
padding-right: $ribbon-items-label;
|
|
1067
1036
|
}
|
|
1068
1037
|
}
|
|
1069
1038
|
}
|
|
1070
1039
|
|
|
1071
|
-
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper
|
|
1040
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1041
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1072
1042
|
margin-right: $ribbon-items-label;
|
|
1073
1043
|
}
|
|
1074
1044
|
|
|
@@ -1087,10 +1057,6 @@
|
|
|
1087
1057
|
}
|
|
1088
1058
|
}
|
|
1089
1059
|
|
|
1090
|
-
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1091
|
-
flex-direction: column;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
1060
|
.e-dropdown-popup.e-ribbon-dropdown-group-button {
|
|
1095
1061
|
border-radius: $ribbon-group-button-ddb-border-radius;
|
|
1096
1062
|
border: $ribbon-group-button-ddb-border;
|
|
@@ -1103,25 +1069,30 @@
|
|
|
1103
1069
|
white-space: nowrap;
|
|
1104
1070
|
}
|
|
1105
1071
|
|
|
1106
|
-
&.e-ribbon-group-button-overflow-popup
|
|
1107
|
-
.e-btn
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
&:
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1072
|
+
&.e-ribbon-group-button-overflow-popup {
|
|
1073
|
+
.e-btn-group {
|
|
1074
|
+
.e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
1075
|
+
width: 100%;
|
|
1076
|
+
display: flex;
|
|
1077
|
+
align-items: center;
|
|
1078
|
+
justify-content: flex-start;
|
|
1079
|
+
}
|
|
1080
|
+
&:has(.e-ribbon-group-button-content) .e-btn.e-ribbon-group-button {
|
|
1081
|
+
&:first-of-type {
|
|
1082
|
+
border-top-right-radius: 4px;
|
|
1083
|
+
border-top-left-radius: 4px;
|
|
1084
|
+
border-bottom-right-radius: 0;
|
|
1085
|
+
border-bottom-left-radius: 0;
|
|
1086
|
+
}
|
|
1087
|
+
&:last-of-type {
|
|
1088
|
+
border-top-right-radius: 0;
|
|
1089
|
+
border-top-left-radius: 0;
|
|
1090
|
+
border-bottom-right-radius: 4px;
|
|
1091
|
+
border-bottom-left-radius: 4px;
|
|
1092
|
+
}
|
|
1119
1093
|
}
|
|
1120
|
-
&:
|
|
1121
|
-
|
|
1122
|
-
border-top-left-radius: 0;
|
|
1123
|
-
border-bottom-right-radius: 4px;
|
|
1124
|
-
border-bottom-left-radius: 4px;
|
|
1094
|
+
&:not(.e-icon-btn) {
|
|
1095
|
+
flex-direction: column;
|
|
1125
1096
|
}
|
|
1126
1097
|
}
|
|
1127
1098
|
}
|
|
@@ -1131,9 +1102,7 @@
|
|
|
1131
1102
|
border-radius: $ribbon-group-button-ddb-border-radius;
|
|
1132
1103
|
|
|
1133
1104
|
.e-btn-icon {
|
|
1134
|
-
font-
|
|
1135
|
-
line-height: 16px;
|
|
1136
|
-
font-weight: $ribbon-items-font-weight;
|
|
1105
|
+
@include ribbon-font-styles(16px, $ribbon-items-font-weight, 16px);
|
|
1137
1106
|
margin: $ribbon-group-button-icon-margin;
|
|
1138
1107
|
width: auto;
|
|
1139
1108
|
&.e-icon-left {
|
|
@@ -1144,7 +1113,7 @@
|
|
|
1144
1113
|
padding: 0;
|
|
1145
1114
|
font-weight: $ribbon-items-font-weight;
|
|
1146
1115
|
font-size: $ribbon-items-btn-size;
|
|
1147
|
-
border:
|
|
1116
|
+
border: $ribbon-group-button-item-border;
|
|
1148
1117
|
text-transform: none;
|
|
1149
1118
|
|
|
1150
1119
|
&:not(.e-icon-btn) {
|
|
@@ -1160,30 +1129,31 @@
|
|
|
1160
1129
|
}
|
|
1161
1130
|
}
|
|
1162
1131
|
|
|
1132
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1133
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1134
|
+
.e-ribbon-popup-container .e-ribbon-gallery-header:first-child {
|
|
1135
|
+
padding-top: 0;
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1163
1138
|
.e-ribbon-gallery-popup.e-popup,
|
|
1164
1139
|
.e-ribbon-gallery-dropdown.e-popup {
|
|
1165
1140
|
border-radius: 4px;
|
|
1166
1141
|
padding: $ribbon-gallery-popup-padding;
|
|
1167
1142
|
overflow: auto;
|
|
1143
|
+
|
|
1168
1144
|
.e-ribbon-gallery-header {
|
|
1145
|
+
@include ribbon-font-styles($ribbon-gallery-header-fontsize, $ribbon-gallery-header-font-weight, $ribbon-gallery-header-line-height);
|
|
1169
1146
|
padding: $ribbon-gallery-header-padding;
|
|
1170
|
-
font-size: $ribbon-gallery-header-fontsize;
|
|
1171
|
-
font-weight: $ribbon-gallery-header-font-weight;
|
|
1172
|
-
line-height: $ribbon-gallery-header-line-height;
|
|
1173
1147
|
}
|
|
1174
1148
|
.e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1175
|
-
margin:
|
|
1149
|
+
margin: 2px;
|
|
1176
1150
|
height: 54px;
|
|
1177
1151
|
width: $ribbon-gallery-popup-items-width;
|
|
1178
1152
|
}
|
|
1179
1153
|
}
|
|
1180
1154
|
|
|
1181
|
-
.e-ribbon-item {
|
|
1182
|
-
|
|
1183
|
-
.e-ribbon-gallery-item {
|
|
1184
|
-
width: $ribbon-gallery-items-width;
|
|
1185
|
-
}
|
|
1186
|
-
}
|
|
1155
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1156
|
+
width: $ribbon-gallery-items-width;
|
|
1187
1157
|
}
|
|
1188
1158
|
|
|
1189
1159
|
.e-ribbon-gallery-popup.e-popup,
|
|
@@ -1195,14 +1165,14 @@
|
|
|
1195
1165
|
margin: 0;
|
|
1196
1166
|
display: flex;
|
|
1197
1167
|
align-content: space-around;
|
|
1168
|
+
|
|
1198
1169
|
.e-ribbon-gallery-item {
|
|
1199
|
-
display
|
|
1170
|
+
@include ribbon-display(inherit, column);
|
|
1200
1171
|
align-items: center;
|
|
1201
1172
|
justify-content: center;
|
|
1202
1173
|
text-align: center;
|
|
1203
1174
|
list-style-type: none;
|
|
1204
1175
|
padding: $ribbon-gallery-popup-items-padding;
|
|
1205
|
-
flex-direction: column;
|
|
1206
1176
|
cursor: pointer;
|
|
1207
1177
|
border-width: 2px;
|
|
1208
1178
|
border-style: solid;
|
|
@@ -1216,19 +1186,8 @@
|
|
|
1216
1186
|
display: none;
|
|
1217
1187
|
}
|
|
1218
1188
|
|
|
1219
|
-
.e-ribbon-gallery-text {
|
|
1220
|
-
font-size: $ribbon-gallery-text-size;
|
|
1221
|
-
font-weight: $ribbon-gallery-text-weight;
|
|
1222
|
-
line-height: $ribbon-gallery-text-line-height;
|
|
1223
|
-
width: inherit;
|
|
1224
|
-
overflow: hidden;
|
|
1225
|
-
white-space: nowrap;
|
|
1226
|
-
text-overflow: ellipsis;
|
|
1227
|
-
}
|
|
1228
1189
|
.e-ribbon-gallery-icons {
|
|
1229
|
-
font-size
|
|
1230
|
-
font-weight: $ribbon-gallery-icons-weight;
|
|
1231
|
-
line-height: $ribbon-gallery-icons-height;
|
|
1190
|
+
@include ribbon-font-styles($ribbon-gallery-icons-size, $ribbon-gallery-icons-weight, $ribbon-gallery-icons-height);
|
|
1232
1191
|
padding: 3px;
|
|
1233
1192
|
background-size: cover;
|
|
1234
1193
|
}
|
|
@@ -1240,11 +1199,19 @@
|
|
|
1240
1199
|
}
|
|
1241
1200
|
}
|
|
1242
1201
|
|
|
1202
|
+
.e-ribbon-gallery-text {
|
|
1203
|
+
@include ribbon-font-styles($ribbon-gallery-text-size, $ribbon-gallery-text-weight, $ribbon-gallery-text-line-height);
|
|
1204
|
+
width: inherit;
|
|
1205
|
+
overflow: hidden;
|
|
1206
|
+
white-space: nowrap;
|
|
1207
|
+
text-overflow: ellipsis;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1243
1210
|
.e-ribbon-keytip {
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1211
|
+
@include ribbon-font-props($ribbon-keytip-font-size, $ribbon-keytip-line-height);
|
|
1212
|
+
min-width: $ribbon-keytip-min-width;
|
|
1213
|
+
height: $ribbon-keytip-height;
|
|
1214
|
+
border-radius: $ribbon-keytip-border-radius;
|
|
1248
1215
|
|
|
1249
1216
|
&.e-popup-open {
|
|
1250
1217
|
display: flex;
|
|
@@ -1283,8 +1250,7 @@
|
|
|
1283
1250
|
align-items: center;
|
|
1284
1251
|
|
|
1285
1252
|
.e-menu-icon {
|
|
1286
|
-
font-
|
|
1287
|
-
line-height: 16px;
|
|
1253
|
+
@include ribbon-font-props(16px, 16px);
|
|
1288
1254
|
}
|
|
1289
1255
|
}
|
|
1290
1256
|
|
|
@@ -1293,8 +1259,7 @@
|
|
|
1293
1259
|
padding: 4px;
|
|
1294
1260
|
|
|
1295
1261
|
.e-ribbon-tooltip-title {
|
|
1296
|
-
font-
|
|
1297
|
-
line-height: 18px;
|
|
1262
|
+
@include ribbon-font-props(12px, 18px);
|
|
1298
1263
|
padding: 4px 4px 0;
|
|
1299
1264
|
}
|
|
1300
1265
|
|
|
@@ -1303,13 +1268,11 @@
|
|
|
1303
1268
|
display: flex;
|
|
1304
1269
|
|
|
1305
1270
|
.e-ribbon-tooltip-content {
|
|
1306
|
-
font-
|
|
1307
|
-
line-height: 15px;
|
|
1271
|
+
@include ribbon-font-props(10px, 15px);
|
|
1308
1272
|
}
|
|
1309
1273
|
|
|
1310
1274
|
.e-ribbon-tooltip-icon {
|
|
1311
|
-
font-
|
|
1312
|
-
line-height: 32px;
|
|
1275
|
+
@include ribbon-font-props(32px, 32px);
|
|
1313
1276
|
padding-right: 8px;
|
|
1314
1277
|
}
|
|
1315
1278
|
}
|
|
@@ -1318,7 +1281,6 @@
|
|
|
1318
1281
|
|
|
1319
1282
|
.e-bigger.e-ribbon.e-rbn,
|
|
1320
1283
|
.e-bigger .e-ribbon.e-rbn {
|
|
1321
|
-
|
|
1322
1284
|
.e-ribbon-group {
|
|
1323
1285
|
height: $ribbon-bigger-group-height;
|
|
1324
1286
|
}
|
|
@@ -1326,9 +1288,8 @@
|
|
|
1326
1288
|
.e-ribbon-tab {
|
|
1327
1289
|
.e-ribbon-file-menu,
|
|
1328
1290
|
.e-ribbon-backstage {
|
|
1329
|
-
|
|
1291
|
+
@include ribbon-font-props($ribbon-bigger-file-menu-size, $ribbon-bigger-file-menu-height);
|
|
1330
1292
|
padding: $ribbon-bigger-file-menu-padding;
|
|
1331
|
-
font-size: $ribbon-bigger-file-menu-size;
|
|
1332
1293
|
}
|
|
1333
1294
|
|
|
1334
1295
|
.e-ribbon-help-template {
|
|
@@ -1342,8 +1303,7 @@
|
|
|
1342
1303
|
|
|
1343
1304
|
.e-tab-header {
|
|
1344
1305
|
.e-hor-nav {
|
|
1345
|
-
height
|
|
1346
|
-
min-height: $ribbon-bigger-horizontal-nav-height;
|
|
1306
|
+
@include ribbon-items-height($ribbon-bigger-horizontal-nav-height, $ribbon-bigger-horizontal-nav-height);
|
|
1347
1307
|
}
|
|
1348
1308
|
|
|
1349
1309
|
.e-toolbar-items {
|
|
@@ -1354,20 +1314,16 @@
|
|
|
1354
1314
|
margin-right: 0;
|
|
1355
1315
|
|
|
1356
1316
|
.e-tab-text {
|
|
1357
|
-
font-size
|
|
1317
|
+
@include ribbon-font-props($ribbon-bigger-tab-text-size, $ribbon-bigger-tab-text-height);
|
|
1358
1318
|
padding: $ribbon-bigger-tab-text-padding;
|
|
1359
|
-
line-height: $ribbon-bigger-tab-text-height;
|
|
1360
1319
|
}
|
|
1361
1320
|
}
|
|
1362
1321
|
}
|
|
1363
1322
|
|
|
1364
|
-
&.e-focused .e-tab-header {
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
&:focus .e-text-wrap {
|
|
1369
|
-
height: $ribbon-bigger-toolbar-items-height;
|
|
1370
|
-
}
|
|
1323
|
+
&.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1324
|
+
&:focus,
|
|
1325
|
+
&:focus .e-text-wrap {
|
|
1326
|
+
height: $ribbon-bigger-toolbar-items-height;
|
|
1371
1327
|
}
|
|
1372
1328
|
}
|
|
1373
1329
|
}
|
|
@@ -1378,8 +1334,7 @@
|
|
|
1378
1334
|
}
|
|
1379
1335
|
|
|
1380
1336
|
.e-ribbon-collapse-btn {
|
|
1381
|
-
|
|
1382
|
-
font-size: $ribbon-bigger-collapse-btn-font-size;
|
|
1337
|
+
@include ribbon-font-props($ribbon-bigger-collapse-btn-font-size, $ribbon-bigger-collapse-btn-height);
|
|
1383
1338
|
padding: $ribbon-bigger-collapse-btn-padding;
|
|
1384
1339
|
}
|
|
1385
1340
|
|
|
@@ -1393,9 +1348,8 @@
|
|
|
1393
1348
|
height: $ribbon-bigger-overall-overflow-btn-height;
|
|
1394
1349
|
|
|
1395
1350
|
.e-btn-icon {
|
|
1396
|
-
font-
|
|
1351
|
+
@include ribbon-font-props($ribbon-bigger-overflow-btn-font-size, $ribbon-bigger-overflow-btn-height);
|
|
1397
1352
|
padding: $ribbon-bigger-overflow-btn-icon-padding;
|
|
1398
|
-
line-height: $ribbon-bigger-overflow-btn-height;
|
|
1399
1353
|
}
|
|
1400
1354
|
}
|
|
1401
1355
|
|
|
@@ -1412,17 +1366,40 @@
|
|
|
1412
1366
|
}
|
|
1413
1367
|
}
|
|
1414
1368
|
}
|
|
1369
|
+
.e-ribbon-item {
|
|
1370
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
1371
|
+
height: $ribbon-bigger-gallery-wrapper-height;
|
|
1372
|
+
}
|
|
1373
|
+
&:has(.e-ribbon-gallery-container) {
|
|
1374
|
+
padding: 0;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1378
|
+
max-height: $ribbon-bigger-gallery-items-wrapper-height;
|
|
1379
|
+
width: $ribbon-bigger-gallery-items-wrapper-width;
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
&.e-ribbon-simplified-mode {
|
|
1384
|
+
.e-ribbon-item {
|
|
1385
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
1386
|
+
height: $ribbon-bigger-gallery-simplified-wrapper-height;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1390
|
+
max-height: $ribbon-bigger-gallery-simplified-items-wrapper-height;
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1415
1394
|
}
|
|
1416
1395
|
|
|
1417
1396
|
.e-bigger.e-ribbon.e-rbn,
|
|
1418
1397
|
.e-bigger .e-ribbon.e-rbn,
|
|
1419
1398
|
.e-bigger .e-ribbon-group-overflow-ddb,
|
|
1420
1399
|
.e-bigger.e-ribbon-group-overflow-ddb {
|
|
1421
|
-
|
|
1422
1400
|
.e-ribbon-group-header {
|
|
1401
|
+
@include ribbon-font-props($ribbon-bigger-group-header-font-size, $ribbon-bigger-group-header-height);
|
|
1423
1402
|
padding: $ribbon-bigger-group-header-padding;
|
|
1424
|
-
line-height: $ribbon-bigger-group-header-height;
|
|
1425
|
-
font-size: $ribbon-bigger-group-header-font-size;
|
|
1426
1403
|
}
|
|
1427
1404
|
|
|
1428
1405
|
.e-ribbon-launcher-icon {
|
|
@@ -1434,7 +1411,6 @@
|
|
|
1434
1411
|
}
|
|
1435
1412
|
|
|
1436
1413
|
&.e-ribbon-simplified-mode {
|
|
1437
|
-
|
|
1438
1414
|
.e-ribbon-group {
|
|
1439
1415
|
height: auto;
|
|
1440
1416
|
}
|
|
@@ -1458,23 +1434,21 @@
|
|
|
1458
1434
|
|
|
1459
1435
|
.e-input-group {
|
|
1460
1436
|
height: $ribbon-bigger-input-group-height;
|
|
1461
|
-
margin
|
|
1437
|
+
margin: $ribbon-bigger-input-group-margin;
|
|
1462
1438
|
|
|
1463
1439
|
&:not(.e-float-input) .e-input {
|
|
1464
1440
|
min-height: auto;
|
|
1465
1441
|
}
|
|
1466
1442
|
|
|
1467
1443
|
input.e-input {
|
|
1444
|
+
@include ribbon-font-props($ribbon-bigger-input-items-size, $ribbon-bigger-input-items-height);
|
|
1468
1445
|
padding: $ribbon-bigger-input-padding;
|
|
1469
|
-
font-size: $ribbon-bigger-input-items-size;
|
|
1470
|
-
line-height: $ribbon-bigger-input-items-height;
|
|
1471
1446
|
height: auto;
|
|
1472
1447
|
}
|
|
1473
1448
|
|
|
1474
1449
|
&.e-control-wrapper {
|
|
1475
1450
|
.e-input-group-icon {
|
|
1476
|
-
font-size
|
|
1477
|
-
line-height: $ribbon-bigger-input-items-btn-height;
|
|
1451
|
+
@include ribbon-font-props($ribbon-bigger-input-items-btn-size, $ribbon-bigger-input-items-btn-height);
|
|
1478
1452
|
padding: $ribbon-bigger-input-icon-padding;
|
|
1479
1453
|
|
|
1480
1454
|
&.e-ddl-icon {
|
|
@@ -1500,9 +1474,9 @@
|
|
|
1500
1474
|
.e-ribbon-item {
|
|
1501
1475
|
&.e-ribbon-large-item {
|
|
1502
1476
|
.e-btn {
|
|
1477
|
+
@include ribbon-font-props($ribbon-bigger-large-items-btn-size, $ribbon-bigger-large-items-btn-height);
|
|
1503
1478
|
padding: $ribbon-bigger-large-items-btn-padding;
|
|
1504
|
-
|
|
1505
|
-
line-height: $ribbon-bigger-large-items-btn-height;
|
|
1479
|
+
max-width: $ribbon-bigger-large-items-max-width;
|
|
1506
1480
|
|
|
1507
1481
|
.e-btn-icon:not(.e-caret) {
|
|
1508
1482
|
font-size: $ribbon-bigger-large-items-icon-size;
|
|
@@ -1514,35 +1488,27 @@
|
|
|
1514
1488
|
}
|
|
1515
1489
|
}
|
|
1516
1490
|
|
|
1517
|
-
.e-dropdown-btn {
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
line-height: $ribbon-bigger-dropdown-btn-line-height;
|
|
1521
|
-
padding: $ribbon-bigger-caret-dropdown-btn-padding;
|
|
1522
|
-
}
|
|
1491
|
+
.e-dropdown-btn .e-caret {
|
|
1492
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-btn-size, $ribbon-bigger-dropdown-btn-line-height);
|
|
1493
|
+
padding: $ribbon-bigger-caret-dropdown-btn-padding;
|
|
1523
1494
|
}
|
|
1524
1495
|
}
|
|
1525
1496
|
|
|
1526
1497
|
.e-split-btn-wrapper {
|
|
1527
|
-
.e-dropdown-btn {
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
line-height: $ribbon-bigger-dropdown-btn-line-height;
|
|
1531
|
-
padding: $ribbon-bigger-dropdown-btn-padding;
|
|
1532
|
-
}
|
|
1498
|
+
.e-dropdown-btn .e-caret {
|
|
1499
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-btn-size, $ribbon-bigger-dropdown-btn-line-height);
|
|
1500
|
+
padding: $ribbon-bigger-dropdown-btn-padding;
|
|
1533
1501
|
}
|
|
1534
1502
|
}
|
|
1535
1503
|
|
|
1536
1504
|
&.e-ribbon-medium-item,
|
|
1537
1505
|
&.e-ribbon-small-item {
|
|
1538
1506
|
.e-btn {
|
|
1539
|
-
font-
|
|
1540
|
-
line-height: $ribbon-bigger-items-height;
|
|
1507
|
+
@include ribbon-font-props($ribbon-bigger-items-btn-size, $ribbon-bigger-items-height);
|
|
1541
1508
|
|
|
1542
1509
|
.e-btn-icon {
|
|
1543
|
-
font-size
|
|
1510
|
+
@include ribbon-font-props($ribbon-bigger-items-icon-size, $ribbon-bigger-items-icon-height);
|
|
1544
1511
|
margin: $ribbon-bigger-items-margin;
|
|
1545
|
-
line-height: $ribbon-bigger-items-icon-height;
|
|
1546
1512
|
}
|
|
1547
1513
|
}
|
|
1548
1514
|
|
|
@@ -1557,9 +1523,8 @@
|
|
|
1557
1523
|
}
|
|
1558
1524
|
|
|
1559
1525
|
.e-dropdown-btn .e-caret {
|
|
1560
|
-
font-size
|
|
1526
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-caret-btn-size, $ribbon-bigger-dropdown-caret-btn-height);
|
|
1561
1527
|
padding: $ribbon-bigger-dropdown-caret-btn-padding;
|
|
1562
|
-
line-height: $ribbon-bigger-dropdown-caret-btn-height;
|
|
1563
1528
|
margin: 0;
|
|
1564
1529
|
}
|
|
1565
1530
|
}
|
|
@@ -1579,11 +1544,9 @@
|
|
|
1579
1544
|
.e-bigger .e-ribbon-group-overflow-ddb,
|
|
1580
1545
|
.e-bigger.e-ribbon-group-overflow-ddb {
|
|
1581
1546
|
.e-ribbon-overflow-target {
|
|
1582
|
-
|
|
1583
1547
|
.e-ribbon-overflow-header {
|
|
1584
|
-
|
|
1548
|
+
@include ribbon-font-props($ribbon-bigger-overflow-header-font-size, $ribbon-bigger-overflow-header-line-height);
|
|
1585
1549
|
height: $ribbon-bigger-overflow-header-height;
|
|
1586
|
-
font-size: $ribbon-bigger-overflow-header-font-size;
|
|
1587
1550
|
}
|
|
1588
1551
|
|
|
1589
1552
|
.e-ribbon-item {
|
|
@@ -1596,12 +1559,10 @@
|
|
|
1596
1559
|
&.e-ribbon-medium-item {
|
|
1597
1560
|
height: $ribbon-bigger-medium-item-height;
|
|
1598
1561
|
}
|
|
1599
|
-
.e-btn {
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
margin: 0;
|
|
1604
|
-
}
|
|
1562
|
+
.e-btn .e-btn-icon {
|
|
1563
|
+
font-size: $ribbon-bigger-items-btn-icon-size;
|
|
1564
|
+
&.e-icon-left {
|
|
1565
|
+
margin: 0;
|
|
1605
1566
|
}
|
|
1606
1567
|
}
|
|
1607
1568
|
&:has(.e-colorpicker-wrapper) {
|
|
@@ -1624,75 +1585,79 @@
|
|
|
1624
1585
|
}
|
|
1625
1586
|
}
|
|
1626
1587
|
|
|
1627
|
-
&:not(.e-rtl) {
|
|
1628
|
-
.e-ribbon-overflow-
|
|
1629
|
-
|
|
1630
|
-
|
|
1588
|
+
&:not(.e-rtl) .e-ribbon-overflow-target {
|
|
1589
|
+
.e-ribbon-overflow-header {
|
|
1590
|
+
padding: $ribbon-bigger-overflow-header-padding;
|
|
1591
|
+
}
|
|
1592
|
+
.e-ribbon-item {
|
|
1593
|
+
.e-ribbon-combobox-label,
|
|
1594
|
+
.e-ribbon-colorpicker-label {
|
|
1595
|
+
margin-left: $ribbon-bigger-items-label;
|
|
1631
1596
|
}
|
|
1632
|
-
.e-ribbon-item {
|
|
1633
1597
|
|
|
1634
|
-
|
|
1635
|
-
.e-
|
|
1636
|
-
|
|
1598
|
+
&.e-ribbon-medium-item {
|
|
1599
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1600
|
+
padding: $ribbon-bigger-button-icon-padding;
|
|
1637
1601
|
}
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
.e-btn {
|
|
1641
|
-
|
|
1642
|
-
padding: $ribbon-bigger-button-icon-padding;
|
|
1643
|
-
}
|
|
1602
|
+
|
|
1603
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1604
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1605
|
+
padding-left: $ribbon-bigger-items-label;
|
|
1644
1606
|
}
|
|
1645
1607
|
}
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1611
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1612
|
+
margin-left: $ribbon-bigger-items-label;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
>.e-split-btn-wrapper,
|
|
1616
|
+
>.e-dropdown-btn {
|
|
1617
|
+
.e-icons.e-caret {
|
|
1618
|
+
padding: $ribbon-bigger-caret-icon-padding;
|
|
1656
1619
|
}
|
|
1657
1620
|
}
|
|
1658
1621
|
}
|
|
1659
1622
|
}
|
|
1660
1623
|
|
|
1661
|
-
&.e-rtl {
|
|
1662
|
-
.e-ribbon-overflow-
|
|
1663
|
-
|
|
1664
|
-
|
|
1624
|
+
&.e-rtl .e-ribbon-overflow-target {
|
|
1625
|
+
.e-ribbon-overflow-header {
|
|
1626
|
+
padding: $ribbon-bigger-rtl-overflow-header-padding;
|
|
1627
|
+
}
|
|
1628
|
+
.e-ribbon-item {
|
|
1629
|
+
.e-ribbon-combobox-label,
|
|
1630
|
+
.e-ribbon-colorpicker-label {
|
|
1631
|
+
margin-right: $ribbon-bigger-items-label;
|
|
1665
1632
|
}
|
|
1666
|
-
.e-ribbon-item {
|
|
1667
1633
|
|
|
1668
|
-
|
|
1669
|
-
.e-
|
|
1670
|
-
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
&.e-ribbon-medium-item {
|
|
1674
|
-
.e-btn {
|
|
1675
|
-
.e-btn-icon.e-icon-left {
|
|
1676
|
-
padding: $ribbon-bigger-rtl-button-icon-padding;
|
|
1677
|
-
}
|
|
1678
|
-
}
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1682
|
-
margin-right: $ribbon-bigger-items-label;
|
|
1634
|
+
&.e-ribbon-medium-item {
|
|
1635
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1636
|
+
padding: $ribbon-bigger-rtl-button-icon-padding;
|
|
1683
1637
|
}
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
padding: $ribbon-bigger-rtl-caret-icon-padding;
|
|
1638
|
+
|
|
1639
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1640
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1641
|
+
padding-right: $ribbon-bigger-items-label;
|
|
1689
1642
|
}
|
|
1690
1643
|
}
|
|
1691
1644
|
}
|
|
1692
|
-
|
|
1693
|
-
|
|
1645
|
+
|
|
1646
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1647
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1648
|
+
margin-right: $ribbon-bigger-items-label;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
>.e-split-btn-wrapper,
|
|
1652
|
+
>.e-dropdown-btn {
|
|
1653
|
+
.e-icons.e-caret {
|
|
1654
|
+
padding: $ribbon-bigger-rtl-caret-icon-padding;
|
|
1655
|
+
}
|
|
1694
1656
|
}
|
|
1695
1657
|
}
|
|
1658
|
+
.e-ribbon-item > .e-checkbox-wrapper {
|
|
1659
|
+
margin: $ribbon-bigger-rtl-checkbox-margin;
|
|
1660
|
+
}
|
|
1696
1661
|
}
|
|
1697
1662
|
}
|
|
1698
1663
|
|
|
@@ -1701,8 +1666,7 @@
|
|
|
1701
1666
|
height: $ribbon-bigger-ddb-popup-height;
|
|
1702
1667
|
|
|
1703
1668
|
.e-menu-icon {
|
|
1704
|
-
font-
|
|
1705
|
-
line-height: 20px;
|
|
1669
|
+
@include ribbon-font-props(20px, 20px);
|
|
1706
1670
|
}
|
|
1707
1671
|
}
|
|
1708
1672
|
|
|
@@ -1710,26 +1674,18 @@
|
|
|
1710
1674
|
.e-bigger.e-ribbon-menu.e-menu-wrapper ul.e-vertical,
|
|
1711
1675
|
.e-bigger .e-ribbon-menu.e-menu-wrapper ul.e-ul,
|
|
1712
1676
|
.e-bigger.e-ribbon-menu.e-menu-wrapper ul.e-ul {
|
|
1713
|
-
.e-menu-item {
|
|
1714
|
-
|
|
1715
|
-
&.e-blankicon {
|
|
1716
|
-
padding-left: $ribbon-bigger-menu-blank-icon-padding !important; /* stylelint-disable-line declaration-no-important */
|
|
1717
|
-
}
|
|
1677
|
+
.e-menu-item.e-blankicon {
|
|
1678
|
+
padding-left: $ribbon-bigger-menu-blank-icon-padding !important; /* stylelint-disable-line declaration-no-important */
|
|
1718
1679
|
}
|
|
1719
1680
|
}
|
|
1720
1681
|
|
|
1721
|
-
.e-bigger .e-ribbon-backstage-popup {
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
height: $ribbon-bigger-backstage-btn-height;
|
|
1725
|
-
line-height: $ribbon-bigger-backstage-btn-line-height;
|
|
1682
|
+
.e-bigger .e-ribbon-backstage-popup .e-ribbon-backstage-wrapper .e-btn {
|
|
1683
|
+
height: $ribbon-bigger-backstage-btn-height;
|
|
1684
|
+
line-height: $ribbon-bigger-backstage-btn-line-height;
|
|
1726
1685
|
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
padding: $ribbon-bigger-backstage-btn-icon-padding;
|
|
1731
|
-
}
|
|
1732
|
-
}
|
|
1686
|
+
.e-btn-icon {
|
|
1687
|
+
@include ribbon-font-props($ribbon-bigger-backstage-btn-icon-font-size, $ribbon-bigger-backstage-btn-icon-line-height);
|
|
1688
|
+
padding: $ribbon-bigger-backstage-btn-icon-padding;
|
|
1733
1689
|
}
|
|
1734
1690
|
}
|
|
1735
1691
|
|
|
@@ -1741,8 +1697,7 @@
|
|
|
1741
1697
|
height: $ribbon-bigger-backstage-menu-item-height;
|
|
1742
1698
|
|
|
1743
1699
|
.e-menu-icon {
|
|
1744
|
-
font-size
|
|
1745
|
-
line-height: $ribbon-bigger-backstage-menu-icon-line-height;
|
|
1700
|
+
@include ribbon-font-props($ribbon-bigger-backstage-menu-icon-font-size, $ribbon-bigger-backstage-menu-icon-line-height);
|
|
1746
1701
|
padding: $ribbon-bigger-backstage-menu-icon-padding;
|
|
1747
1702
|
}
|
|
1748
1703
|
|
|
@@ -1757,8 +1712,7 @@
|
|
|
1757
1712
|
padding: $ribbon-group-button-ddb-padding;
|
|
1758
1713
|
.e-btn-group {
|
|
1759
1714
|
.e-btn-icon {
|
|
1760
|
-
font-size
|
|
1761
|
-
line-height: $ribbon-bigger-items-icon-height;
|
|
1715
|
+
@include ribbon-font-props($ribbon-bigger-items-icon-size, $ribbon-bigger-items-icon-height);
|
|
1762
1716
|
margin: $ribbon-bigger-group-button-icon-margin;
|
|
1763
1717
|
&.e-icon-left {
|
|
1764
1718
|
padding: $ribbon-bigger-group-button-icon-padding;
|
|
@@ -1779,9 +1733,15 @@
|
|
|
1779
1733
|
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1780
1734
|
padding: $ribbon-bigger-gallery-popup-padding;
|
|
1781
1735
|
.e-ribbon-gallery-header {
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
line-height: $ribbon-bigger-gallery-header-line-height;
|
|
1736
|
+
@include ribbon-font-props($ribbon-bigger-gallery-header-fontsize, $ribbon-bigger-gallery-header-line-height);
|
|
1737
|
+
padding: $ribbon-bigger-gallery-header-padding;
|
|
1785
1738
|
}
|
|
1786
1739
|
}
|
|
1740
|
+
|
|
1741
|
+
.e-bigger.e-ribbon-keytip,
|
|
1742
|
+
.e-bigger .e-ribbon-keytip {
|
|
1743
|
+
@include ribbon-font-props($ribbon-bigger-keytip-font-size, $ribbon-bigger-keytip-line-height);
|
|
1744
|
+
min-width: $ribbon-bigger-keytip-min-width;
|
|
1745
|
+
height: $ribbon-bigger-keytip-height;
|
|
1746
|
+
}
|
|
1787
1747
|
}
|