@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
|
@@ -426,6 +426,21 @@
|
|
|
426
426
|
.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 {
|
|
427
427
|
display: none;
|
|
428
428
|
}
|
|
429
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
430
|
+
height: 30px;
|
|
431
|
+
}
|
|
432
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
433
|
+
padding: 5px 0;
|
|
434
|
+
width: 78px;
|
|
435
|
+
margin: 2px;
|
|
436
|
+
max-height: 26px;
|
|
437
|
+
}
|
|
438
|
+
.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 {
|
|
439
|
+
pointer-events: none;
|
|
440
|
+
}
|
|
441
|
+
.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 {
|
|
442
|
+
font-size: 12px;
|
|
443
|
+
}
|
|
429
444
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
430
445
|
overflow-y: hidden;
|
|
431
446
|
}
|
|
@@ -721,6 +736,28 @@
|
|
|
721
736
|
padding: 1px;
|
|
722
737
|
vertical-align: middle;
|
|
723
738
|
}
|
|
739
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
740
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
741
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
742
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
743
|
+
height: 80px;
|
|
744
|
+
display: -ms-flexbox;
|
|
745
|
+
display: flex;
|
|
746
|
+
}
|
|
747
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
748
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
749
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
750
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
751
|
+
max-height: 80px;
|
|
752
|
+
}
|
|
753
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
754
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
755
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
756
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
757
|
+
padding: 0;
|
|
758
|
+
border-width: 0 0 0 1px;
|
|
759
|
+
border-radius: 0 4px 4px 0;
|
|
760
|
+
}
|
|
724
761
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
725
762
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
726
763
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -826,6 +863,13 @@
|
|
|
826
863
|
min-height: 33%;
|
|
827
864
|
padding: 2px;
|
|
828
865
|
}
|
|
866
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
867
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
868
|
+
padding: 0;
|
|
869
|
+
border-style: solid;
|
|
870
|
+
border-width: 1px;
|
|
871
|
+
border-radius: 4px;
|
|
872
|
+
}
|
|
829
873
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
830
874
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
831
875
|
box-shadow: none;
|
|
@@ -972,9 +1016,36 @@
|
|
|
972
1016
|
padding: 0 0 0 2px;
|
|
973
1017
|
}
|
|
974
1018
|
|
|
1019
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup:has(.e-ribbon-overflow-target) {
|
|
1020
|
+
min-width: 190px;
|
|
1021
|
+
}
|
|
975
1022
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
976
1023
|
display: none;
|
|
977
1024
|
}
|
|
1025
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
1026
|
+
border: 0;
|
|
1027
|
+
}
|
|
1028
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
1029
|
+
margin: 5px 0;
|
|
1030
|
+
}
|
|
1031
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
1032
|
+
padding: 0;
|
|
1033
|
+
display: -ms-flexbox;
|
|
1034
|
+
display: flex;
|
|
1035
|
+
-ms-flex-align: center;
|
|
1036
|
+
align-items: center;
|
|
1037
|
+
-ms-flex-pack: start;
|
|
1038
|
+
justify-content: flex-start;
|
|
1039
|
+
width: 100%;
|
|
1040
|
+
}
|
|
1041
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
1042
|
+
margin: 0;
|
|
1043
|
+
}
|
|
1044
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
1045
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
1046
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
1047
|
+
display: none;
|
|
1048
|
+
}
|
|
978
1049
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
979
1050
|
display: none;
|
|
980
1051
|
}
|
|
@@ -987,6 +1058,12 @@
|
|
|
987
1058
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
988
1059
|
pointer-events: none;
|
|
989
1060
|
}
|
|
1061
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1062
|
+
font-size: 14px;
|
|
1063
|
+
}
|
|
1064
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1065
|
+
height: 32px;
|
|
1066
|
+
}
|
|
990
1067
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
991
1068
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
992
1069
|
white-space: nowrap;
|
|
@@ -995,23 +1072,34 @@
|
|
|
995
1072
|
-ms-flex-align: center;
|
|
996
1073
|
align-items: center;
|
|
997
1074
|
font-weight: 400;
|
|
998
|
-
font-size:
|
|
1075
|
+
font-size: 14px;
|
|
1076
|
+
}
|
|
1077
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1078
|
+
-ms-flex-align: center;
|
|
1079
|
+
align-items: center;
|
|
999
1080
|
}
|
|
1000
1081
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1001
1082
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
1002
1083
|
margin: 3px 4px;
|
|
1003
1084
|
}
|
|
1085
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1086
|
+
font-size: 16px;
|
|
1087
|
+
}
|
|
1004
1088
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1005
|
-
margin:
|
|
1089
|
+
margin: 8px 0 8px 12px;
|
|
1006
1090
|
padding: 0;
|
|
1007
1091
|
}
|
|
1008
1092
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1009
1093
|
padding: 0;
|
|
1010
1094
|
width: 100%;
|
|
1095
|
+
height: 32px;
|
|
1096
|
+
}
|
|
1097
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1098
|
+
margin: 0;
|
|
1011
1099
|
}
|
|
1012
1100
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
1013
1101
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
1014
|
-
line-height:
|
|
1102
|
+
line-height: 20px;
|
|
1015
1103
|
overflow: hidden;
|
|
1016
1104
|
}
|
|
1017
1105
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -1024,32 +1112,52 @@
|
|
|
1024
1112
|
justify-content: flex-start;
|
|
1025
1113
|
}
|
|
1026
1114
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1027
|
-
padding:
|
|
1115
|
+
padding: 6px 0 6px 12px;
|
|
1116
|
+
font-size: 14px;
|
|
1028
1117
|
font-weight: 500;
|
|
1029
1118
|
line-height: 18px;
|
|
1119
|
+
height: 26px;
|
|
1030
1120
|
}
|
|
1031
1121
|
|
|
1032
1122
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1033
1123
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1034
|
-
margin-left:
|
|
1124
|
+
margin-left: 36px;
|
|
1125
|
+
}
|
|
1126
|
+
.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 {
|
|
1127
|
+
padding: 8px 8px 8px 12px;
|
|
1128
|
+
}
|
|
1129
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1130
|
+
margin-left: 36px;
|
|
1035
1131
|
}
|
|
1036
1132
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1037
1133
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1038
1134
|
transform: rotate(-90deg);
|
|
1039
|
-
padding:
|
|
1135
|
+
padding: 0 12px;
|
|
1040
1136
|
margin: 0 0 0 auto;
|
|
1041
1137
|
}
|
|
1042
1138
|
|
|
1139
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1140
|
+
padding: 6px 12px 6px 0;
|
|
1141
|
+
}
|
|
1043
1142
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1044
1143
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1045
|
-
margin-right:
|
|
1144
|
+
margin-right: 36px;
|
|
1145
|
+
}
|
|
1146
|
+
.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 {
|
|
1147
|
+
padding: 8px 12px 8px 8px;
|
|
1148
|
+
}
|
|
1149
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1150
|
+
margin-right: 36px;
|
|
1046
1151
|
}
|
|
1047
1152
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1048
1153
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1049
1154
|
transform: rotate(90deg);
|
|
1050
|
-
padding:
|
|
1155
|
+
padding: 0 12px;
|
|
1051
1156
|
margin: 0 auto 0 0;
|
|
1052
1157
|
}
|
|
1158
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1159
|
+
margin: 8px 12px 8px 0;
|
|
1160
|
+
}
|
|
1053
1161
|
|
|
1054
1162
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1055
1163
|
-ms-flex-direction: column;
|
|
@@ -1076,6 +1184,18 @@
|
|
|
1076
1184
|
-ms-flex-pack: start;
|
|
1077
1185
|
justify-content: flex-start;
|
|
1078
1186
|
}
|
|
1187
|
+
.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 {
|
|
1188
|
+
border-top-right-radius: 4px;
|
|
1189
|
+
border-top-left-radius: 4px;
|
|
1190
|
+
border-bottom-right-radius: 0;
|
|
1191
|
+
border-bottom-left-radius: 0;
|
|
1192
|
+
}
|
|
1193
|
+
.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 {
|
|
1194
|
+
border-top-right-radius: 0;
|
|
1195
|
+
border-top-left-radius: 0;
|
|
1196
|
+
border-bottom-right-radius: 4px;
|
|
1197
|
+
border-bottom-left-radius: 4px;
|
|
1198
|
+
}
|
|
1079
1199
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
1080
1200
|
box-shadow: none;
|
|
1081
1201
|
border-radius: 4px;
|
|
@@ -1094,7 +1214,7 @@
|
|
|
1094
1214
|
padding: 0;
|
|
1095
1215
|
font-weight: 400;
|
|
1096
1216
|
font-size: 12px;
|
|
1097
|
-
border:
|
|
1217
|
+
border: 1px solid rgba(var(--color-sf-outline));
|
|
1098
1218
|
text-transform: none;
|
|
1099
1219
|
}
|
|
1100
1220
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1105,6 +1225,119 @@
|
|
|
1105
1225
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1106
1226
|
}
|
|
1107
1227
|
|
|
1228
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1229
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1230
|
+
border-radius: 4px;
|
|
1231
|
+
padding: 0 12px 12px;
|
|
1232
|
+
overflow: auto;
|
|
1233
|
+
}
|
|
1234
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1235
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1236
|
+
padding: 8px 0;
|
|
1237
|
+
font-size: 12px;
|
|
1238
|
+
font-weight: 500;
|
|
1239
|
+
line-height: 18px;
|
|
1240
|
+
}
|
|
1241
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1242
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1243
|
+
margin: 4px;
|
|
1244
|
+
height: 54px;
|
|
1245
|
+
width: 73px;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1249
|
+
width: 95px;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1253
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1254
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1255
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1256
|
+
padding: 0;
|
|
1257
|
+
margin: 0;
|
|
1258
|
+
display: -ms-flexbox;
|
|
1259
|
+
display: flex;
|
|
1260
|
+
-ms-flex-line-pack: distribute;
|
|
1261
|
+
align-content: space-around;
|
|
1262
|
+
}
|
|
1263
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1264
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1265
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1266
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1267
|
+
display: inherit;
|
|
1268
|
+
-ms-flex-align: center;
|
|
1269
|
+
align-items: center;
|
|
1270
|
+
-ms-flex-pack: center;
|
|
1271
|
+
justify-content: center;
|
|
1272
|
+
text-align: center;
|
|
1273
|
+
list-style-type: none;
|
|
1274
|
+
padding: 5px 0;
|
|
1275
|
+
-ms-flex-direction: column;
|
|
1276
|
+
flex-direction: column;
|
|
1277
|
+
cursor: pointer;
|
|
1278
|
+
border-width: 2px;
|
|
1279
|
+
border-style: solid;
|
|
1280
|
+
border-radius: 4px;
|
|
1281
|
+
}
|
|
1282
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1283
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1284
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1285
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1286
|
+
pointer-events: none;
|
|
1287
|
+
}
|
|
1288
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1289
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1290
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1291
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1292
|
+
display: none;
|
|
1293
|
+
}
|
|
1294
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1295
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1296
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1297
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1298
|
+
font-size: 14px;
|
|
1299
|
+
font-weight: 400;
|
|
1300
|
+
line-height: 20px;
|
|
1301
|
+
width: inherit;
|
|
1302
|
+
overflow: hidden;
|
|
1303
|
+
white-space: nowrap;
|
|
1304
|
+
text-overflow: ellipsis;
|
|
1305
|
+
}
|
|
1306
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1307
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1308
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1309
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1310
|
+
font-size: 20px;
|
|
1311
|
+
font-weight: 400;
|
|
1312
|
+
line-height: 20px;
|
|
1313
|
+
padding: 3px;
|
|
1314
|
+
background-size: cover;
|
|
1315
|
+
}
|
|
1316
|
+
.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,
|
|
1317
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1318
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1319
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1320
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1321
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1322
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1323
|
+
border-radius: 4px;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.e-ribbon-keytip {
|
|
1327
|
+
min-width: 20px;
|
|
1328
|
+
height: 20px;
|
|
1329
|
+
line-height: 18px;
|
|
1330
|
+
font-size: 14px;
|
|
1331
|
+
}
|
|
1332
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1333
|
+
display: -ms-flexbox;
|
|
1334
|
+
display: flex;
|
|
1335
|
+
-ms-flex-pack: center;
|
|
1336
|
+
justify-content: center;
|
|
1337
|
+
-ms-flex-align: center;
|
|
1338
|
+
align-items: center;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1108
1341
|
.e-ribbon-menu {
|
|
1109
1342
|
display: block;
|
|
1110
1343
|
}
|
|
@@ -1506,11 +1739,42 @@
|
|
|
1506
1739
|
border-radius: 4px;
|
|
1507
1740
|
}
|
|
1508
1741
|
|
|
1742
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1743
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1744
|
+
line-height: 20px;
|
|
1745
|
+
height: 36px;
|
|
1746
|
+
font-size: 16px;
|
|
1747
|
+
}
|
|
1748
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1749
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1750
|
+
font-size: 16px;
|
|
1751
|
+
}
|
|
1752
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1753
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1754
|
+
height: 40px;
|
|
1755
|
+
}
|
|
1756
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1757
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1758
|
+
height: 40px;
|
|
1759
|
+
}
|
|
1760
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1761
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1762
|
+
font-size: 20px;
|
|
1763
|
+
}
|
|
1764
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1765
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1766
|
+
margin: 0;
|
|
1767
|
+
}
|
|
1768
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1769
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1770
|
+
-ms-flex-align: center;
|
|
1771
|
+
align-items: center;
|
|
1772
|
+
}
|
|
1509
1773
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1510
1774
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1511
1775
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1512
1776
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1513
|
-
font-size:
|
|
1777
|
+
font-size: 16px;
|
|
1514
1778
|
}
|
|
1515
1779
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1516
1780
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1520,32 +1784,60 @@
|
|
|
1520
1784
|
}
|
|
1521
1785
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1522
1786
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1523
|
-
margin:
|
|
1787
|
+
margin: 10px 0 10px 16px;
|
|
1524
1788
|
padding: 0;
|
|
1525
1789
|
}
|
|
1790
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1791
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1792
|
+
padding: 10px 0 10px 16px;
|
|
1793
|
+
}
|
|
1526
1794
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1527
1795
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1528
1796
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1529
1797
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1530
|
-
margin-left:
|
|
1798
|
+
margin-left: 48px;
|
|
1799
|
+
}
|
|
1800
|
+
.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,
|
|
1801
|
+
.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 {
|
|
1802
|
+
padding: 10px 12px 10px 16px;
|
|
1803
|
+
}
|
|
1804
|
+
.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,
|
|
1805
|
+
.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 {
|
|
1806
|
+
margin-left: 48px;
|
|
1531
1807
|
}
|
|
1532
1808
|
.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,
|
|
1533
1809
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1534
1810
|
.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,
|
|
1535
1811
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1536
|
-
padding:
|
|
1812
|
+
padding: 0 12px;
|
|
1813
|
+
}
|
|
1814
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1815
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1816
|
+
padding: 10px 16px 10px 0;
|
|
1537
1817
|
}
|
|
1538
1818
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1539
1819
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1540
1820
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1541
1821
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1542
|
-
margin-right:
|
|
1822
|
+
margin-right: 48px;
|
|
1823
|
+
}
|
|
1824
|
+
.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,
|
|
1825
|
+
.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 {
|
|
1826
|
+
padding: 10px 16px 10px 12px;
|
|
1827
|
+
}
|
|
1828
|
+
.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,
|
|
1829
|
+
.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 {
|
|
1830
|
+
margin-right: 48px;
|
|
1543
1831
|
}
|
|
1544
1832
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1545
1833
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1546
1834
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1547
1835
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1548
|
-
padding:
|
|
1836
|
+
padding: 0 12px;
|
|
1837
|
+
}
|
|
1838
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1839
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1840
|
+
margin: 10px 16px 10px 0;
|
|
1549
1841
|
}
|
|
1550
1842
|
|
|
1551
1843
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1618,9 +1910,30 @@
|
|
|
1618
1910
|
padding: 0 8px 0 0;
|
|
1619
1911
|
}
|
|
1620
1912
|
|
|
1913
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1914
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1915
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1916
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1917
|
+
padding: 0 16px 16px;
|
|
1918
|
+
}
|
|
1919
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1920
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1921
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1922
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1923
|
+
padding-bottom: 12px 0 8px;
|
|
1924
|
+
font-size: 14px;
|
|
1925
|
+
line-height: 20px;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1621
1928
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1622
1929
|
border-color: unset;
|
|
1623
1930
|
}
|
|
1931
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1932
|
+
background: rgba(var(--color-sf-primary-container));
|
|
1933
|
+
}
|
|
1934
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1935
|
+
color: rgba(var(--color-sf-primary));
|
|
1936
|
+
}
|
|
1624
1937
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1625
1938
|
color: rgba(var(--color-sf-on-surface));
|
|
1626
1939
|
}
|
|
@@ -1803,6 +2116,10 @@
|
|
|
1803
2116
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1804
2117
|
border-color: transparent;
|
|
1805
2118
|
}
|
|
2119
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2120
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2121
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2122
|
+
}
|
|
1806
2123
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1807
2124
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1808
2125
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2208,6 +2525,58 @@
|
|
|
2208
2525
|
background: transparent;
|
|
2209
2526
|
}
|
|
2210
2527
|
|
|
2528
|
+
.e-ribbon-gallery-item {
|
|
2529
|
+
background: transparent;
|
|
2530
|
+
border-color: transparent;
|
|
2531
|
+
}
|
|
2532
|
+
.e-ribbon-gallery-item:hover {
|
|
2533
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
2534
|
+
}
|
|
2535
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2536
|
+
background: rgba(var(--color-sf-primary-container));
|
|
2537
|
+
}
|
|
2538
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2539
|
+
color: rgba(var(--color-sf-on-surface));
|
|
2540
|
+
}
|
|
2541
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2542
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2543
|
+
}
|
|
2544
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2545
|
+
background: transparent;
|
|
2546
|
+
}
|
|
2547
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2548
|
+
color: rgba(var(--color-sf-on-surface), 0.38);
|
|
2549
|
+
}
|
|
2550
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2551
|
+
color: rgba(var(--color-sf-on-surface), 0.38);
|
|
2552
|
+
}
|
|
2553
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2554
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2555
|
+
}
|
|
2556
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2557
|
+
color: rgba(var(--color-sf-on-surface));
|
|
2558
|
+
}
|
|
2559
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2560
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.e-ribbon-gallery-button {
|
|
2564
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
2565
|
+
}
|
|
2566
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2567
|
+
background: rgba(var(--color-sf-primary-container));
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2571
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2572
|
+
background: rgba(var(--color-sf-surface));
|
|
2573
|
+
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
2574
|
+
}
|
|
2575
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2576
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2577
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2211
2580
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2212
2581
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2213
2582
|
}
|
|
@@ -2252,6 +2621,11 @@
|
|
|
2252
2621
|
color: rgba(var(--color-sf-inverse-surface));
|
|
2253
2622
|
}
|
|
2254
2623
|
|
|
2624
|
+
.e-ribbon-keytip {
|
|
2625
|
+
background-color: rgba(var(--color-sf-inverse-surface));
|
|
2626
|
+
color: rgba(var(--color-sf-inverse-on-surface));
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2255
2629
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2256
2630
|
background: rgba(var(--color-sf-surface));
|
|
2257
2631
|
}
|