@syncfusion/ej2-ribbon 25.2.5 → 26.1.38
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 +830 -593
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +821 -578
- 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 +204 -95
- 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 +477 -269
- package/styles/bootstrap-dark.scss +18 -1
- package/styles/bootstrap.css +481 -276
- package/styles/bootstrap.scss +18 -1
- package/styles/bootstrap4.css +480 -272
- package/styles/bootstrap4.scss +18 -1
- package/styles/bootstrap5-dark.css +495 -278
- package/styles/bootstrap5-dark.scss +18 -1
- package/styles/bootstrap5.css +495 -278
- package/styles/bootstrap5.scss +18 -1
- package/styles/fabric-dark.css +476 -269
- package/styles/fabric-dark.scss +18 -1
- package/styles/fabric.css +475 -272
- package/styles/fabric.scss +18 -1
- package/styles/fluent-dark.css +497 -277
- package/styles/fluent-dark.scss +18 -1
- package/styles/fluent.css +497 -277
- package/styles/fluent.scss +18 -1
- package/styles/fluent2.css +3893 -0
- package/styles/fluent2.scss +18 -0
- package/styles/highcontrast-light.css +470 -263
- package/styles/highcontrast-light.scss +17 -1
- package/styles/highcontrast.css +476 -273
- package/styles/highcontrast.scss +18 -1
- package/styles/material-dark.css +565 -283
- package/styles/material-dark.scss +18 -1
- package/styles/material.css +564 -289
- package/styles/material.scss +18 -1
- package/styles/material3-dark.css +521 -280
- package/styles/material3-dark.scss +18 -1
- package/styles/material3.css +521 -280
- package/styles/material3.scss +18 -1
- package/styles/ribbon/_bds-definition.scss +58 -20
- package/styles/ribbon/_bootstrap-dark-definition.scss +58 -20
- package/styles/ribbon/_bootstrap-definition.scss +59 -21
- package/styles/ribbon/_bootstrap4-definition.scss +59 -21
- package/styles/ribbon/_bootstrap5-definition.scss +59 -21
- package/styles/ribbon/_bootstrap5.3-definition.scss +398 -0
- package/styles/ribbon/_fabric-dark-definition.scss +57 -19
- package/styles/ribbon/_fabric-definition.scss +58 -20
- package/styles/ribbon/_fluent-definition.scss +61 -23
- package/styles/ribbon/_fluent2-definition.scss +398 -0
- package/styles/ribbon/_fusionnew-definition.scss +52 -14
- package/styles/ribbon/_highcontrast-definition.scss +60 -22
- package/styles/ribbon/_highcontrast-light-definition.scss +51 -13
- package/styles/ribbon/_layout.scss +371 -399
- package/styles/ribbon/_material-dark-definition.scss +58 -20
- package/styles/ribbon/_material-definition.scss +58 -20
- package/styles/ribbon/_material3-definition.scss +58 -19
- package/styles/ribbon/_tailwind-definition.scss +58 -20
- package/styles/ribbon/_theme.scss +118 -170
- package/styles/ribbon/bootstrap-dark.css +477 -269
- package/styles/ribbon/bootstrap.css +481 -276
- package/styles/ribbon/bootstrap4.css +480 -272
- package/styles/ribbon/bootstrap5-dark.css +495 -278
- package/styles/ribbon/bootstrap5.css +495 -278
- package/styles/ribbon/fabric-dark.css +476 -269
- package/styles/ribbon/fabric.css +475 -272
- package/styles/ribbon/fluent-dark.css +497 -277
- package/styles/ribbon/fluent.css +497 -277
- package/styles/ribbon/fluent2.css +3893 -0
- package/styles/ribbon/fluent2.scss +18 -0
- package/styles/ribbon/highcontrast-light.css +470 -263
- package/styles/ribbon/highcontrast.css +476 -273
- package/styles/ribbon/icons/_bootstrap5.3.scss +9 -0
- package/styles/ribbon/icons/_fluent2.scss +9 -0
- package/styles/ribbon/material-dark.css +565 -283
- package/styles/ribbon/material.css +564 -289
- package/styles/ribbon/material3-dark.css +521 -280
- package/styles/ribbon/material3.css +521 -280
- package/styles/ribbon/tailwind-dark.css +531 -280
- package/styles/ribbon/tailwind.css +531 -280
- package/styles/tailwind-dark.css +531 -280
- package/styles/tailwind-dark.scss +18 -1
- package/styles/tailwind.css +531 -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;
|
|
@@ -311,6 +352,10 @@
|
|
|
311
352
|
|
|
312
353
|
.e-ribbon-tab-item {
|
|
313
354
|
display: inline-flex;
|
|
355
|
+
|
|
356
|
+
&.e-disabled {
|
|
357
|
+
pointer-events: none;
|
|
358
|
+
}
|
|
314
359
|
}
|
|
315
360
|
|
|
316
361
|
.e-ribbon-group {
|
|
@@ -348,11 +393,8 @@
|
|
|
348
393
|
right: 0;
|
|
349
394
|
}
|
|
350
395
|
|
|
351
|
-
&.e-ribbon-collapsible {
|
|
352
|
-
|
|
353
|
-
.e-ribbon-overall-of-btn {
|
|
354
|
-
right: $ribbon-overflow-collapse-btn-right;
|
|
355
|
-
}
|
|
396
|
+
&.e-ribbon-collapsible .e-ribbon-overall-of-btn {
|
|
397
|
+
right: $ribbon-overflow-collapse-btn-right;
|
|
356
398
|
}
|
|
357
399
|
|
|
358
400
|
.e-tab-header {
|
|
@@ -376,11 +418,8 @@
|
|
|
376
418
|
left: 0;
|
|
377
419
|
}
|
|
378
420
|
|
|
379
|
-
&.e-ribbon-collapsible {
|
|
380
|
-
|
|
381
|
-
.e-ribbon-overall-of-btn {
|
|
382
|
-
left: $ribbon-overflow-collapse-btn-right;
|
|
383
|
-
}
|
|
421
|
+
&.e-ribbon-collapsible .e-ribbon-overall-of-btn {
|
|
422
|
+
left: $ribbon-overflow-collapse-btn-right;
|
|
384
423
|
}
|
|
385
424
|
|
|
386
425
|
.e-tab-header {
|
|
@@ -393,18 +432,16 @@
|
|
|
393
432
|
}
|
|
394
433
|
}
|
|
395
434
|
|
|
396
|
-
.e-ribbon-backstage-popup.e-ribbon-backstage-open {
|
|
397
|
-
display: flex;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
435
|
.e-ribbon-backstage-popup {
|
|
401
|
-
|
|
436
|
+
&.e-ribbon-backstage-open {
|
|
402
437
|
display: flex;
|
|
403
|
-
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.e-ribbon-backstage-wrapper {
|
|
441
|
+
@include ribbon-display(flex, column);
|
|
404
442
|
|
|
405
443
|
.e-ribbon-backstage-items-wrapper {
|
|
406
|
-
display
|
|
407
|
-
flex-direction: column;
|
|
444
|
+
@include ribbon-display(flex, column);
|
|
408
445
|
justify-content: space-between;
|
|
409
446
|
height: 100%;
|
|
410
447
|
}
|
|
@@ -420,26 +457,22 @@
|
|
|
420
457
|
line-height: $ribbon-backstage-btn-line-height;
|
|
421
458
|
|
|
422
459
|
.e-btn-icon {
|
|
460
|
+
@include ribbon-font-props($ribbon-backstage-btn-icon-font-size, $ribbon-backstage-btn-icon-line-height);
|
|
423
461
|
width: auto;
|
|
424
462
|
margin: 0;
|
|
425
|
-
font-size: $ribbon-backstage-btn-icon-font-size;
|
|
426
|
-
line-height: $ribbon-backstage-btn-icon-line-height;
|
|
427
463
|
padding: $ribbon-backstage-btn-icon-padding;
|
|
428
464
|
}
|
|
429
465
|
|
|
430
466
|
&:focus {
|
|
431
|
-
border-
|
|
432
|
-
border-width: $ribbon-backstage-btn-focus-border;
|
|
467
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-focus-border);
|
|
433
468
|
}
|
|
434
469
|
|
|
435
470
|
&:hover {
|
|
436
|
-
border-
|
|
437
|
-
border-width: $ribbon-backstage-btn-hover-border;
|
|
471
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-hover-border);
|
|
438
472
|
}
|
|
439
473
|
|
|
440
474
|
&:focus:hover {
|
|
441
|
-
border-
|
|
442
|
-
border-width: $ribbon-backstage-btn-focus-border;
|
|
475
|
+
@include ribbon-backstage-border($ribbon-backstage-btn-focus-border);
|
|
443
476
|
}
|
|
444
477
|
}
|
|
445
478
|
|
|
@@ -451,10 +484,8 @@
|
|
|
451
484
|
&.e-menu-wrapper ul.e-ul {
|
|
452
485
|
min-width: 135px;
|
|
453
486
|
|
|
454
|
-
&.e-menu .e-menu-item {
|
|
455
|
-
|
|
456
|
-
margin: 4px 20px;
|
|
457
|
-
}
|
|
487
|
+
&.e-menu .e-menu-item.e-separator {
|
|
488
|
+
margin: 4px 20px;
|
|
458
489
|
}
|
|
459
490
|
|
|
460
491
|
.e-menu-item:not(.e-separator) {
|
|
@@ -463,26 +494,22 @@
|
|
|
463
494
|
padding: 0;
|
|
464
495
|
|
|
465
496
|
&:focus {
|
|
466
|
-
border-
|
|
467
|
-
border-width: $ribbon-backstage-menu-hover-border;
|
|
497
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-hover-border);
|
|
468
498
|
}
|
|
469
499
|
|
|
470
500
|
&.e-selected,
|
|
471
501
|
&:hover {
|
|
472
|
-
border-
|
|
473
|
-
border-width: $ribbon-backstage-menu-active-border;
|
|
502
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-active-border);
|
|
474
503
|
}
|
|
475
504
|
|
|
476
505
|
&.e-selected:focus {
|
|
477
|
-
border-
|
|
478
|
-
border-width: $ribbon-backstage-menu-hover-border;
|
|
506
|
+
@include ribbon-backstage-border($ribbon-backstage-menu-hover-border);
|
|
479
507
|
}
|
|
480
508
|
|
|
481
509
|
.e-menu-icon {
|
|
510
|
+
@include ribbon-font-props($ribbon-backstage-menu-icon-font-size, $ribbon-backstage-menu-icon-line-height);
|
|
482
511
|
width: auto;
|
|
483
512
|
margin-right: unset;
|
|
484
|
-
font-size: $ribbon-backstage-menu-icon-font-size;
|
|
485
|
-
line-height: $ribbon-backstage-menu-icon-line-height;
|
|
486
513
|
padding: $ribbon-backstage-menu-icon-padding;
|
|
487
514
|
}
|
|
488
515
|
|
|
@@ -511,31 +538,29 @@
|
|
|
511
538
|
.e-ribbon-group-overflow-ddb {
|
|
512
539
|
border: $ribbon-border;
|
|
513
540
|
|
|
541
|
+
.e-disabled {
|
|
542
|
+
opacity: $ribbon-disabled-opacity;
|
|
543
|
+
}
|
|
544
|
+
|
|
514
545
|
.e-input-group {
|
|
515
546
|
height: $ribbon-input-group-height;
|
|
516
547
|
border-radius: $ribbon-input-group-border-radius;
|
|
517
|
-
margin
|
|
548
|
+
margin: $ribbon-input-group-margin;
|
|
518
549
|
|
|
519
550
|
input.e-input {
|
|
551
|
+
@include ribbon-font-styles($ribbon-input-size, $ribbon-input-weight, $ribbon-input-height);
|
|
552
|
+
@include ribbon-items-height(auto, auto);
|
|
520
553
|
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
554
|
}
|
|
527
555
|
|
|
528
556
|
&.e-control-wrapper {
|
|
529
557
|
.e-input-group-icon {
|
|
530
|
-
font-size
|
|
531
|
-
|
|
532
|
-
height: auto;
|
|
558
|
+
@include ribbon-font-styles($ribbon-input-icon-size, $ribbon-input-icon-weight, $ribbon-input-icon-height);
|
|
559
|
+
@include ribbon-items-height(auto, auto);
|
|
533
560
|
padding: $ribbon-input-icon-padding;
|
|
534
561
|
margin: 0;
|
|
535
|
-
font-weight: $ribbon-input-icon-weight;
|
|
536
562
|
border: none;
|
|
537
563
|
min-width: auto;
|
|
538
|
-
min-height: auto;
|
|
539
564
|
border-radius: unset;
|
|
540
565
|
|
|
541
566
|
&.e-ddl-icon {
|
|
@@ -564,13 +589,12 @@
|
|
|
564
589
|
}
|
|
565
590
|
|
|
566
591
|
.e-ribbon-group-header {
|
|
592
|
+
@include ribbon-font-props($ribbon-group-header-font-size, $ribbon-group-header-height);
|
|
567
593
|
align-items: center;
|
|
568
594
|
display: flex;
|
|
569
595
|
justify-content: center;
|
|
570
596
|
white-space: nowrap;
|
|
571
597
|
padding: $ribbon-group-header-padding;
|
|
572
|
-
line-height: $ribbon-group-header-height;
|
|
573
|
-
font-size: $ribbon-group-header-font-size;
|
|
574
598
|
}
|
|
575
599
|
|
|
576
600
|
.e-ribbon-launcher-icon {
|
|
@@ -603,13 +627,11 @@
|
|
|
603
627
|
}
|
|
604
628
|
|
|
605
629
|
.e-ribbon-column {
|
|
606
|
-
display
|
|
607
|
-
flex-direction: row;
|
|
630
|
+
@include ribbon-display(inline-flex, row);
|
|
608
631
|
}
|
|
609
632
|
|
|
610
633
|
.e-ribbon-row {
|
|
611
|
-
display
|
|
612
|
-
flex-direction: column;
|
|
634
|
+
@include ribbon-display(inline-flex, column);
|
|
613
635
|
}
|
|
614
636
|
|
|
615
637
|
.e-ribbon-group-overflow,
|
|
@@ -619,19 +641,23 @@
|
|
|
619
641
|
vertical-align: middle;
|
|
620
642
|
|
|
621
643
|
.e-ribbon-gallery-wrapper {
|
|
622
|
-
height: $ribbon-gallery-wrapper-height;
|
|
623
644
|
display: flex;
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
645
|
+
margin: $ribbon-wrapper-margin;
|
|
646
|
+
|
|
647
|
+
.e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
648
|
+
max-height: $ribbon-gallery-items-wrapper-height;
|
|
649
|
+
margin: $ribbon-wrapper-item-margin;
|
|
650
|
+
border-radius: $ribbon-wrapper-item-border-radius;
|
|
628
651
|
}
|
|
629
652
|
}
|
|
630
653
|
|
|
631
654
|
.e-ribbon-gallery-button {
|
|
632
|
-
padding:
|
|
655
|
+
padding: $ribbon-gallery-button-icon-padding;
|
|
633
656
|
border-width: 0 0 0 1px;
|
|
634
657
|
border-radius: 0 4px 4px 0;
|
|
658
|
+
line-height: $ribbon-gallery-button-icon-line-height;
|
|
659
|
+
font-weight: $ribbon-gallery-button-icon-font-weight;
|
|
660
|
+
font-size: $ribbon-gallery-button-icon-font-size;
|
|
635
661
|
}
|
|
636
662
|
|
|
637
663
|
&.e-hidden {
|
|
@@ -658,15 +684,13 @@
|
|
|
658
684
|
|
|
659
685
|
&.e-ribbon-large-item {
|
|
660
686
|
.e-btn {
|
|
687
|
+
@include ribbon-items-height(100%, inherit);
|
|
688
|
+
@include ribbon-display(flex, column);
|
|
661
689
|
max-width: $ribbon-large-items-max-width;
|
|
662
|
-
min-height: inherit;
|
|
663
690
|
min-width: fit-content;
|
|
664
691
|
white-space: normal;
|
|
665
692
|
padding: $ribbon-large-items-btn-padding;
|
|
666
693
|
line-height: $ribbon-large-items-btn-height;
|
|
667
|
-
height: 100%;
|
|
668
|
-
display: flex;
|
|
669
|
-
flex-direction: column;
|
|
670
694
|
justify-content: flex-start;
|
|
671
695
|
align-items: center;
|
|
672
696
|
|
|
@@ -692,15 +716,16 @@
|
|
|
692
716
|
& > .e-split-btn-wrapper.e-vertical .e-btn {
|
|
693
717
|
justify-content: space-evenly;
|
|
694
718
|
height: 50%;
|
|
695
|
-
}
|
|
696
719
|
|
|
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;
|
|
720
|
+
.e-icon-top {
|
|
721
|
+
height: 100%;
|
|
702
722
|
}
|
|
703
723
|
}
|
|
724
|
+
|
|
725
|
+
.e-dropdown-btn .e-caret {
|
|
726
|
+
@include ribbon-font-props($ribbon-dropdown-caret-btn-size, $ribbon-dropdown-caret-btn-height);
|
|
727
|
+
padding: $ribbon-overflow-dropdown-btn-padding;
|
|
728
|
+
}
|
|
704
729
|
}
|
|
705
730
|
}
|
|
706
731
|
|
|
@@ -717,7 +742,10 @@
|
|
|
717
742
|
padding: 0;
|
|
718
743
|
border-style: solid;
|
|
719
744
|
border-width: 1px;
|
|
720
|
-
|
|
745
|
+
}
|
|
746
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
747
|
+
height: $ribbon-gallery-wrapper-height;
|
|
748
|
+
border-radius: $ribbon-wrapper-border-radius;
|
|
721
749
|
}
|
|
722
750
|
|
|
723
751
|
.e-btn-group {
|
|
@@ -725,6 +753,9 @@
|
|
|
725
753
|
}
|
|
726
754
|
|
|
727
755
|
.e-checkbox-wrapper {
|
|
756
|
+
height: fit-content;
|
|
757
|
+
margin: auto 0;
|
|
758
|
+
width: max-content;
|
|
728
759
|
padding: $ribbon-items-checkbox-padding;
|
|
729
760
|
|
|
730
761
|
.e-label {
|
|
@@ -740,20 +771,12 @@
|
|
|
740
771
|
}
|
|
741
772
|
}
|
|
742
773
|
|
|
743
|
-
.e-checkbox-wrapper {
|
|
744
|
-
height: fit-content;
|
|
745
|
-
margin: auto 0;
|
|
746
|
-
width: max-content;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
774
|
.e-colorpicker-wrapper {
|
|
750
775
|
border: 1px solid transparent;
|
|
751
776
|
border-radius: $ribbon-items-border-radius;
|
|
752
777
|
|
|
753
|
-
.e-split-btn-wrapper.e-rtl .e-split-colorpicker {
|
|
754
|
-
|
|
755
|
-
padding: 0;
|
|
756
|
-
}
|
|
778
|
+
.e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
779
|
+
padding: 0;
|
|
757
780
|
}
|
|
758
781
|
}
|
|
759
782
|
|
|
@@ -788,12 +811,11 @@
|
|
|
788
811
|
&.e-ribbon-medium-item {
|
|
789
812
|
.e-btn {
|
|
790
813
|
white-space: nowrap;
|
|
791
|
-
padding:
|
|
814
|
+
padding: 0;
|
|
792
815
|
line-height: $ribbon-items-height;
|
|
793
816
|
|
|
794
817
|
.e-btn-icon {
|
|
795
|
-
font-
|
|
796
|
-
line-height: 16px;
|
|
818
|
+
@include ribbon-font-props(16px, 16px);
|
|
797
819
|
margin: $ribbon-items-margin;
|
|
798
820
|
}
|
|
799
821
|
}
|
|
@@ -813,10 +835,13 @@
|
|
|
813
835
|
}
|
|
814
836
|
}
|
|
815
837
|
|
|
838
|
+
.e-split-btn-wrapper:has(.e-icon-btn) .e-dropdown-btn .e-caret {
|
|
839
|
+
padding: $ribbon-colorpicker-caret-btn-padding;
|
|
840
|
+
}
|
|
841
|
+
|
|
816
842
|
.e-dropdown-btn .e-caret {
|
|
817
|
-
font-size
|
|
843
|
+
@include ribbon-font-props($ribbon-dropdown-caret-btn-size, $ribbon-dropdown-caret-btn-height);
|
|
818
844
|
padding: $ribbon-dropdown-caret-btn-padding;
|
|
819
|
-
line-height: $ribbon-dropdown-caret-btn-height;
|
|
820
845
|
margin: 0;
|
|
821
846
|
width: auto;
|
|
822
847
|
}
|
|
@@ -843,49 +868,12 @@
|
|
|
843
868
|
}
|
|
844
869
|
}
|
|
845
870
|
|
|
846
|
-
.e-ribbon-vertical-center:not(.e-ribbon-large-item) {
|
|
847
|
-
margin-bottom: auto;
|
|
848
|
-
margin-top: auto;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
871
|
&: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
|
-
}
|
|
872
|
+
@include ribbon-item-padding(0 4px 0 0, 0 2px 0 0);
|
|
869
873
|
}
|
|
870
874
|
|
|
871
875
|
&.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
|
-
}
|
|
876
|
+
@include ribbon-item-padding(0 0 0 4px, 0 0 0 2px);
|
|
889
877
|
}
|
|
890
878
|
}
|
|
891
879
|
|
|
@@ -898,7 +886,6 @@
|
|
|
898
886
|
}
|
|
899
887
|
|
|
900
888
|
.e-ribbon-overflow-target {
|
|
901
|
-
|
|
902
889
|
.e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
903
890
|
border: 0;
|
|
904
891
|
}
|
|
@@ -919,30 +906,19 @@
|
|
|
919
906
|
}
|
|
920
907
|
.e-ribbon-gallery-wrapper.e-hidden,
|
|
921
908
|
.e-ribbon-gallery-container.e-hidden,
|
|
922
|
-
.e-ribbon-gallery-button.e-hidden
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
909
|
+
.e-ribbon-gallery-button.e-hidden,
|
|
910
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-hidden,
|
|
911
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-hide-group,
|
|
926
912
|
&.e-hidden,
|
|
927
913
|
&.e-hide-group {
|
|
928
914
|
display: none;
|
|
929
915
|
}
|
|
930
916
|
|
|
931
|
-
&.e-disabled
|
|
917
|
+
&.e-disabled,
|
|
918
|
+
.e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
932
919
|
pointer-events: none;
|
|
933
920
|
}
|
|
934
921
|
|
|
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
922
|
.e-ribbon-item {
|
|
947
923
|
.e-dropdown-btn .e-caret {
|
|
948
924
|
font-size: $ribbon-items-caret-icon-size;
|
|
@@ -967,10 +943,8 @@
|
|
|
967
943
|
.e-ribbon-template {
|
|
968
944
|
margin: $ribbon-overflow-wrapper-item-margin;
|
|
969
945
|
}
|
|
970
|
-
.e-btn {
|
|
971
|
-
|
|
972
|
-
font-size: $ribbon-items-btn-icon-size;
|
|
973
|
-
}
|
|
946
|
+
.e-btn .e-btn-icon {
|
|
947
|
+
font-size: $ribbon-items-btn-icon-size;
|
|
974
948
|
}
|
|
975
949
|
}
|
|
976
950
|
|
|
@@ -984,10 +958,8 @@
|
|
|
984
958
|
width: 100%;
|
|
985
959
|
height: $ribbon-medium-item-height;
|
|
986
960
|
|
|
987
|
-
.e-btn {
|
|
988
|
-
|
|
989
|
-
margin: 0;
|
|
990
|
-
}
|
|
961
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
962
|
+
margin: 0;
|
|
991
963
|
}
|
|
992
964
|
|
|
993
965
|
> .e-split-btn-wrapper .e-btn,
|
|
@@ -1008,10 +980,8 @@
|
|
|
1008
980
|
}
|
|
1009
981
|
|
|
1010
982
|
.e-ribbon-overflow-header {
|
|
983
|
+
@include ribbon-font-styles($ribbon-overflow-header-font-size, $ribbon-overflow-header-weight, $ribbon-overflow-header-line-height);
|
|
1011
984
|
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
985
|
height: $ribbon-overflow-header-height;
|
|
1016
986
|
}
|
|
1017
987
|
}
|
|
@@ -1019,21 +989,25 @@
|
|
|
1019
989
|
|
|
1020
990
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) {
|
|
1021
991
|
.e-ribbon-overflow-target .e-ribbon-item {
|
|
1022
|
-
|
|
1023
992
|
.e-ribbon-combobox-label,
|
|
1024
993
|
.e-ribbon-colorpicker-label {
|
|
1025
994
|
margin-left: $ribbon-items-label;
|
|
1026
995
|
}
|
|
1027
996
|
|
|
1028
997
|
&.e-ribbon-medium-item {
|
|
1029
|
-
.e-btn {
|
|
1030
|
-
|
|
1031
|
-
|
|
998
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
999
|
+
padding: $ribbon-button-icon-padding;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1003
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1004
|
+
padding-left: $ribbon-items-label;
|
|
1032
1005
|
}
|
|
1033
1006
|
}
|
|
1034
1007
|
}
|
|
1035
1008
|
|
|
1036
|
-
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper
|
|
1009
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1010
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1037
1011
|
margin-left: $ribbon-items-label;
|
|
1038
1012
|
}
|
|
1039
1013
|
|
|
@@ -1054,21 +1028,25 @@
|
|
|
1054
1028
|
padding: $ribbon-rtl-overflow-header-padding;
|
|
1055
1029
|
}
|
|
1056
1030
|
.e-ribbon-item {
|
|
1057
|
-
|
|
1058
1031
|
.e-ribbon-combobox-label,
|
|
1059
1032
|
.e-ribbon-colorpicker-label {
|
|
1060
1033
|
margin-right: $ribbon-items-label;
|
|
1061
1034
|
}
|
|
1062
1035
|
|
|
1063
1036
|
&.e-ribbon-medium-item {
|
|
1064
|
-
.e-btn {
|
|
1065
|
-
|
|
1066
|
-
|
|
1037
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1038
|
+
padding: $ribbon-rtl-button-icon-padding;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1042
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1043
|
+
padding-right: $ribbon-items-label;
|
|
1067
1044
|
}
|
|
1068
1045
|
}
|
|
1069
1046
|
}
|
|
1070
1047
|
|
|
1071
|
-
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper
|
|
1048
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1049
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1072
1050
|
margin-right: $ribbon-items-label;
|
|
1073
1051
|
}
|
|
1074
1052
|
|
|
@@ -1087,10 +1065,6 @@
|
|
|
1087
1065
|
}
|
|
1088
1066
|
}
|
|
1089
1067
|
|
|
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
1068
|
.e-dropdown-popup.e-ribbon-dropdown-group-button {
|
|
1095
1069
|
border-radius: $ribbon-group-button-ddb-border-radius;
|
|
1096
1070
|
border: $ribbon-group-button-ddb-border;
|
|
@@ -1103,25 +1077,30 @@
|
|
|
1103
1077
|
white-space: nowrap;
|
|
1104
1078
|
}
|
|
1105
1079
|
|
|
1106
|
-
&.e-ribbon-group-button-overflow-popup
|
|
1107
|
-
.e-btn
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
&:
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1080
|
+
&.e-ribbon-group-button-overflow-popup {
|
|
1081
|
+
.e-btn-group {
|
|
1082
|
+
.e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
1083
|
+
width: 100%;
|
|
1084
|
+
display: flex;
|
|
1085
|
+
align-items: center;
|
|
1086
|
+
justify-content: flex-start;
|
|
1087
|
+
}
|
|
1088
|
+
&:has(.e-ribbon-group-button-content) .e-btn.e-ribbon-group-button {
|
|
1089
|
+
&:first-of-type {
|
|
1090
|
+
border-top-right-radius: 4px;
|
|
1091
|
+
border-top-left-radius: 4px;
|
|
1092
|
+
border-bottom-right-radius: 0;
|
|
1093
|
+
border-bottom-left-radius: 0;
|
|
1094
|
+
}
|
|
1095
|
+
&:last-of-type {
|
|
1096
|
+
border-top-right-radius: 0;
|
|
1097
|
+
border-top-left-radius: 0;
|
|
1098
|
+
border-bottom-right-radius: 4px;
|
|
1099
|
+
border-bottom-left-radius: 4px;
|
|
1100
|
+
}
|
|
1119
1101
|
}
|
|
1120
|
-
&:
|
|
1121
|
-
|
|
1122
|
-
border-top-left-radius: 0;
|
|
1123
|
-
border-bottom-right-radius: 4px;
|
|
1124
|
-
border-bottom-left-radius: 4px;
|
|
1102
|
+
&:not(.e-icon-btn) {
|
|
1103
|
+
flex-direction: column;
|
|
1125
1104
|
}
|
|
1126
1105
|
}
|
|
1127
1106
|
}
|
|
@@ -1131,9 +1110,7 @@
|
|
|
1131
1110
|
border-radius: $ribbon-group-button-ddb-border-radius;
|
|
1132
1111
|
|
|
1133
1112
|
.e-btn-icon {
|
|
1134
|
-
font-
|
|
1135
|
-
line-height: 16px;
|
|
1136
|
-
font-weight: $ribbon-items-font-weight;
|
|
1113
|
+
@include ribbon-font-styles(16px, $ribbon-items-font-weight, 16px);
|
|
1137
1114
|
margin: $ribbon-group-button-icon-margin;
|
|
1138
1115
|
width: auto;
|
|
1139
1116
|
&.e-icon-left {
|
|
@@ -1144,7 +1121,7 @@
|
|
|
1144
1121
|
padding: 0;
|
|
1145
1122
|
font-weight: $ribbon-items-font-weight;
|
|
1146
1123
|
font-size: $ribbon-items-btn-size;
|
|
1147
|
-
border:
|
|
1124
|
+
border: $ribbon-group-button-item-border;
|
|
1148
1125
|
text-transform: none;
|
|
1149
1126
|
|
|
1150
1127
|
&:not(.e-icon-btn) {
|
|
@@ -1160,30 +1137,31 @@
|
|
|
1160
1137
|
}
|
|
1161
1138
|
}
|
|
1162
1139
|
|
|
1140
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1141
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1142
|
+
.e-ribbon-popup-container .e-ribbon-gallery-header:first-child {
|
|
1143
|
+
padding-top: 0;
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1163
1146
|
.e-ribbon-gallery-popup.e-popup,
|
|
1164
1147
|
.e-ribbon-gallery-dropdown.e-popup {
|
|
1165
1148
|
border-radius: 4px;
|
|
1166
1149
|
padding: $ribbon-gallery-popup-padding;
|
|
1167
1150
|
overflow: auto;
|
|
1151
|
+
|
|
1168
1152
|
.e-ribbon-gallery-header {
|
|
1153
|
+
@include ribbon-font-styles($ribbon-gallery-header-fontsize, $ribbon-gallery-header-font-weight, $ribbon-gallery-header-line-height);
|
|
1169
1154
|
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
1155
|
}
|
|
1174
1156
|
.e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1175
|
-
margin:
|
|
1157
|
+
margin: 2px;
|
|
1176
1158
|
height: 54px;
|
|
1177
1159
|
width: $ribbon-gallery-popup-items-width;
|
|
1178
1160
|
}
|
|
1179
1161
|
}
|
|
1180
1162
|
|
|
1181
|
-
.e-ribbon-item {
|
|
1182
|
-
|
|
1183
|
-
.e-ribbon-gallery-item {
|
|
1184
|
-
width: $ribbon-gallery-items-width;
|
|
1185
|
-
}
|
|
1186
|
-
}
|
|
1163
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1164
|
+
width: $ribbon-gallery-items-width;
|
|
1187
1165
|
}
|
|
1188
1166
|
|
|
1189
1167
|
.e-ribbon-gallery-popup.e-popup,
|
|
@@ -1195,14 +1173,14 @@
|
|
|
1195
1173
|
margin: 0;
|
|
1196
1174
|
display: flex;
|
|
1197
1175
|
align-content: space-around;
|
|
1176
|
+
|
|
1198
1177
|
.e-ribbon-gallery-item {
|
|
1199
|
-
display
|
|
1178
|
+
@include ribbon-display(inherit, column);
|
|
1200
1179
|
align-items: center;
|
|
1201
1180
|
justify-content: center;
|
|
1202
1181
|
text-align: center;
|
|
1203
1182
|
list-style-type: none;
|
|
1204
1183
|
padding: $ribbon-gallery-popup-items-padding;
|
|
1205
|
-
flex-direction: column;
|
|
1206
1184
|
cursor: pointer;
|
|
1207
1185
|
border-width: 2px;
|
|
1208
1186
|
border-style: solid;
|
|
@@ -1216,19 +1194,8 @@
|
|
|
1216
1194
|
display: none;
|
|
1217
1195
|
}
|
|
1218
1196
|
|
|
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
1197
|
.e-ribbon-gallery-icons {
|
|
1229
|
-
font-size
|
|
1230
|
-
font-weight: $ribbon-gallery-icons-weight;
|
|
1231
|
-
line-height: $ribbon-gallery-icons-height;
|
|
1198
|
+
@include ribbon-font-styles($ribbon-gallery-icons-size, $ribbon-gallery-icons-weight, $ribbon-gallery-icons-height);
|
|
1232
1199
|
padding: 3px;
|
|
1233
1200
|
background-size: cover;
|
|
1234
1201
|
}
|
|
@@ -1240,11 +1207,19 @@
|
|
|
1240
1207
|
}
|
|
1241
1208
|
}
|
|
1242
1209
|
|
|
1210
|
+
.e-ribbon-gallery-text {
|
|
1211
|
+
@include ribbon-font-styles($ribbon-gallery-text-size, $ribbon-gallery-text-weight, $ribbon-gallery-text-line-height);
|
|
1212
|
+
width: inherit;
|
|
1213
|
+
overflow: hidden;
|
|
1214
|
+
white-space: nowrap;
|
|
1215
|
+
text-overflow: ellipsis;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1243
1218
|
.e-ribbon-keytip {
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1219
|
+
@include ribbon-font-props($ribbon-keytip-font-size, $ribbon-keytip-line-height);
|
|
1220
|
+
min-width: $ribbon-keytip-min-width;
|
|
1221
|
+
height: $ribbon-keytip-height;
|
|
1222
|
+
border-radius: $ribbon-keytip-border-radius;
|
|
1248
1223
|
|
|
1249
1224
|
&.e-popup-open {
|
|
1250
1225
|
display: flex;
|
|
@@ -1283,8 +1258,7 @@
|
|
|
1283
1258
|
align-items: center;
|
|
1284
1259
|
|
|
1285
1260
|
.e-menu-icon {
|
|
1286
|
-
font-
|
|
1287
|
-
line-height: 16px;
|
|
1261
|
+
@include ribbon-font-props(16px, 16px);
|
|
1288
1262
|
}
|
|
1289
1263
|
}
|
|
1290
1264
|
|
|
@@ -1293,8 +1267,7 @@
|
|
|
1293
1267
|
padding: 4px;
|
|
1294
1268
|
|
|
1295
1269
|
.e-ribbon-tooltip-title {
|
|
1296
|
-
font-
|
|
1297
|
-
line-height: 18px;
|
|
1270
|
+
@include ribbon-font-props(12px, 18px);
|
|
1298
1271
|
padding: 4px 4px 0;
|
|
1299
1272
|
}
|
|
1300
1273
|
|
|
@@ -1303,13 +1276,11 @@
|
|
|
1303
1276
|
display: flex;
|
|
1304
1277
|
|
|
1305
1278
|
.e-ribbon-tooltip-content {
|
|
1306
|
-
font-
|
|
1307
|
-
line-height: 15px;
|
|
1279
|
+
@include ribbon-font-props(10px, 15px);
|
|
1308
1280
|
}
|
|
1309
1281
|
|
|
1310
1282
|
.e-ribbon-tooltip-icon {
|
|
1311
|
-
font-
|
|
1312
|
-
line-height: 32px;
|
|
1283
|
+
@include ribbon-font-props(32px, 32px);
|
|
1313
1284
|
padding-right: 8px;
|
|
1314
1285
|
}
|
|
1315
1286
|
}
|
|
@@ -1318,7 +1289,6 @@
|
|
|
1318
1289
|
|
|
1319
1290
|
.e-bigger.e-ribbon.e-rbn,
|
|
1320
1291
|
.e-bigger .e-ribbon.e-rbn {
|
|
1321
|
-
|
|
1322
1292
|
.e-ribbon-group {
|
|
1323
1293
|
height: $ribbon-bigger-group-height;
|
|
1324
1294
|
}
|
|
@@ -1326,9 +1296,8 @@
|
|
|
1326
1296
|
.e-ribbon-tab {
|
|
1327
1297
|
.e-ribbon-file-menu,
|
|
1328
1298
|
.e-ribbon-backstage {
|
|
1329
|
-
|
|
1299
|
+
@include ribbon-font-props($ribbon-bigger-file-menu-size, $ribbon-bigger-file-menu-height);
|
|
1330
1300
|
padding: $ribbon-bigger-file-menu-padding;
|
|
1331
|
-
font-size: $ribbon-bigger-file-menu-size;
|
|
1332
1301
|
}
|
|
1333
1302
|
|
|
1334
1303
|
.e-ribbon-help-template {
|
|
@@ -1342,8 +1311,7 @@
|
|
|
1342
1311
|
|
|
1343
1312
|
.e-tab-header {
|
|
1344
1313
|
.e-hor-nav {
|
|
1345
|
-
height
|
|
1346
|
-
min-height: $ribbon-bigger-horizontal-nav-height;
|
|
1314
|
+
@include ribbon-items-height($ribbon-bigger-horizontal-nav-height, $ribbon-bigger-horizontal-nav-height);
|
|
1347
1315
|
}
|
|
1348
1316
|
|
|
1349
1317
|
.e-toolbar-items {
|
|
@@ -1354,20 +1322,16 @@
|
|
|
1354
1322
|
margin-right: 0;
|
|
1355
1323
|
|
|
1356
1324
|
.e-tab-text {
|
|
1357
|
-
font-size
|
|
1325
|
+
@include ribbon-font-props($ribbon-bigger-tab-text-size, $ribbon-bigger-tab-text-height);
|
|
1358
1326
|
padding: $ribbon-bigger-tab-text-padding;
|
|
1359
|
-
line-height: $ribbon-bigger-tab-text-height;
|
|
1360
1327
|
}
|
|
1361
1328
|
}
|
|
1362
1329
|
}
|
|
1363
1330
|
|
|
1364
|
-
&.e-focused .e-tab-header {
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
&:focus .e-text-wrap {
|
|
1369
|
-
height: $ribbon-bigger-toolbar-items-height;
|
|
1370
|
-
}
|
|
1331
|
+
&.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
1332
|
+
&:focus,
|
|
1333
|
+
&:focus .e-text-wrap {
|
|
1334
|
+
height: $ribbon-bigger-toolbar-items-height;
|
|
1371
1335
|
}
|
|
1372
1336
|
}
|
|
1373
1337
|
}
|
|
@@ -1378,8 +1342,7 @@
|
|
|
1378
1342
|
}
|
|
1379
1343
|
|
|
1380
1344
|
.e-ribbon-collapse-btn {
|
|
1381
|
-
|
|
1382
|
-
font-size: $ribbon-bigger-collapse-btn-font-size;
|
|
1345
|
+
@include ribbon-font-props($ribbon-bigger-collapse-btn-font-size, $ribbon-bigger-collapse-btn-height);
|
|
1383
1346
|
padding: $ribbon-bigger-collapse-btn-padding;
|
|
1384
1347
|
}
|
|
1385
1348
|
|
|
@@ -1393,9 +1356,8 @@
|
|
|
1393
1356
|
height: $ribbon-bigger-overall-overflow-btn-height;
|
|
1394
1357
|
|
|
1395
1358
|
.e-btn-icon {
|
|
1396
|
-
font-
|
|
1359
|
+
@include ribbon-font-props($ribbon-bigger-overflow-btn-font-size, $ribbon-bigger-overflow-btn-height);
|
|
1397
1360
|
padding: $ribbon-bigger-overflow-btn-icon-padding;
|
|
1398
|
-
line-height: $ribbon-bigger-overflow-btn-height;
|
|
1399
1361
|
}
|
|
1400
1362
|
}
|
|
1401
1363
|
|
|
@@ -1412,17 +1374,40 @@
|
|
|
1412
1374
|
}
|
|
1413
1375
|
}
|
|
1414
1376
|
}
|
|
1377
|
+
.e-ribbon-item {
|
|
1378
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
1379
|
+
height: $ribbon-bigger-gallery-wrapper-height;
|
|
1380
|
+
}
|
|
1381
|
+
&:has(.e-ribbon-gallery-container) {
|
|
1382
|
+
padding: 0;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1386
|
+
max-height: $ribbon-bigger-gallery-items-wrapper-height;
|
|
1387
|
+
width: $ribbon-bigger-gallery-items-wrapper-width;
|
|
1388
|
+
}
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
&.e-ribbon-simplified-mode {
|
|
1392
|
+
.e-ribbon-item {
|
|
1393
|
+
&:has(.e-ribbon-gallery-container:not(.e-hidden)) {
|
|
1394
|
+
height: $ribbon-bigger-gallery-simplified-wrapper-height;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1398
|
+
max-height: $ribbon-bigger-gallery-simplified-items-wrapper-height;
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1415
1402
|
}
|
|
1416
1403
|
|
|
1417
1404
|
.e-bigger.e-ribbon.e-rbn,
|
|
1418
1405
|
.e-bigger .e-ribbon.e-rbn,
|
|
1419
1406
|
.e-bigger .e-ribbon-group-overflow-ddb,
|
|
1420
1407
|
.e-bigger.e-ribbon-group-overflow-ddb {
|
|
1421
|
-
|
|
1422
1408
|
.e-ribbon-group-header {
|
|
1409
|
+
@include ribbon-font-props($ribbon-bigger-group-header-font-size, $ribbon-bigger-group-header-height);
|
|
1423
1410
|
padding: $ribbon-bigger-group-header-padding;
|
|
1424
|
-
line-height: $ribbon-bigger-group-header-height;
|
|
1425
|
-
font-size: $ribbon-bigger-group-header-font-size;
|
|
1426
1411
|
}
|
|
1427
1412
|
|
|
1428
1413
|
.e-ribbon-launcher-icon {
|
|
@@ -1434,7 +1419,6 @@
|
|
|
1434
1419
|
}
|
|
1435
1420
|
|
|
1436
1421
|
&.e-ribbon-simplified-mode {
|
|
1437
|
-
|
|
1438
1422
|
.e-ribbon-group {
|
|
1439
1423
|
height: auto;
|
|
1440
1424
|
}
|
|
@@ -1458,23 +1442,21 @@
|
|
|
1458
1442
|
|
|
1459
1443
|
.e-input-group {
|
|
1460
1444
|
height: $ribbon-bigger-input-group-height;
|
|
1461
|
-
margin
|
|
1445
|
+
margin: $ribbon-bigger-input-group-margin;
|
|
1462
1446
|
|
|
1463
1447
|
&:not(.e-float-input) .e-input {
|
|
1464
1448
|
min-height: auto;
|
|
1465
1449
|
}
|
|
1466
1450
|
|
|
1467
1451
|
input.e-input {
|
|
1452
|
+
@include ribbon-font-props($ribbon-bigger-input-items-size, $ribbon-bigger-input-items-height);
|
|
1468
1453
|
padding: $ribbon-bigger-input-padding;
|
|
1469
|
-
font-size: $ribbon-bigger-input-items-size;
|
|
1470
|
-
line-height: $ribbon-bigger-input-items-height;
|
|
1471
1454
|
height: auto;
|
|
1472
1455
|
}
|
|
1473
1456
|
|
|
1474
1457
|
&.e-control-wrapper {
|
|
1475
1458
|
.e-input-group-icon {
|
|
1476
|
-
font-size
|
|
1477
|
-
line-height: $ribbon-bigger-input-items-btn-height;
|
|
1459
|
+
@include ribbon-font-props($ribbon-bigger-input-items-btn-size, $ribbon-bigger-input-items-btn-height);
|
|
1478
1460
|
padding: $ribbon-bigger-input-icon-padding;
|
|
1479
1461
|
|
|
1480
1462
|
&.e-ddl-icon {
|
|
@@ -1500,9 +1482,9 @@
|
|
|
1500
1482
|
.e-ribbon-item {
|
|
1501
1483
|
&.e-ribbon-large-item {
|
|
1502
1484
|
.e-btn {
|
|
1485
|
+
@include ribbon-font-props($ribbon-bigger-large-items-btn-size, $ribbon-bigger-large-items-btn-height);
|
|
1503
1486
|
padding: $ribbon-bigger-large-items-btn-padding;
|
|
1504
|
-
|
|
1505
|
-
line-height: $ribbon-bigger-large-items-btn-height;
|
|
1487
|
+
max-width: $ribbon-bigger-large-items-max-width;
|
|
1506
1488
|
|
|
1507
1489
|
.e-btn-icon:not(.e-caret) {
|
|
1508
1490
|
font-size: $ribbon-bigger-large-items-icon-size;
|
|
@@ -1514,35 +1496,27 @@
|
|
|
1514
1496
|
}
|
|
1515
1497
|
}
|
|
1516
1498
|
|
|
1517
|
-
.e-dropdown-btn {
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
line-height: $ribbon-bigger-dropdown-btn-line-height;
|
|
1521
|
-
padding: $ribbon-bigger-caret-dropdown-btn-padding;
|
|
1522
|
-
}
|
|
1499
|
+
.e-dropdown-btn .e-caret {
|
|
1500
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-btn-size, $ribbon-bigger-dropdown-btn-line-height);
|
|
1501
|
+
padding: $ribbon-bigger-caret-dropdown-btn-padding;
|
|
1523
1502
|
}
|
|
1524
1503
|
}
|
|
1525
1504
|
|
|
1526
1505
|
.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
|
-
}
|
|
1506
|
+
.e-dropdown-btn .e-caret {
|
|
1507
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-btn-size, $ribbon-bigger-dropdown-btn-line-height);
|
|
1508
|
+
padding: $ribbon-bigger-dropdown-btn-padding;
|
|
1533
1509
|
}
|
|
1534
1510
|
}
|
|
1535
1511
|
|
|
1536
1512
|
&.e-ribbon-medium-item,
|
|
1537
1513
|
&.e-ribbon-small-item {
|
|
1538
1514
|
.e-btn {
|
|
1539
|
-
font-
|
|
1540
|
-
line-height: $ribbon-bigger-items-height;
|
|
1515
|
+
@include ribbon-font-props($ribbon-bigger-items-btn-size, $ribbon-bigger-items-height);
|
|
1541
1516
|
|
|
1542
1517
|
.e-btn-icon {
|
|
1543
|
-
font-size
|
|
1518
|
+
@include ribbon-font-props($ribbon-bigger-items-icon-size, $ribbon-bigger-items-icon-height);
|
|
1544
1519
|
margin: $ribbon-bigger-items-margin;
|
|
1545
|
-
line-height: $ribbon-bigger-items-icon-height;
|
|
1546
1520
|
}
|
|
1547
1521
|
}
|
|
1548
1522
|
|
|
@@ -1556,10 +1530,13 @@
|
|
|
1556
1530
|
}
|
|
1557
1531
|
}
|
|
1558
1532
|
|
|
1533
|
+
.e-split-btn-wrapper:has(.e-icon-btn) .e-dropdown-btn .e-caret {
|
|
1534
|
+
padding: $ribbon-bigger-colorpicker-caret-btn-padding;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1559
1537
|
.e-dropdown-btn .e-caret {
|
|
1560
|
-
font-size
|
|
1538
|
+
@include ribbon-font-props($ribbon-bigger-dropdown-caret-btn-size, $ribbon-bigger-dropdown-caret-btn-height);
|
|
1561
1539
|
padding: $ribbon-bigger-dropdown-caret-btn-padding;
|
|
1562
|
-
line-height: $ribbon-bigger-dropdown-caret-btn-height;
|
|
1563
1540
|
margin: 0;
|
|
1564
1541
|
}
|
|
1565
1542
|
}
|
|
@@ -1579,11 +1556,9 @@
|
|
|
1579
1556
|
.e-bigger .e-ribbon-group-overflow-ddb,
|
|
1580
1557
|
.e-bigger.e-ribbon-group-overflow-ddb {
|
|
1581
1558
|
.e-ribbon-overflow-target {
|
|
1582
|
-
|
|
1583
1559
|
.e-ribbon-overflow-header {
|
|
1584
|
-
|
|
1560
|
+
@include ribbon-font-props($ribbon-bigger-overflow-header-font-size, $ribbon-bigger-overflow-header-line-height);
|
|
1585
1561
|
height: $ribbon-bigger-overflow-header-height;
|
|
1586
|
-
font-size: $ribbon-bigger-overflow-header-font-size;
|
|
1587
1562
|
}
|
|
1588
1563
|
|
|
1589
1564
|
.e-ribbon-item {
|
|
@@ -1596,12 +1571,10 @@
|
|
|
1596
1571
|
&.e-ribbon-medium-item {
|
|
1597
1572
|
height: $ribbon-bigger-medium-item-height;
|
|
1598
1573
|
}
|
|
1599
|
-
.e-btn {
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
margin: 0;
|
|
1604
|
-
}
|
|
1574
|
+
.e-btn .e-btn-icon {
|
|
1575
|
+
font-size: $ribbon-bigger-items-btn-icon-size;
|
|
1576
|
+
&.e-icon-left {
|
|
1577
|
+
margin: 0;
|
|
1605
1578
|
}
|
|
1606
1579
|
}
|
|
1607
1580
|
&:has(.e-colorpicker-wrapper) {
|
|
@@ -1624,75 +1597,79 @@
|
|
|
1624
1597
|
}
|
|
1625
1598
|
}
|
|
1626
1599
|
|
|
1627
|
-
&:not(.e-rtl) {
|
|
1628
|
-
.e-ribbon-overflow-
|
|
1629
|
-
|
|
1630
|
-
|
|
1600
|
+
&:not(.e-rtl) .e-ribbon-overflow-target {
|
|
1601
|
+
.e-ribbon-overflow-header {
|
|
1602
|
+
padding: $ribbon-bigger-overflow-header-padding;
|
|
1603
|
+
}
|
|
1604
|
+
.e-ribbon-item {
|
|
1605
|
+
.e-ribbon-combobox-label,
|
|
1606
|
+
.e-ribbon-colorpicker-label {
|
|
1607
|
+
margin-left: $ribbon-bigger-items-label;
|
|
1631
1608
|
}
|
|
1632
|
-
.e-ribbon-item {
|
|
1633
1609
|
|
|
1634
|
-
|
|
1635
|
-
.e-
|
|
1636
|
-
|
|
1610
|
+
&.e-ribbon-medium-item {
|
|
1611
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1612
|
+
padding: $ribbon-bigger-button-icon-padding;
|
|
1637
1613
|
}
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
.e-btn {
|
|
1641
|
-
|
|
1642
|
-
padding: $ribbon-bigger-button-icon-padding;
|
|
1643
|
-
}
|
|
1614
|
+
|
|
1615
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1616
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1617
|
+
padding-left: $ribbon-bigger-items-label;
|
|
1644
1618
|
}
|
|
1645
1619
|
}
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1623
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1624
|
+
margin-left: $ribbon-bigger-items-label;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
>.e-split-btn-wrapper,
|
|
1628
|
+
>.e-dropdown-btn {
|
|
1629
|
+
.e-icons.e-caret {
|
|
1630
|
+
padding: $ribbon-bigger-caret-icon-padding;
|
|
1656
1631
|
}
|
|
1657
1632
|
}
|
|
1658
1633
|
}
|
|
1659
1634
|
}
|
|
1660
1635
|
|
|
1661
|
-
&.e-rtl {
|
|
1662
|
-
.e-ribbon-overflow-
|
|
1663
|
-
|
|
1664
|
-
|
|
1636
|
+
&.e-rtl .e-ribbon-overflow-target {
|
|
1637
|
+
.e-ribbon-overflow-header {
|
|
1638
|
+
padding: $ribbon-bigger-rtl-overflow-header-padding;
|
|
1639
|
+
}
|
|
1640
|
+
.e-ribbon-item {
|
|
1641
|
+
.e-ribbon-combobox-label,
|
|
1642
|
+
.e-ribbon-colorpicker-label {
|
|
1643
|
+
margin-right: $ribbon-bigger-items-label;
|
|
1665
1644
|
}
|
|
1666
|
-
.e-ribbon-item {
|
|
1667
1645
|
|
|
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;
|
|
1646
|
+
&.e-ribbon-medium-item {
|
|
1647
|
+
.e-btn .e-btn-icon.e-icon-left {
|
|
1648
|
+
padding: $ribbon-bigger-rtl-button-icon-padding;
|
|
1683
1649
|
}
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
padding: $ribbon-bigger-rtl-caret-icon-padding;
|
|
1650
|
+
|
|
1651
|
+
&:not(:has(.e-colorpicker-wrapper)) .e-btn {
|
|
1652
|
+
&:not(:has(.e-btn-icon.e-icon-left)) {
|
|
1653
|
+
padding-right: $ribbon-bigger-items-label;
|
|
1689
1654
|
}
|
|
1690
1655
|
}
|
|
1691
1656
|
}
|
|
1692
|
-
|
|
1693
|
-
|
|
1657
|
+
|
|
1658
|
+
&:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1659
|
+
&:not(:has(.e-ribbon-combobox-label)) .e-input-group.e-control-wrapper {
|
|
1660
|
+
margin-right: $ribbon-bigger-items-label;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
>.e-split-btn-wrapper,
|
|
1664
|
+
>.e-dropdown-btn {
|
|
1665
|
+
.e-icons.e-caret {
|
|
1666
|
+
padding: $ribbon-bigger-rtl-caret-icon-padding;
|
|
1667
|
+
}
|
|
1694
1668
|
}
|
|
1695
1669
|
}
|
|
1670
|
+
.e-ribbon-item > .e-checkbox-wrapper {
|
|
1671
|
+
margin: $ribbon-bigger-rtl-checkbox-margin;
|
|
1672
|
+
}
|
|
1696
1673
|
}
|
|
1697
1674
|
}
|
|
1698
1675
|
|
|
@@ -1701,8 +1678,7 @@
|
|
|
1701
1678
|
height: $ribbon-bigger-ddb-popup-height;
|
|
1702
1679
|
|
|
1703
1680
|
.e-menu-icon {
|
|
1704
|
-
font-
|
|
1705
|
-
line-height: 20px;
|
|
1681
|
+
@include ribbon-font-props(20px, 20px);
|
|
1706
1682
|
}
|
|
1707
1683
|
}
|
|
1708
1684
|
|
|
@@ -1710,26 +1686,18 @@
|
|
|
1710
1686
|
.e-bigger.e-ribbon-menu.e-menu-wrapper ul.e-vertical,
|
|
1711
1687
|
.e-bigger .e-ribbon-menu.e-menu-wrapper ul.e-ul,
|
|
1712
1688
|
.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
|
-
}
|
|
1689
|
+
.e-menu-item.e-blankicon {
|
|
1690
|
+
padding-left: $ribbon-bigger-menu-blank-icon-padding !important; /* stylelint-disable-line declaration-no-important */
|
|
1718
1691
|
}
|
|
1719
1692
|
}
|
|
1720
1693
|
|
|
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;
|
|
1694
|
+
.e-bigger .e-ribbon-backstage-popup .e-ribbon-backstage-wrapper .e-btn {
|
|
1695
|
+
height: $ribbon-bigger-backstage-btn-height;
|
|
1696
|
+
line-height: $ribbon-bigger-backstage-btn-line-height;
|
|
1726
1697
|
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
padding: $ribbon-bigger-backstage-btn-icon-padding;
|
|
1731
|
-
}
|
|
1732
|
-
}
|
|
1698
|
+
.e-btn-icon {
|
|
1699
|
+
@include ribbon-font-props($ribbon-bigger-backstage-btn-icon-font-size, $ribbon-bigger-backstage-btn-icon-line-height);
|
|
1700
|
+
padding: $ribbon-bigger-backstage-btn-icon-padding;
|
|
1733
1701
|
}
|
|
1734
1702
|
}
|
|
1735
1703
|
|
|
@@ -1741,8 +1709,7 @@
|
|
|
1741
1709
|
height: $ribbon-bigger-backstage-menu-item-height;
|
|
1742
1710
|
|
|
1743
1711
|
.e-menu-icon {
|
|
1744
|
-
font-size
|
|
1745
|
-
line-height: $ribbon-bigger-backstage-menu-icon-line-height;
|
|
1712
|
+
@include ribbon-font-props($ribbon-bigger-backstage-menu-icon-font-size, $ribbon-bigger-backstage-menu-icon-line-height);
|
|
1746
1713
|
padding: $ribbon-bigger-backstage-menu-icon-padding;
|
|
1747
1714
|
}
|
|
1748
1715
|
|
|
@@ -1757,8 +1724,7 @@
|
|
|
1757
1724
|
padding: $ribbon-group-button-ddb-padding;
|
|
1758
1725
|
.e-btn-group {
|
|
1759
1726
|
.e-btn-icon {
|
|
1760
|
-
font-size
|
|
1761
|
-
line-height: $ribbon-bigger-items-icon-height;
|
|
1727
|
+
@include ribbon-font-props($ribbon-bigger-items-icon-size, $ribbon-bigger-items-icon-height);
|
|
1762
1728
|
margin: $ribbon-bigger-group-button-icon-margin;
|
|
1763
1729
|
&.e-icon-left {
|
|
1764
1730
|
padding: $ribbon-bigger-group-button-icon-padding;
|
|
@@ -1779,9 +1745,15 @@
|
|
|
1779
1745
|
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1780
1746
|
padding: $ribbon-bigger-gallery-popup-padding;
|
|
1781
1747
|
.e-ribbon-gallery-header {
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
line-height: $ribbon-bigger-gallery-header-line-height;
|
|
1748
|
+
@include ribbon-font-props($ribbon-bigger-gallery-header-fontsize, $ribbon-bigger-gallery-header-line-height);
|
|
1749
|
+
padding: $ribbon-bigger-gallery-header-padding;
|
|
1785
1750
|
}
|
|
1786
1751
|
}
|
|
1752
|
+
|
|
1753
|
+
.e-bigger.e-ribbon-keytip,
|
|
1754
|
+
.e-bigger .e-ribbon-keytip {
|
|
1755
|
+
@include ribbon-font-props($ribbon-bigger-keytip-font-size, $ribbon-bigger-keytip-line-height);
|
|
1756
|
+
min-width: $ribbon-bigger-keytip-min-width;
|
|
1757
|
+
height: $ribbon-bigger-keytip-height;
|
|
1758
|
+
}
|
|
1787
1759
|
}
|