@syncfusion/ej2-ribbon 24.2.8 → 25.1.41
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/CHANGELOG.md +8 -4
- package/README.md +3 -0
- 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 +2164 -217
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +2293 -226
- 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/global.js +1 -1
- package/src/ribbon/base/constant.d.ts +8 -0
- package/src/ribbon/base/constant.js +8 -0
- package/src/ribbon/base/interface.d.ts +114 -1
- package/src/ribbon/base/interface.js +4 -0
- package/src/ribbon/base/ribbon-model.d.ts +22 -1
- package/src/ribbon/base/ribbon.d.ts +70 -5
- package/src/ribbon/base/ribbon.js +571 -157
- package/src/ribbon/base/utils.d.ts +3 -2
- package/src/ribbon/base/utils.js +3 -2
- package/src/ribbon/items/index.d.ts +1 -0
- package/src/ribbon/items/index.js +1 -0
- package/src/ribbon/items/ribbon-colorpicker.js +6 -1
- package/src/ribbon/items/ribbon-gallery.d.ts +87 -0
- package/src/ribbon/items/ribbon-gallery.js +712 -0
- package/src/ribbon/items/ribbon-groupbutton.js +3 -0
- package/src/ribbon/models/index.d.ts +8 -0
- package/src/ribbon/models/index.js +4 -0
- package/src/ribbon/models/ribbon-back-stage-settings-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-back-stage-settings.d.ts +6 -0
- package/src/ribbon/models/ribbon-back-stage-settings.js +3 -0
- package/src/ribbon/models/ribbon-backstage-item-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-backstage-item.d.ts +6 -0
- package/src/ribbon/models/ribbon-backstage-item.js +3 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings-model.d.ts +30 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings.d.ts +33 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings.js +50 -0
- package/src/ribbon/models/ribbon-file-menu-settings-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-file-menu-settings.d.ts +6 -0
- package/src/ribbon/models/ribbon-file-menu-settings.js +3 -0
- package/src/ribbon/models/ribbon-gallery-group-model.d.ts +44 -0
- package/src/ribbon/models/ribbon-gallery-group.d.ts +38 -0
- package/src/ribbon/models/ribbon-gallery-group.js +47 -0
- package/src/ribbon/models/ribbon-gallery-item-model.d.ts +43 -0
- package/src/ribbon/models/ribbon-gallery-item.d.ts +38 -0
- package/src/ribbon/models/ribbon-gallery-item.js +46 -0
- package/src/ribbon/models/ribbon-gallery-settings-model.d.ts +108 -0
- package/src/ribbon/models/ribbon-gallery-settings.d.ts +95 -0
- package/src/ribbon/models/ribbon-gallery-settings.js +71 -0
- package/src/ribbon/models/ribbon-group-button-item-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-group-button-item.d.ts +6 -0
- package/src/ribbon/models/ribbon-group-button-item.js +3 -0
- package/src/ribbon/models/ribbon-group-model.d.ts +14 -0
- package/src/ribbon/models/ribbon-group.d.ts +12 -0
- package/src/ribbon/models/ribbon-group.js +6 -0
- package/src/ribbon/models/ribbon-item-model.d.ts +15 -1
- package/src/ribbon/models/ribbon-item.d.ts +13 -0
- package/src/ribbon/models/ribbon-item.js +7 -0
- package/src/ribbon/models/ribbon-tab-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-tab.d.ts +6 -0
- package/src/ribbon/models/ribbon-tab.js +3 -0
- package/src/ribbon/modules/index.d.ts +2 -0
- package/src/ribbon/modules/index.js +2 -0
- package/src/ribbon/modules/ribbon-backstage.d.ts +2 -0
- package/src/ribbon/modules/ribbon-backstage.js +37 -0
- package/src/ribbon/modules/ribbon-contextualtab.d.ts +27 -0
- package/src/ribbon/modules/ribbon-contextualtab.js +90 -0
- package/src/ribbon/modules/ribbon-filemenu.d.ts +2 -0
- package/src/ribbon/modules/ribbon-filemenu.js +19 -0
- package/src/ribbon/modules/ribbon-keytip.d.ts +54 -0
- package/src/ribbon/modules/ribbon-keytip.js +554 -0
- package/styles/bootstrap-dark.css +398 -24
- package/styles/bootstrap.css +389 -15
- package/styles/bootstrap4.css +398 -24
- package/styles/bootstrap5-dark.css +391 -17
- package/styles/bootstrap5.css +391 -17
- package/styles/fabric-dark.css +388 -14
- package/styles/fabric.css +387 -13
- package/styles/fluent-dark.css +389 -15
- package/styles/fluent.css +389 -15
- package/styles/highcontrast-light.css +381 -7
- package/styles/highcontrast.css +390 -16
- package/styles/material-dark.css +391 -17
- package/styles/material.css +391 -17
- package/styles/material3-dark.css +389 -15
- package/styles/material3.css +389 -15
- package/styles/ribbon/_bds-definition.scss +360 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +81 -6
- package/styles/ribbon/_bootstrap-definition.scss +81 -6
- package/styles/ribbon/_bootstrap4-definition.scss +82 -7
- package/styles/ribbon/_bootstrap5-definition.scss +81 -6
- package/styles/ribbon/_fabric-dark-definition.scss +78 -3
- package/styles/ribbon/_fabric-definition.scss +78 -3
- package/styles/ribbon/_fluent-definition.scss +80 -5
- package/styles/ribbon/_fusionnew-definition.scss +76 -1
- package/styles/ribbon/_highcontrast-definition.scss +80 -5
- package/styles/ribbon/_highcontrast-light-definition.scss +76 -1
- package/styles/ribbon/_layout.scss +344 -38
- package/styles/ribbon/_material-dark-definition.scss +80 -5
- package/styles/ribbon/_material-definition.scss +81 -6
- package/styles/ribbon/_material3-definition.scss +80 -5
- package/styles/ribbon/_tailwind-definition.scss +80 -5
- package/styles/ribbon/_theme.scss +71 -0
- package/styles/ribbon/bootstrap-dark.css +398 -24
- package/styles/ribbon/bootstrap.css +389 -15
- package/styles/ribbon/bootstrap4.css +398 -24
- package/styles/ribbon/bootstrap5-dark.css +391 -17
- package/styles/ribbon/bootstrap5.css +391 -17
- package/styles/ribbon/fabric-dark.css +388 -14
- package/styles/ribbon/fabric.css +387 -13
- package/styles/ribbon/fluent-dark.css +389 -15
- package/styles/ribbon/fluent.css +389 -15
- package/styles/ribbon/highcontrast-light.css +381 -7
- package/styles/ribbon/highcontrast.css +390 -16
- package/styles/ribbon/icons/_bds.scss +9 -0
- package/styles/ribbon/material-dark.css +391 -17
- package/styles/ribbon/material.css +391 -17
- package/styles/ribbon/material3-dark.css +389 -15
- package/styles/ribbon/material3.css +389 -15
- package/styles/ribbon/tailwind-dark.css +390 -16
- package/styles/ribbon/tailwind.css +390 -16
- package/styles/tailwind-dark.css +390 -16
- package/styles/tailwind.css +390 -16
|
@@ -482,6 +482,21 @@
|
|
|
482
482
|
.e-ribbon.e-rbn.e-ribbon-minimize .e-ribbon-tab .e-content, .e-ribbon.e-rbn.e-ribbon-minimize .e-ribbon-collapse-btn, .e-ribbon.e-rbn.e-ribbon-minimize .e-ribbon-overall-of-btn {
|
|
483
483
|
display: none;
|
|
484
484
|
}
|
|
485
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
486
|
+
height: 30px;
|
|
487
|
+
}
|
|
488
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
489
|
+
padding: 5px 0;
|
|
490
|
+
width: 78px;
|
|
491
|
+
margin: 2px;
|
|
492
|
+
max-height: 26px;
|
|
493
|
+
}
|
|
494
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
495
|
+
pointer-events: none;
|
|
496
|
+
}
|
|
497
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
498
|
+
font-size: 12px;
|
|
499
|
+
}
|
|
485
500
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
486
501
|
overflow-y: hidden;
|
|
487
502
|
}
|
|
@@ -777,6 +792,28 @@
|
|
|
777
792
|
padding: 1px;
|
|
778
793
|
vertical-align: middle;
|
|
779
794
|
}
|
|
795
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
796
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
797
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
798
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
799
|
+
height: 80px;
|
|
800
|
+
display: -ms-flexbox;
|
|
801
|
+
display: flex;
|
|
802
|
+
}
|
|
803
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
804
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
805
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
806
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
807
|
+
max-height: 80px;
|
|
808
|
+
}
|
|
809
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
810
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
811
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
812
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
813
|
+
padding: 0;
|
|
814
|
+
border-width: 0 0 0 1px;
|
|
815
|
+
border-radius: 0 4px 4px 0;
|
|
816
|
+
}
|
|
780
817
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
781
818
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
782
819
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -882,6 +919,13 @@
|
|
|
882
919
|
min-height: 33%;
|
|
883
920
|
padding: 2px;
|
|
884
921
|
}
|
|
922
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
923
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
924
|
+
padding: 0;
|
|
925
|
+
border-style: solid;
|
|
926
|
+
border-width: 1px;
|
|
927
|
+
border-radius: 4px;
|
|
928
|
+
}
|
|
885
929
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
886
930
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
887
931
|
box-shadow: none;
|
|
@@ -1028,9 +1072,36 @@
|
|
|
1028
1072
|
padding: 0 0 0 2px;
|
|
1029
1073
|
}
|
|
1030
1074
|
|
|
1075
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup:has(.e-ribbon-overflow-target) {
|
|
1076
|
+
min-width: 190px;
|
|
1077
|
+
}
|
|
1031
1078
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
1032
1079
|
display: none;
|
|
1033
1080
|
}
|
|
1081
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
1082
|
+
border: 0;
|
|
1083
|
+
}
|
|
1084
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
1085
|
+
margin: 5px 0;
|
|
1086
|
+
}
|
|
1087
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
1088
|
+
padding: 0;
|
|
1089
|
+
display: -ms-flexbox;
|
|
1090
|
+
display: flex;
|
|
1091
|
+
-ms-flex-align: center;
|
|
1092
|
+
align-items: center;
|
|
1093
|
+
-ms-flex-pack: start;
|
|
1094
|
+
justify-content: flex-start;
|
|
1095
|
+
width: 100%;
|
|
1096
|
+
}
|
|
1097
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
1098
|
+
margin: 0;
|
|
1099
|
+
}
|
|
1100
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
1101
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
1102
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
1103
|
+
display: none;
|
|
1104
|
+
}
|
|
1034
1105
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
1035
1106
|
display: none;
|
|
1036
1107
|
}
|
|
@@ -1043,6 +1114,12 @@
|
|
|
1043
1114
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
1044
1115
|
pointer-events: none;
|
|
1045
1116
|
}
|
|
1117
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1118
|
+
font-size: 14px;
|
|
1119
|
+
}
|
|
1120
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1121
|
+
height: 32px;
|
|
1122
|
+
}
|
|
1046
1123
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1047
1124
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1048
1125
|
white-space: nowrap;
|
|
@@ -1051,23 +1128,34 @@
|
|
|
1051
1128
|
-ms-flex-align: center;
|
|
1052
1129
|
align-items: center;
|
|
1053
1130
|
font-weight: 400;
|
|
1054
|
-
font-size:
|
|
1131
|
+
font-size: 14px;
|
|
1132
|
+
}
|
|
1133
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1134
|
+
-ms-flex-align: center;
|
|
1135
|
+
align-items: center;
|
|
1055
1136
|
}
|
|
1056
1137
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1057
1138
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
1058
1139
|
margin: 3px 4px;
|
|
1059
1140
|
}
|
|
1141
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1142
|
+
font-size: 16px;
|
|
1143
|
+
}
|
|
1060
1144
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1061
|
-
margin:
|
|
1145
|
+
margin: 8px 0 8px 12px;
|
|
1062
1146
|
padding: 0;
|
|
1063
1147
|
}
|
|
1064
1148
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1065
1149
|
padding: 0;
|
|
1066
1150
|
width: 100%;
|
|
1151
|
+
height: 32px;
|
|
1152
|
+
}
|
|
1153
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1154
|
+
margin: 0;
|
|
1067
1155
|
}
|
|
1068
1156
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
1069
1157
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
1070
|
-
line-height:
|
|
1158
|
+
line-height: 20px;
|
|
1071
1159
|
overflow: hidden;
|
|
1072
1160
|
}
|
|
1073
1161
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -1080,32 +1168,52 @@
|
|
|
1080
1168
|
justify-content: flex-start;
|
|
1081
1169
|
}
|
|
1082
1170
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1083
|
-
padding:
|
|
1171
|
+
padding: 6px 0 6px 12px;
|
|
1172
|
+
font-size: 14px;
|
|
1084
1173
|
font-weight: 500;
|
|
1085
1174
|
line-height: 18px;
|
|
1175
|
+
height: 26px;
|
|
1086
1176
|
}
|
|
1087
1177
|
|
|
1088
1178
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1089
1179
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1090
|
-
margin-left:
|
|
1180
|
+
margin-left: 36px;
|
|
1181
|
+
}
|
|
1182
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1183
|
+
padding: 8px 8px 8px 12px;
|
|
1184
|
+
}
|
|
1185
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1186
|
+
margin-left: 36px;
|
|
1091
1187
|
}
|
|
1092
1188
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1093
1189
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1094
1190
|
transform: rotate(-90deg);
|
|
1095
|
-
padding:
|
|
1191
|
+
padding: 0 12px;
|
|
1096
1192
|
margin: 0 0 0 auto;
|
|
1097
1193
|
}
|
|
1098
1194
|
|
|
1195
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1196
|
+
padding: 6px 12px 6px 0;
|
|
1197
|
+
}
|
|
1099
1198
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1100
1199
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1101
|
-
margin-right:
|
|
1200
|
+
margin-right: 36px;
|
|
1201
|
+
}
|
|
1202
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1203
|
+
padding: 8px 12px 8px 8px;
|
|
1204
|
+
}
|
|
1205
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1206
|
+
margin-right: 36px;
|
|
1102
1207
|
}
|
|
1103
1208
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1104
1209
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1105
1210
|
transform: rotate(90deg);
|
|
1106
|
-
padding:
|
|
1211
|
+
padding: 0 12px;
|
|
1107
1212
|
margin: 0 auto 0 0;
|
|
1108
1213
|
}
|
|
1214
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1215
|
+
margin: 8px 12px 8px 0;
|
|
1216
|
+
}
|
|
1109
1217
|
|
|
1110
1218
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1111
1219
|
-ms-flex-direction: column;
|
|
@@ -1132,6 +1240,18 @@
|
|
|
1132
1240
|
-ms-flex-pack: start;
|
|
1133
1241
|
justify-content: flex-start;
|
|
1134
1242
|
}
|
|
1243
|
+
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:has(.e-ribbon-group-button-content) .e-btn.e-ribbon-group-button:first-of-type {
|
|
1244
|
+
border-top-right-radius: 4px;
|
|
1245
|
+
border-top-left-radius: 4px;
|
|
1246
|
+
border-bottom-right-radius: 0;
|
|
1247
|
+
border-bottom-left-radius: 0;
|
|
1248
|
+
}
|
|
1249
|
+
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:has(.e-ribbon-group-button-content) .e-btn.e-ribbon-group-button:last-of-type {
|
|
1250
|
+
border-top-right-radius: 0;
|
|
1251
|
+
border-top-left-radius: 0;
|
|
1252
|
+
border-bottom-right-radius: 4px;
|
|
1253
|
+
border-bottom-left-radius: 4px;
|
|
1254
|
+
}
|
|
1135
1255
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
1136
1256
|
box-shadow: none;
|
|
1137
1257
|
border-radius: 4px;
|
|
@@ -1150,7 +1270,7 @@
|
|
|
1150
1270
|
padding: 0;
|
|
1151
1271
|
font-weight: 400;
|
|
1152
1272
|
font-size: 12px;
|
|
1153
|
-
border:
|
|
1273
|
+
border: 1px solid rgba(var(--color-sf-outline));
|
|
1154
1274
|
text-transform: none;
|
|
1155
1275
|
}
|
|
1156
1276
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1161,6 +1281,119 @@
|
|
|
1161
1281
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1162
1282
|
}
|
|
1163
1283
|
|
|
1284
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1285
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1286
|
+
border-radius: 4px;
|
|
1287
|
+
padding: 0 12px 12px;
|
|
1288
|
+
overflow: auto;
|
|
1289
|
+
}
|
|
1290
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1291
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1292
|
+
padding: 8px 0;
|
|
1293
|
+
font-size: 12px;
|
|
1294
|
+
font-weight: 500;
|
|
1295
|
+
line-height: 18px;
|
|
1296
|
+
}
|
|
1297
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1298
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1299
|
+
margin: 4px;
|
|
1300
|
+
height: 54px;
|
|
1301
|
+
width: 73px;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1305
|
+
width: 95px;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1309
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1310
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1311
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1312
|
+
padding: 0;
|
|
1313
|
+
margin: 0;
|
|
1314
|
+
display: -ms-flexbox;
|
|
1315
|
+
display: flex;
|
|
1316
|
+
-ms-flex-line-pack: distribute;
|
|
1317
|
+
align-content: space-around;
|
|
1318
|
+
}
|
|
1319
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1320
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1321
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1322
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1323
|
+
display: inherit;
|
|
1324
|
+
-ms-flex-align: center;
|
|
1325
|
+
align-items: center;
|
|
1326
|
+
-ms-flex-pack: center;
|
|
1327
|
+
justify-content: center;
|
|
1328
|
+
text-align: center;
|
|
1329
|
+
list-style-type: none;
|
|
1330
|
+
padding: 5px 0;
|
|
1331
|
+
-ms-flex-direction: column;
|
|
1332
|
+
flex-direction: column;
|
|
1333
|
+
cursor: pointer;
|
|
1334
|
+
border-width: 2px;
|
|
1335
|
+
border-style: solid;
|
|
1336
|
+
border-radius: 4px;
|
|
1337
|
+
}
|
|
1338
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1339
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1340
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1341
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1342
|
+
pointer-events: none;
|
|
1343
|
+
}
|
|
1344
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1345
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1346
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1347
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1348
|
+
display: none;
|
|
1349
|
+
}
|
|
1350
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1351
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1352
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1353
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1354
|
+
font-size: 14px;
|
|
1355
|
+
font-weight: 400;
|
|
1356
|
+
line-height: 20px;
|
|
1357
|
+
width: inherit;
|
|
1358
|
+
overflow: hidden;
|
|
1359
|
+
white-space: nowrap;
|
|
1360
|
+
text-overflow: ellipsis;
|
|
1361
|
+
}
|
|
1362
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1363
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1364
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1365
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1366
|
+
font-size: 20px;
|
|
1367
|
+
font-weight: 400;
|
|
1368
|
+
line-height: 20px;
|
|
1369
|
+
padding: 3px;
|
|
1370
|
+
background-size: cover;
|
|
1371
|
+
}
|
|
1372
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover, .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1373
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1374
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1375
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1376
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1377
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1378
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1379
|
+
border-radius: 4px;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.e-ribbon-keytip {
|
|
1383
|
+
min-width: 20px;
|
|
1384
|
+
height: 20px;
|
|
1385
|
+
line-height: 18px;
|
|
1386
|
+
font-size: 14px;
|
|
1387
|
+
}
|
|
1388
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1389
|
+
display: -ms-flexbox;
|
|
1390
|
+
display: flex;
|
|
1391
|
+
-ms-flex-pack: center;
|
|
1392
|
+
justify-content: center;
|
|
1393
|
+
-ms-flex-align: center;
|
|
1394
|
+
align-items: center;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1164
1397
|
.e-ribbon-menu {
|
|
1165
1398
|
display: block;
|
|
1166
1399
|
}
|
|
@@ -1562,11 +1795,42 @@
|
|
|
1562
1795
|
border-radius: 4px;
|
|
1563
1796
|
}
|
|
1564
1797
|
|
|
1798
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1799
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1800
|
+
line-height: 20px;
|
|
1801
|
+
height: 36px;
|
|
1802
|
+
font-size: 16px;
|
|
1803
|
+
}
|
|
1804
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1805
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1806
|
+
font-size: 16px;
|
|
1807
|
+
}
|
|
1808
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1809
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1810
|
+
height: 40px;
|
|
1811
|
+
}
|
|
1812
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1813
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1814
|
+
height: 40px;
|
|
1815
|
+
}
|
|
1816
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1817
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1818
|
+
font-size: 20px;
|
|
1819
|
+
}
|
|
1820
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1821
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1822
|
+
margin: 0;
|
|
1823
|
+
}
|
|
1824
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1825
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1826
|
+
-ms-flex-align: center;
|
|
1827
|
+
align-items: center;
|
|
1828
|
+
}
|
|
1565
1829
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1566
1830
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1567
1831
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1568
1832
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1569
|
-
font-size:
|
|
1833
|
+
font-size: 16px;
|
|
1570
1834
|
}
|
|
1571
1835
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1572
1836
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1576,32 +1840,60 @@
|
|
|
1576
1840
|
}
|
|
1577
1841
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1578
1842
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1579
|
-
margin:
|
|
1843
|
+
margin: 10px 0 10px 16px;
|
|
1580
1844
|
padding: 0;
|
|
1581
1845
|
}
|
|
1846
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1847
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1848
|
+
padding: 10px 0 10px 16px;
|
|
1849
|
+
}
|
|
1582
1850
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1583
1851
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1584
1852
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1585
1853
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1586
|
-
margin-left:
|
|
1854
|
+
margin-left: 48px;
|
|
1855
|
+
}
|
|
1856
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left,
|
|
1857
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1858
|
+
padding: 10px 12px 10px 16px;
|
|
1859
|
+
}
|
|
1860
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1861
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1862
|
+
margin-left: 48px;
|
|
1587
1863
|
}
|
|
1588
1864
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1589
1865
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1590
1866
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1591
1867
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1592
|
-
padding:
|
|
1868
|
+
padding: 0 12px;
|
|
1869
|
+
}
|
|
1870
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1871
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1872
|
+
padding: 10px 16px 10px 0;
|
|
1593
1873
|
}
|
|
1594
1874
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1595
1875
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1596
1876
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1597
1877
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1598
|
-
margin-right:
|
|
1878
|
+
margin-right: 48px;
|
|
1879
|
+
}
|
|
1880
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left,
|
|
1881
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1882
|
+
padding: 10px 16px 10px 12px;
|
|
1883
|
+
}
|
|
1884
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper,
|
|
1885
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1886
|
+
margin-right: 48px;
|
|
1599
1887
|
}
|
|
1600
1888
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1601
1889
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1602
1890
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1603
1891
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1604
|
-
padding:
|
|
1892
|
+
padding: 0 12px;
|
|
1893
|
+
}
|
|
1894
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1895
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1896
|
+
margin: 10px 16px 10px 0;
|
|
1605
1897
|
}
|
|
1606
1898
|
|
|
1607
1899
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1674,9 +1966,30 @@
|
|
|
1674
1966
|
padding: 0 8px 0 0;
|
|
1675
1967
|
}
|
|
1676
1968
|
|
|
1969
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1970
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1971
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1972
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1973
|
+
padding: 0 16px 16px;
|
|
1974
|
+
}
|
|
1975
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1976
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1977
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1978
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1979
|
+
padding-bottom: 12px 0 8px;
|
|
1980
|
+
font-size: 14px;
|
|
1981
|
+
line-height: 20px;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1677
1984
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1678
1985
|
border-color: unset;
|
|
1679
1986
|
}
|
|
1987
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1988
|
+
background: rgba(var(--color-sf-primary-container));
|
|
1989
|
+
}
|
|
1990
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1991
|
+
color: rgba(var(--color-sf-primary));
|
|
1992
|
+
}
|
|
1680
1993
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1681
1994
|
color: rgba(var(--color-sf-on-surface));
|
|
1682
1995
|
}
|
|
@@ -1859,6 +2172,10 @@
|
|
|
1859
2172
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1860
2173
|
border-color: transparent;
|
|
1861
2174
|
}
|
|
2175
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2176
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2177
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2178
|
+
}
|
|
1862
2179
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1863
2180
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1864
2181
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2264,6 +2581,58 @@
|
|
|
2264
2581
|
background: transparent;
|
|
2265
2582
|
}
|
|
2266
2583
|
|
|
2584
|
+
.e-ribbon-gallery-item {
|
|
2585
|
+
background: transparent;
|
|
2586
|
+
border-color: transparent;
|
|
2587
|
+
}
|
|
2588
|
+
.e-ribbon-gallery-item:hover {
|
|
2589
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
2590
|
+
}
|
|
2591
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2592
|
+
background: rgba(var(--color-sf-primary-container));
|
|
2593
|
+
}
|
|
2594
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2595
|
+
color: rgba(var(--color-sf-on-surface));
|
|
2596
|
+
}
|
|
2597
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2598
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2599
|
+
}
|
|
2600
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2601
|
+
background: transparent;
|
|
2602
|
+
}
|
|
2603
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2604
|
+
color: rgba(var(--color-sf-on-surface), 0.38);
|
|
2605
|
+
}
|
|
2606
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2607
|
+
color: rgba(var(--color-sf-on-surface), 0.38);
|
|
2608
|
+
}
|
|
2609
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2610
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2611
|
+
}
|
|
2612
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2613
|
+
color: rgba(var(--color-sf-on-surface));
|
|
2614
|
+
}
|
|
2615
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2616
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
.e-ribbon-gallery-button {
|
|
2620
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2621
|
+
}
|
|
2622
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2623
|
+
background: rgba(var(--color-sf-primary-container));
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2627
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2628
|
+
background: rgba(var(--color-sf-surface));
|
|
2629
|
+
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2630
|
+
}
|
|
2631
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2632
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2633
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2267
2636
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2268
2637
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2269
2638
|
}
|
|
@@ -2308,6 +2677,11 @@
|
|
|
2308
2677
|
color: rgba(var(--color-sf-inverse-surface));
|
|
2309
2678
|
}
|
|
2310
2679
|
|
|
2680
|
+
.e-ribbon-keytip {
|
|
2681
|
+
background-color: rgba(var(--color-sf-inverse-surface));
|
|
2682
|
+
color: rgba(var(--color-sf-inverse-on-surface));
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2311
2685
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2312
2686
|
background: rgba(var(--color-sf-surface));
|
|
2313
2687
|
}
|