@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
|
@@ -397,6 +397,21 @@
|
|
|
397
397
|
.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 {
|
|
398
398
|
display: none;
|
|
399
399
|
}
|
|
400
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
401
|
+
height: 24px;
|
|
402
|
+
}
|
|
403
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
404
|
+
padding: 5px 0;
|
|
405
|
+
width: 95px;
|
|
406
|
+
margin: 2px;
|
|
407
|
+
max-height: 20px;
|
|
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.e-disabled {
|
|
410
|
+
pointer-events: none;
|
|
411
|
+
}
|
|
412
|
+
.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 {
|
|
413
|
+
font-size: 12px;
|
|
414
|
+
}
|
|
400
415
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
401
416
|
overflow-y: hidden;
|
|
402
417
|
}
|
|
@@ -692,6 +707,28 @@
|
|
|
692
707
|
padding: 1px;
|
|
693
708
|
vertical-align: middle;
|
|
694
709
|
}
|
|
710
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
711
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
712
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
713
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
714
|
+
height: 72px;
|
|
715
|
+
display: -ms-flexbox;
|
|
716
|
+
display: flex;
|
|
717
|
+
}
|
|
718
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
719
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
720
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
721
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
722
|
+
max-height: 72px;
|
|
723
|
+
}
|
|
724
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
725
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
726
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
727
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
728
|
+
padding: 0;
|
|
729
|
+
border-width: 0 0 0 1px;
|
|
730
|
+
border-radius: 0 4px 4px 0;
|
|
731
|
+
}
|
|
695
732
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
696
733
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
697
734
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -797,6 +834,13 @@
|
|
|
797
834
|
min-height: 33%;
|
|
798
835
|
padding: 2px;
|
|
799
836
|
}
|
|
837
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
838
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
839
|
+
padding: 0;
|
|
840
|
+
border-style: solid;
|
|
841
|
+
border-width: 1px;
|
|
842
|
+
border-radius: 4px;
|
|
843
|
+
}
|
|
800
844
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
801
845
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
802
846
|
box-shadow: none;
|
|
@@ -943,9 +987,36 @@
|
|
|
943
987
|
padding: 0 0 0 2px;
|
|
944
988
|
}
|
|
945
989
|
|
|
990
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup {
|
|
991
|
+
min-width: 190px;
|
|
992
|
+
}
|
|
946
993
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
947
994
|
display: none;
|
|
948
995
|
}
|
|
996
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
997
|
+
border: 0;
|
|
998
|
+
}
|
|
999
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
1000
|
+
margin: 5px 0;
|
|
1001
|
+
}
|
|
1002
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
1003
|
+
padding: 0;
|
|
1004
|
+
display: -ms-flexbox;
|
|
1005
|
+
display: flex;
|
|
1006
|
+
-ms-flex-align: center;
|
|
1007
|
+
align-items: center;
|
|
1008
|
+
-ms-flex-pack: start;
|
|
1009
|
+
justify-content: flex-start;
|
|
1010
|
+
width: 100%;
|
|
1011
|
+
}
|
|
1012
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
1013
|
+
margin: 0;
|
|
1014
|
+
}
|
|
1015
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
1016
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
1017
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
1018
|
+
display: none;
|
|
1019
|
+
}
|
|
949
1020
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
950
1021
|
display: none;
|
|
951
1022
|
}
|
|
@@ -958,6 +1029,12 @@
|
|
|
958
1029
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
959
1030
|
pointer-events: none;
|
|
960
1031
|
}
|
|
1032
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1033
|
+
font-size: 12px;
|
|
1034
|
+
}
|
|
1035
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1036
|
+
height: 32px;
|
|
1037
|
+
}
|
|
961
1038
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
962
1039
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
963
1040
|
white-space: nowrap;
|
|
@@ -966,23 +1043,34 @@
|
|
|
966
1043
|
-ms-flex-align: center;
|
|
967
1044
|
align-items: center;
|
|
968
1045
|
font-weight: 400;
|
|
969
|
-
font-size:
|
|
1046
|
+
font-size: 14px;
|
|
1047
|
+
}
|
|
1048
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1049
|
+
-ms-flex-align: center;
|
|
1050
|
+
align-items: center;
|
|
970
1051
|
}
|
|
971
1052
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
972
1053
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
973
1054
|
margin: 3px 8px;
|
|
974
1055
|
}
|
|
1056
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1057
|
+
font-size: 12px;
|
|
1058
|
+
}
|
|
975
1059
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
976
|
-
margin:
|
|
1060
|
+
margin: 10px 0 10px 12px;
|
|
977
1061
|
padding: 0;
|
|
978
1062
|
}
|
|
979
1063
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
980
1064
|
padding: 0;
|
|
981
1065
|
width: 100%;
|
|
1066
|
+
height: 32px;
|
|
1067
|
+
}
|
|
1068
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1069
|
+
margin: 0;
|
|
982
1070
|
}
|
|
983
1071
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
984
1072
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
985
|
-
line-height:
|
|
1073
|
+
line-height: 12px;
|
|
986
1074
|
overflow: hidden;
|
|
987
1075
|
}
|
|
988
1076
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -995,32 +1083,52 @@
|
|
|
995
1083
|
justify-content: flex-start;
|
|
996
1084
|
}
|
|
997
1085
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
998
|
-
padding:
|
|
999
|
-
font-
|
|
1086
|
+
padding: 6px 0 6px 12px;
|
|
1087
|
+
font-size: 14px;
|
|
1088
|
+
font-weight: 500;
|
|
1000
1089
|
line-height: 18px;
|
|
1090
|
+
height: 26px;
|
|
1001
1091
|
}
|
|
1002
1092
|
|
|
1003
1093
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1004
1094
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1005
1095
|
margin-left: 34px;
|
|
1006
1096
|
}
|
|
1097
|
+
.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 {
|
|
1098
|
+
padding: 10px 8px 10px 12px;
|
|
1099
|
+
}
|
|
1100
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1101
|
+
margin-left: 34px;
|
|
1102
|
+
}
|
|
1007
1103
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1008
1104
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1009
1105
|
transform: rotate(-90deg);
|
|
1010
|
-
padding:
|
|
1106
|
+
padding: 0 12px;
|
|
1011
1107
|
margin: 0 0 0 auto;
|
|
1012
1108
|
}
|
|
1013
1109
|
|
|
1110
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1111
|
+
padding: 6px 12px 6px 0;
|
|
1112
|
+
}
|
|
1014
1113
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1015
1114
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1016
1115
|
margin-right: 34px;
|
|
1017
1116
|
}
|
|
1117
|
+
.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 {
|
|
1118
|
+
padding: 10px 12px 10px 8px;
|
|
1119
|
+
}
|
|
1120
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1121
|
+
margin-right: 34px;
|
|
1122
|
+
}
|
|
1018
1123
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1019
1124
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1020
1125
|
transform: rotate(90deg);
|
|
1021
|
-
padding:
|
|
1126
|
+
padding: 0 12px;
|
|
1022
1127
|
margin: 0 auto 0 0;
|
|
1023
1128
|
}
|
|
1129
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1130
|
+
margin: 10px 12px 10px 0;
|
|
1131
|
+
}
|
|
1024
1132
|
|
|
1025
1133
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1026
1134
|
-ms-flex-direction: column;
|
|
@@ -1034,7 +1142,7 @@
|
|
|
1034
1142
|
}
|
|
1035
1143
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-ribbon-groupbutton-header {
|
|
1036
1144
|
padding-bottom: 3px;
|
|
1037
|
-
font-weight:
|
|
1145
|
+
font-weight: 500;
|
|
1038
1146
|
line-height: 18px;
|
|
1039
1147
|
white-space: nowrap;
|
|
1040
1148
|
}
|
|
@@ -1047,6 +1155,18 @@
|
|
|
1047
1155
|
-ms-flex-pack: start;
|
|
1048
1156
|
justify-content: flex-start;
|
|
1049
1157
|
}
|
|
1158
|
+
.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 {
|
|
1159
|
+
border-top-right-radius: 4px;
|
|
1160
|
+
border-top-left-radius: 4px;
|
|
1161
|
+
border-bottom-right-radius: 0;
|
|
1162
|
+
border-bottom-left-radius: 0;
|
|
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:last-of-type {
|
|
1165
|
+
border-top-right-radius: 0;
|
|
1166
|
+
border-top-left-radius: 0;
|
|
1167
|
+
border-bottom-right-radius: 4px;
|
|
1168
|
+
border-bottom-left-radius: 4px;
|
|
1169
|
+
}
|
|
1050
1170
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
1051
1171
|
box-shadow: none;
|
|
1052
1172
|
border-radius: unset;
|
|
@@ -1065,7 +1185,7 @@
|
|
|
1065
1185
|
padding: 0;
|
|
1066
1186
|
font-weight: 400;
|
|
1067
1187
|
font-size: 12px;
|
|
1068
|
-
border:
|
|
1188
|
+
border: 1px solid #616161;
|
|
1069
1189
|
text-transform: none;
|
|
1070
1190
|
}
|
|
1071
1191
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1076,6 +1196,119 @@
|
|
|
1076
1196
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1077
1197
|
}
|
|
1078
1198
|
|
|
1199
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1200
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1201
|
+
border-radius: 4px;
|
|
1202
|
+
padding: 0 12px 12px;
|
|
1203
|
+
overflow: auto;
|
|
1204
|
+
}
|
|
1205
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1206
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1207
|
+
padding: 8px 0 4px;
|
|
1208
|
+
font-size: 12px;
|
|
1209
|
+
font-weight: 500;
|
|
1210
|
+
line-height: 18px;
|
|
1211
|
+
}
|
|
1212
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1213
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1214
|
+
margin: 4px;
|
|
1215
|
+
height: 54px;
|
|
1216
|
+
width: 73px;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1220
|
+
width: 95px;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1224
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1225
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1226
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1227
|
+
padding: 0;
|
|
1228
|
+
margin: 0;
|
|
1229
|
+
display: -ms-flexbox;
|
|
1230
|
+
display: flex;
|
|
1231
|
+
-ms-flex-line-pack: distribute;
|
|
1232
|
+
align-content: space-around;
|
|
1233
|
+
}
|
|
1234
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1235
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1236
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1237
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1238
|
+
display: inherit;
|
|
1239
|
+
-ms-flex-align: center;
|
|
1240
|
+
align-items: center;
|
|
1241
|
+
-ms-flex-pack: center;
|
|
1242
|
+
justify-content: center;
|
|
1243
|
+
text-align: center;
|
|
1244
|
+
list-style-type: none;
|
|
1245
|
+
padding: 5px 0;
|
|
1246
|
+
-ms-flex-direction: column;
|
|
1247
|
+
flex-direction: column;
|
|
1248
|
+
cursor: pointer;
|
|
1249
|
+
border-width: 2px;
|
|
1250
|
+
border-style: solid;
|
|
1251
|
+
border-radius: 4px;
|
|
1252
|
+
}
|
|
1253
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1254
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1255
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1256
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1257
|
+
pointer-events: none;
|
|
1258
|
+
}
|
|
1259
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1260
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1261
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1262
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1263
|
+
display: none;
|
|
1264
|
+
}
|
|
1265
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1266
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1267
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1268
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1269
|
+
font-size: 14px;
|
|
1270
|
+
font-weight: 400;
|
|
1271
|
+
line-height: 22px;
|
|
1272
|
+
width: inherit;
|
|
1273
|
+
overflow: hidden;
|
|
1274
|
+
white-space: nowrap;
|
|
1275
|
+
text-overflow: ellipsis;
|
|
1276
|
+
}
|
|
1277
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1278
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1279
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1280
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1281
|
+
font-size: 20px;
|
|
1282
|
+
font-weight: 400;
|
|
1283
|
+
line-height: 20px;
|
|
1284
|
+
padding: 3px;
|
|
1285
|
+
background-size: cover;
|
|
1286
|
+
}
|
|
1287
|
+
.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,
|
|
1288
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1289
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1290
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1291
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1292
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1293
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1294
|
+
border-radius: 4px;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.e-ribbon-keytip {
|
|
1298
|
+
min-width: 20px;
|
|
1299
|
+
height: 20px;
|
|
1300
|
+
line-height: 18px;
|
|
1301
|
+
font-size: 14px;
|
|
1302
|
+
}
|
|
1303
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1304
|
+
display: -ms-flexbox;
|
|
1305
|
+
display: flex;
|
|
1306
|
+
-ms-flex-pack: center;
|
|
1307
|
+
justify-content: center;
|
|
1308
|
+
-ms-flex-align: center;
|
|
1309
|
+
align-items: center;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1079
1312
|
.e-ribbon-menu {
|
|
1080
1313
|
display: block;
|
|
1081
1314
|
}
|
|
@@ -1389,7 +1622,7 @@
|
|
|
1389
1622
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-ribbon-small-item .e-btn,
|
|
1390
1623
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-item.e-ribbon-medium-item .e-btn,
|
|
1391
1624
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-item.e-ribbon-small-item .e-btn {
|
|
1392
|
-
font-size:
|
|
1625
|
+
font-size: 16px;
|
|
1393
1626
|
line-height: 22px;
|
|
1394
1627
|
}
|
|
1395
1628
|
.e-bigger.e-ribbon.e-rbn .e-ribbon-group-overflow.e-ribbon-medium-item .e-btn .e-btn-icon, .e-bigger.e-ribbon.e-rbn .e-ribbon-group-overflow.e-ribbon-small-item .e-btn .e-btn-icon,
|
|
@@ -1477,11 +1710,42 @@
|
|
|
1477
1710
|
border-radius: unset;
|
|
1478
1711
|
}
|
|
1479
1712
|
|
|
1713
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1714
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1715
|
+
line-height: 22px;
|
|
1716
|
+
height: 36px;
|
|
1717
|
+
font-size: 16px;
|
|
1718
|
+
}
|
|
1719
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1720
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1721
|
+
font-size: 12px;
|
|
1722
|
+
}
|
|
1723
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1724
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1725
|
+
height: 40px;
|
|
1726
|
+
}
|
|
1727
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1728
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1729
|
+
height: 40px;
|
|
1730
|
+
}
|
|
1731
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1732
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1733
|
+
font-size: 16px;
|
|
1734
|
+
}
|
|
1735
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1736
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1737
|
+
margin: 0;
|
|
1738
|
+
}
|
|
1739
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1740
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1741
|
+
-ms-flex-align: center;
|
|
1742
|
+
align-items: center;
|
|
1743
|
+
}
|
|
1480
1744
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1481
1745
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1482
1746
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1483
1747
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1484
|
-
font-size:
|
|
1748
|
+
font-size: 16px;
|
|
1485
1749
|
}
|
|
1486
1750
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1487
1751
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1491,32 +1755,60 @@
|
|
|
1491
1755
|
}
|
|
1492
1756
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1493
1757
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1494
|
-
margin:
|
|
1758
|
+
margin: 12px 0 12px 16px;
|
|
1495
1759
|
padding: 0;
|
|
1496
1760
|
}
|
|
1761
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1762
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1763
|
+
padding: 10px 0 10px 16px;
|
|
1764
|
+
}
|
|
1497
1765
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1498
1766
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1499
1767
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1500
1768
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1501
|
-
margin-left:
|
|
1769
|
+
margin-left: 44px;
|
|
1770
|
+
}
|
|
1771
|
+
.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,
|
|
1772
|
+
.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 {
|
|
1773
|
+
padding: 12px 12px 12px 16px;
|
|
1774
|
+
}
|
|
1775
|
+
.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,
|
|
1776
|
+
.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 {
|
|
1777
|
+
margin-left: 44px;
|
|
1502
1778
|
}
|
|
1503
1779
|
.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,
|
|
1504
1780
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1505
1781
|
.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,
|
|
1506
1782
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1507
|
-
padding:
|
|
1783
|
+
padding: 0 12px;
|
|
1784
|
+
}
|
|
1785
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1786
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1787
|
+
padding: 10px 16px 10px 0;
|
|
1508
1788
|
}
|
|
1509
1789
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1510
1790
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1511
1791
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1512
1792
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1513
|
-
margin-right:
|
|
1793
|
+
margin-right: 44px;
|
|
1794
|
+
}
|
|
1795
|
+
.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,
|
|
1796
|
+
.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 {
|
|
1797
|
+
padding: 12px 16px 12px 12px;
|
|
1798
|
+
}
|
|
1799
|
+
.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,
|
|
1800
|
+
.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 {
|
|
1801
|
+
margin-right: 44px;
|
|
1514
1802
|
}
|
|
1515
1803
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1516
1804
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1517
1805
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1518
1806
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1519
|
-
padding:
|
|
1807
|
+
padding: 0 12px;
|
|
1808
|
+
}
|
|
1809
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1810
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1811
|
+
margin: 12px 16px 12px 0;
|
|
1520
1812
|
}
|
|
1521
1813
|
|
|
1522
1814
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1582,16 +1874,37 @@
|
|
|
1582
1874
|
}
|
|
1583
1875
|
.e-bigger .e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1584
1876
|
.e-bigger.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button {
|
|
1585
|
-
font-size:
|
|
1877
|
+
font-size: 16px;
|
|
1586
1878
|
}
|
|
1587
1879
|
.e-bigger .e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn),
|
|
1588
1880
|
.e-bigger.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
1589
1881
|
padding: 0 8px 0 0;
|
|
1590
1882
|
}
|
|
1591
1883
|
|
|
1884
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1885
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1886
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1887
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1888
|
+
padding: 0 16px 16px;
|
|
1889
|
+
}
|
|
1890
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1891
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1892
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1893
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1894
|
+
padding-bottom: 12px 0 8px;
|
|
1895
|
+
font-size: 16px;
|
|
1896
|
+
line-height: 24px;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1592
1899
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1593
1900
|
border-color: #e0e0e0;
|
|
1594
1901
|
}
|
|
1902
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1903
|
+
background: #fafafa;
|
|
1904
|
+
}
|
|
1905
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1906
|
+
color: #3f51b5;
|
|
1907
|
+
}
|
|
1595
1908
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1596
1909
|
color: rgba(0, 0, 0, 0.87);
|
|
1597
1910
|
}
|
|
@@ -1775,6 +2088,10 @@
|
|
|
1775
2088
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1776
2089
|
border-color: transparent;
|
|
1777
2090
|
}
|
|
2091
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2092
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2093
|
+
border-color: #eee;
|
|
2094
|
+
}
|
|
1778
2095
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1779
2096
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1780
2097
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2180,6 +2497,58 @@
|
|
|
2180
2497
|
background: transparent;
|
|
2181
2498
|
}
|
|
2182
2499
|
|
|
2500
|
+
.e-ribbon-gallery-item {
|
|
2501
|
+
background: #fff;
|
|
2502
|
+
border-color: transparent;
|
|
2503
|
+
}
|
|
2504
|
+
.e-ribbon-gallery-item:hover {
|
|
2505
|
+
background: #eee;
|
|
2506
|
+
}
|
|
2507
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2508
|
+
background: #eee;
|
|
2509
|
+
}
|
|
2510
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2511
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2512
|
+
}
|
|
2513
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2514
|
+
color: rgba(0, 0, 0, 0.54);
|
|
2515
|
+
}
|
|
2516
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2517
|
+
background: #fff;
|
|
2518
|
+
}
|
|
2519
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2520
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2521
|
+
}
|
|
2522
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2523
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2524
|
+
}
|
|
2525
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2526
|
+
border-color: #bdbdbd;
|
|
2527
|
+
}
|
|
2528
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2529
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2530
|
+
}
|
|
2531
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2532
|
+
color: rgba(0, 0, 0, 0.54);
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
.e-ribbon-gallery-button {
|
|
2536
|
+
border-color: #eee;
|
|
2537
|
+
}
|
|
2538
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2539
|
+
background: #eee;
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2542
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2543
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2544
|
+
background: #fff;
|
|
2545
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
2546
|
+
}
|
|
2547
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2548
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2549
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2183
2552
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2184
2553
|
color: rgba(0, 0, 0, 0.54);
|
|
2185
2554
|
}
|
|
@@ -2224,6 +2593,11 @@
|
|
|
2224
2593
|
color: #616161;
|
|
2225
2594
|
}
|
|
2226
2595
|
|
|
2596
|
+
.e-ribbon-keytip {
|
|
2597
|
+
background-color: #000;
|
|
2598
|
+
color: #fff;
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2227
2601
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2228
2602
|
background: #fafafa;
|
|
2229
2603
|
}
|