@syncfusion/ej2-ribbon 24.2.8 → 25.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -9
- 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 +2051 -137
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +2180 -146
- 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 +67 -5
- package/src/ribbon/base/ribbon.js +457 -76
- 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 +390 -16
- 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 +79 -4
- 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 +390 -16
- 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
package/styles/bootstrap5.css
CHANGED
|
@@ -403,6 +403,21 @@
|
|
|
403
403
|
.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 {
|
|
404
404
|
display: none;
|
|
405
405
|
}
|
|
406
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
407
|
+
height: 26px;
|
|
408
|
+
}
|
|
409
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
410
|
+
padding: 2px 0;
|
|
411
|
+
width: 95px;
|
|
412
|
+
margin: 2px;
|
|
413
|
+
max-height: 22px;
|
|
414
|
+
}
|
|
415
|
+
.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 {
|
|
416
|
+
pointer-events: none;
|
|
417
|
+
}
|
|
418
|
+
.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 {
|
|
419
|
+
font-size: 12px;
|
|
420
|
+
}
|
|
406
421
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
407
422
|
overflow-y: hidden;
|
|
408
423
|
}
|
|
@@ -698,6 +713,28 @@
|
|
|
698
713
|
padding: 1px;
|
|
699
714
|
vertical-align: middle;
|
|
700
715
|
}
|
|
716
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
717
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
718
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
719
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
720
|
+
height: 60px;
|
|
721
|
+
display: -ms-flexbox;
|
|
722
|
+
display: flex;
|
|
723
|
+
}
|
|
724
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
725
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
726
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
727
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
728
|
+
max-height: 60px;
|
|
729
|
+
}
|
|
730
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
731
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
732
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
733
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
734
|
+
padding: 0;
|
|
735
|
+
border-width: 0 0 0 1px;
|
|
736
|
+
border-radius: 0 4px 4px 0;
|
|
737
|
+
}
|
|
701
738
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
702
739
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
703
740
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -803,6 +840,13 @@
|
|
|
803
840
|
min-height: 33%;
|
|
804
841
|
padding: 2px;
|
|
805
842
|
}
|
|
843
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
844
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
845
|
+
padding: 0;
|
|
846
|
+
border-style: solid;
|
|
847
|
+
border-width: 1px;
|
|
848
|
+
border-radius: 4px;
|
|
849
|
+
}
|
|
806
850
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
807
851
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
808
852
|
box-shadow: none;
|
|
@@ -949,9 +993,36 @@
|
|
|
949
993
|
padding: 0 0 0 2px;
|
|
950
994
|
}
|
|
951
995
|
|
|
996
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup {
|
|
997
|
+
min-width: 190px;
|
|
998
|
+
}
|
|
952
999
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
953
1000
|
display: none;
|
|
954
1001
|
}
|
|
1002
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
1003
|
+
border: 0;
|
|
1004
|
+
}
|
|
1005
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
1006
|
+
margin: 5px 0;
|
|
1007
|
+
}
|
|
1008
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
1009
|
+
padding: 0;
|
|
1010
|
+
display: -ms-flexbox;
|
|
1011
|
+
display: flex;
|
|
1012
|
+
-ms-flex-align: center;
|
|
1013
|
+
align-items: center;
|
|
1014
|
+
-ms-flex-pack: start;
|
|
1015
|
+
justify-content: flex-start;
|
|
1016
|
+
width: 100%;
|
|
1017
|
+
}
|
|
1018
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
1019
|
+
margin: 0;
|
|
1020
|
+
}
|
|
1021
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
1022
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
1023
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
1024
|
+
display: none;
|
|
1025
|
+
}
|
|
955
1026
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
956
1027
|
display: none;
|
|
957
1028
|
}
|
|
@@ -964,6 +1035,12 @@
|
|
|
964
1035
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
965
1036
|
pointer-events: none;
|
|
966
1037
|
}
|
|
1038
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1039
|
+
font-size: 16px;
|
|
1040
|
+
}
|
|
1041
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1042
|
+
height: 32px;
|
|
1043
|
+
}
|
|
967
1044
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
968
1045
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
969
1046
|
white-space: nowrap;
|
|
@@ -972,23 +1049,34 @@
|
|
|
972
1049
|
-ms-flex-align: center;
|
|
973
1050
|
align-items: center;
|
|
974
1051
|
font-weight: 400;
|
|
975
|
-
font-size:
|
|
1052
|
+
font-size: 14px;
|
|
1053
|
+
}
|
|
1054
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1055
|
+
-ms-flex-align: center;
|
|
1056
|
+
align-items: center;
|
|
976
1057
|
}
|
|
977
1058
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
978
1059
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
979
1060
|
margin: 3px 5px;
|
|
980
1061
|
}
|
|
1062
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1063
|
+
font-size: 16px;
|
|
1064
|
+
}
|
|
981
1065
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
982
|
-
margin:
|
|
1066
|
+
margin: 7px 0 7px 12px;
|
|
983
1067
|
padding: 0;
|
|
984
1068
|
}
|
|
985
1069
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
986
1070
|
padding: 0;
|
|
987
1071
|
width: 100%;
|
|
1072
|
+
height: 30px;
|
|
1073
|
+
}
|
|
1074
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1075
|
+
margin: 0;
|
|
988
1076
|
}
|
|
989
1077
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
990
1078
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
991
|
-
line-height:
|
|
1079
|
+
line-height: 22px;
|
|
992
1080
|
overflow: hidden;
|
|
993
1081
|
}
|
|
994
1082
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -1001,32 +1089,52 @@
|
|
|
1001
1089
|
justify-content: flex-start;
|
|
1002
1090
|
}
|
|
1003
1091
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1004
|
-
padding:
|
|
1005
|
-
font-
|
|
1092
|
+
padding: 5px 0 5px 12px;
|
|
1093
|
+
font-size: 14px;
|
|
1094
|
+
font-weight: 400;
|
|
1006
1095
|
line-height: 18px;
|
|
1096
|
+
height: 24px;
|
|
1007
1097
|
}
|
|
1008
1098
|
|
|
1009
1099
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1010
1100
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1011
|
-
margin-left:
|
|
1101
|
+
margin-left: 36px;
|
|
1102
|
+
}
|
|
1103
|
+
.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 {
|
|
1104
|
+
padding: 7px 8px 7px 12px;
|
|
1105
|
+
}
|
|
1106
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1107
|
+
margin-left: 36px;
|
|
1012
1108
|
}
|
|
1013
1109
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1014
1110
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1015
1111
|
transform: rotate(-90deg);
|
|
1016
|
-
padding:
|
|
1112
|
+
padding: 0 8px;
|
|
1017
1113
|
margin: 0 0 0 auto;
|
|
1018
1114
|
}
|
|
1019
1115
|
|
|
1116
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1117
|
+
padding: 5px 12px 5px 0;
|
|
1118
|
+
}
|
|
1020
1119
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1021
1120
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1022
|
-
margin-right:
|
|
1121
|
+
margin-right: 36px;
|
|
1122
|
+
}
|
|
1123
|
+
.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 {
|
|
1124
|
+
padding: 7px 12px 7px 8px;
|
|
1125
|
+
}
|
|
1126
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1127
|
+
margin-right: 36px;
|
|
1023
1128
|
}
|
|
1024
1129
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1025
1130
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1026
1131
|
transform: rotate(90deg);
|
|
1027
|
-
padding:
|
|
1132
|
+
padding: 0 8px;
|
|
1028
1133
|
margin: 0 auto 0 0;
|
|
1029
1134
|
}
|
|
1135
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1136
|
+
margin: 7px 12px 7px 0;
|
|
1137
|
+
}
|
|
1030
1138
|
|
|
1031
1139
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1032
1140
|
-ms-flex-direction: column;
|
|
@@ -1040,7 +1148,7 @@
|
|
|
1040
1148
|
}
|
|
1041
1149
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-ribbon-groupbutton-header {
|
|
1042
1150
|
padding-bottom: 3px;
|
|
1043
|
-
font-weight:
|
|
1151
|
+
font-weight: 400;
|
|
1044
1152
|
line-height: 18px;
|
|
1045
1153
|
white-space: nowrap;
|
|
1046
1154
|
}
|
|
@@ -1053,6 +1161,18 @@
|
|
|
1053
1161
|
-ms-flex-pack: start;
|
|
1054
1162
|
justify-content: flex-start;
|
|
1055
1163
|
}
|
|
1164
|
+
.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 {
|
|
1165
|
+
border-top-right-radius: 4px;
|
|
1166
|
+
border-top-left-radius: 4px;
|
|
1167
|
+
border-bottom-right-radius: 0;
|
|
1168
|
+
border-bottom-left-radius: 0;
|
|
1169
|
+
}
|
|
1170
|
+
.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 {
|
|
1171
|
+
border-top-right-radius: 0;
|
|
1172
|
+
border-top-left-radius: 0;
|
|
1173
|
+
border-bottom-right-radius: 4px;
|
|
1174
|
+
border-bottom-left-radius: 4px;
|
|
1175
|
+
}
|
|
1056
1176
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
1057
1177
|
box-shadow: none;
|
|
1058
1178
|
border-radius: 4px;
|
|
@@ -1071,7 +1191,7 @@
|
|
|
1071
1191
|
padding: 0;
|
|
1072
1192
|
font-weight: 400;
|
|
1073
1193
|
font-size: 12px;
|
|
1074
|
-
border:
|
|
1194
|
+
border: 1px solid #6c757d;
|
|
1075
1195
|
text-transform: none;
|
|
1076
1196
|
}
|
|
1077
1197
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1082,6 +1202,119 @@
|
|
|
1082
1202
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1083
1203
|
}
|
|
1084
1204
|
|
|
1205
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1206
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1207
|
+
border-radius: 4px;
|
|
1208
|
+
padding: 0 12px 12px;
|
|
1209
|
+
overflow: auto;
|
|
1210
|
+
}
|
|
1211
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1212
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1213
|
+
padding: 8px 0 4px;
|
|
1214
|
+
font-size: 14px;
|
|
1215
|
+
font-weight: 400;
|
|
1216
|
+
line-height: 22px;
|
|
1217
|
+
}
|
|
1218
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1219
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1220
|
+
margin: 4px;
|
|
1221
|
+
height: 54px;
|
|
1222
|
+
width: 73px;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1226
|
+
width: 95px;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1230
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1231
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1232
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1233
|
+
padding: 0;
|
|
1234
|
+
margin: 0;
|
|
1235
|
+
display: -ms-flexbox;
|
|
1236
|
+
display: flex;
|
|
1237
|
+
-ms-flex-line-pack: distribute;
|
|
1238
|
+
align-content: space-around;
|
|
1239
|
+
}
|
|
1240
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1241
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1242
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1243
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1244
|
+
display: inherit;
|
|
1245
|
+
-ms-flex-align: center;
|
|
1246
|
+
align-items: center;
|
|
1247
|
+
-ms-flex-pack: center;
|
|
1248
|
+
justify-content: center;
|
|
1249
|
+
text-align: center;
|
|
1250
|
+
list-style-type: none;
|
|
1251
|
+
padding: 5px 0;
|
|
1252
|
+
-ms-flex-direction: column;
|
|
1253
|
+
flex-direction: column;
|
|
1254
|
+
cursor: pointer;
|
|
1255
|
+
border-width: 2px;
|
|
1256
|
+
border-style: solid;
|
|
1257
|
+
border-radius: 4px;
|
|
1258
|
+
}
|
|
1259
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1260
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1261
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1262
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1263
|
+
pointer-events: none;
|
|
1264
|
+
}
|
|
1265
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1266
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1267
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1268
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1269
|
+
display: none;
|
|
1270
|
+
}
|
|
1271
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1272
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1273
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1274
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1275
|
+
font-size: 14px;
|
|
1276
|
+
font-weight: 400;
|
|
1277
|
+
line-height: 22px;
|
|
1278
|
+
width: inherit;
|
|
1279
|
+
overflow: hidden;
|
|
1280
|
+
white-space: nowrap;
|
|
1281
|
+
text-overflow: ellipsis;
|
|
1282
|
+
}
|
|
1283
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1284
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1285
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1286
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1287
|
+
font-size: 20px;
|
|
1288
|
+
font-weight: 400;
|
|
1289
|
+
line-height: 20px;
|
|
1290
|
+
padding: 3px;
|
|
1291
|
+
background-size: cover;
|
|
1292
|
+
}
|
|
1293
|
+
.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,
|
|
1294
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1295
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1296
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1297
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1298
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1299
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1300
|
+
border-radius: 4px;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
.e-ribbon-keytip {
|
|
1304
|
+
min-width: 20px;
|
|
1305
|
+
height: 20px;
|
|
1306
|
+
line-height: 18px;
|
|
1307
|
+
font-size: 14px;
|
|
1308
|
+
}
|
|
1309
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1310
|
+
display: -ms-flexbox;
|
|
1311
|
+
display: flex;
|
|
1312
|
+
-ms-flex-pack: center;
|
|
1313
|
+
justify-content: center;
|
|
1314
|
+
-ms-flex-align: center;
|
|
1315
|
+
align-items: center;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1085
1318
|
.e-ribbon-menu {
|
|
1086
1319
|
display: block;
|
|
1087
1320
|
}
|
|
@@ -1483,11 +1716,42 @@
|
|
|
1483
1716
|
border-radius: 2px;
|
|
1484
1717
|
}
|
|
1485
1718
|
|
|
1719
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1720
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1721
|
+
line-height: 22px;
|
|
1722
|
+
height: 28px;
|
|
1723
|
+
font-size: 16px;
|
|
1724
|
+
}
|
|
1725
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1726
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1727
|
+
font-size: 18px;
|
|
1728
|
+
}
|
|
1729
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1730
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1731
|
+
height: 38px;
|
|
1732
|
+
}
|
|
1733
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1734
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1735
|
+
height: 32px;
|
|
1736
|
+
}
|
|
1737
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1738
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1739
|
+
font-size: 20px;
|
|
1740
|
+
}
|
|
1741
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1742
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1743
|
+
margin: 0;
|
|
1744
|
+
}
|
|
1745
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1746
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1747
|
+
-ms-flex-align: center;
|
|
1748
|
+
align-items: center;
|
|
1749
|
+
}
|
|
1486
1750
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1487
1751
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1488
1752
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1489
1753
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1490
|
-
font-size:
|
|
1754
|
+
font-size: 16px;
|
|
1491
1755
|
}
|
|
1492
1756
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1493
1757
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1497,32 +1761,60 @@
|
|
|
1497
1761
|
}
|
|
1498
1762
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1499
1763
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1500
|
-
margin: 7px;
|
|
1764
|
+
margin: 7px 0 7px 16px;
|
|
1501
1765
|
padding: 0;
|
|
1502
1766
|
}
|
|
1767
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1768
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1769
|
+
padding: 5px 0 5px 16px;
|
|
1770
|
+
}
|
|
1503
1771
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1504
1772
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1505
1773
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1506
1774
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1507
|
-
margin-left:
|
|
1775
|
+
margin-left: 44px;
|
|
1776
|
+
}
|
|
1777
|
+
.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,
|
|
1778
|
+
.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 {
|
|
1779
|
+
padding: 7px 10px 7px 16px;
|
|
1780
|
+
}
|
|
1781
|
+
.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,
|
|
1782
|
+
.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 {
|
|
1783
|
+
margin-left: 44px;
|
|
1508
1784
|
}
|
|
1509
1785
|
.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,
|
|
1510
1786
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1511
1787
|
.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,
|
|
1512
1788
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1513
|
-
padding:
|
|
1789
|
+
padding: 0 12px;
|
|
1790
|
+
}
|
|
1791
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1792
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1793
|
+
padding: 5px 16px 5px 0;
|
|
1514
1794
|
}
|
|
1515
1795
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1516
1796
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1517
1797
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1518
1798
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1519
|
-
margin-right:
|
|
1799
|
+
margin-right: 44px;
|
|
1800
|
+
}
|
|
1801
|
+
.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,
|
|
1802
|
+
.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 {
|
|
1803
|
+
padding: 7px 16px 7px 10px;
|
|
1804
|
+
}
|
|
1805
|
+
.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,
|
|
1806
|
+
.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 {
|
|
1807
|
+
margin-right: 44px;
|
|
1520
1808
|
}
|
|
1521
1809
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1522
1810
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1523
1811
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1524
1812
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1525
|
-
padding:
|
|
1813
|
+
padding: 0 12px;
|
|
1814
|
+
}
|
|
1815
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1816
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1817
|
+
margin: 7px 16px 7px 0;
|
|
1526
1818
|
}
|
|
1527
1819
|
|
|
1528
1820
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1595,9 +1887,30 @@
|
|
|
1595
1887
|
padding: 0 7px 0 0;
|
|
1596
1888
|
}
|
|
1597
1889
|
|
|
1890
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1891
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1892
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1893
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1894
|
+
padding: 0 16px 16px;
|
|
1895
|
+
}
|
|
1896
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1897
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1898
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1899
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1900
|
+
padding-bottom: 12px 0 8px;
|
|
1901
|
+
font-size: 16px;
|
|
1902
|
+
line-height: 24px;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1598
1905
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1599
1906
|
border-color: unset;
|
|
1600
1907
|
}
|
|
1908
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1909
|
+
background: #f8f9fa;
|
|
1910
|
+
}
|
|
1911
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1912
|
+
color: #0d6efd;
|
|
1913
|
+
}
|
|
1601
1914
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1602
1915
|
color: #212529;
|
|
1603
1916
|
}
|
|
@@ -1780,6 +2093,10 @@
|
|
|
1780
2093
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1781
2094
|
border-color: transparent;
|
|
1782
2095
|
}
|
|
2096
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2097
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2098
|
+
border-color: #ced4da;
|
|
2099
|
+
}
|
|
1783
2100
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1784
2101
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1785
2102
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2185,6 +2502,58 @@
|
|
|
2185
2502
|
background: transparent;
|
|
2186
2503
|
}
|
|
2187
2504
|
|
|
2505
|
+
.e-ribbon-gallery-item {
|
|
2506
|
+
background: transparent;
|
|
2507
|
+
border-color: transparent;
|
|
2508
|
+
}
|
|
2509
|
+
.e-ribbon-gallery-item:hover {
|
|
2510
|
+
background: #e9ecef;
|
|
2511
|
+
}
|
|
2512
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2513
|
+
background: #0d6efd;
|
|
2514
|
+
}
|
|
2515
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2516
|
+
color: #fff;
|
|
2517
|
+
}
|
|
2518
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2519
|
+
color: #fff;
|
|
2520
|
+
}
|
|
2521
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2522
|
+
background: transparent;
|
|
2523
|
+
}
|
|
2524
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2525
|
+
color: #adb5bd;
|
|
2526
|
+
}
|
|
2527
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2528
|
+
color: #adb5bd;
|
|
2529
|
+
}
|
|
2530
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2531
|
+
border-color: #e9ecef;
|
|
2532
|
+
}
|
|
2533
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2534
|
+
color: #212529;
|
|
2535
|
+
}
|
|
2536
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2537
|
+
color: #6c757d;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.e-ribbon-gallery-button {
|
|
2541
|
+
border-color: #ced4da;
|
|
2542
|
+
}
|
|
2543
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2544
|
+
background: #0d6efd;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2548
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2549
|
+
background: #fff;
|
|
2550
|
+
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
2551
|
+
}
|
|
2552
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2553
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2554
|
+
color: #212529;
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2188
2557
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2189
2558
|
color: #6c757d;
|
|
2190
2559
|
}
|
|
@@ -2229,6 +2598,11 @@
|
|
|
2229
2598
|
color: #212529;
|
|
2230
2599
|
}
|
|
2231
2600
|
|
|
2601
|
+
.e-ribbon-keytip {
|
|
2602
|
+
background-color: #212529;
|
|
2603
|
+
color: #f9fafb;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2232
2606
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2233
2607
|
background: #fff;
|
|
2234
2608
|
}
|