@syncfusion/ej2-ribbon 24.2.3 → 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 +7 -5
- 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 +2053 -138
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +2182 -147
- 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 +459 -77
- 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/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -37
package/styles/fluent-dark.css
CHANGED
|
@@ -379,6 +379,21 @@
|
|
|
379
379
|
.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 {
|
|
380
380
|
display: none;
|
|
381
381
|
}
|
|
382
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
383
|
+
height: 34px;
|
|
384
|
+
}
|
|
385
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
386
|
+
padding: 5px 0;
|
|
387
|
+
width: 95px;
|
|
388
|
+
margin: 2px;
|
|
389
|
+
max-height: 30px;
|
|
390
|
+
}
|
|
391
|
+
.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 {
|
|
392
|
+
pointer-events: none;
|
|
393
|
+
}
|
|
394
|
+
.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 {
|
|
395
|
+
font-size: 12px;
|
|
396
|
+
}
|
|
382
397
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
383
398
|
overflow-y: hidden;
|
|
384
399
|
}
|
|
@@ -674,6 +689,28 @@
|
|
|
674
689
|
padding: 1px;
|
|
675
690
|
vertical-align: middle;
|
|
676
691
|
}
|
|
692
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
693
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
694
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
695
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
696
|
+
height: 80px;
|
|
697
|
+
display: -ms-flexbox;
|
|
698
|
+
display: flex;
|
|
699
|
+
}
|
|
700
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
701
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
702
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
703
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
704
|
+
max-height: 80px;
|
|
705
|
+
}
|
|
706
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
707
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
708
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
709
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
710
|
+
padding: 0;
|
|
711
|
+
border-width: 0 0 0 1px;
|
|
712
|
+
border-radius: 0 4px 4px 0;
|
|
713
|
+
}
|
|
677
714
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
678
715
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
679
716
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -779,6 +816,13 @@
|
|
|
779
816
|
min-height: 33%;
|
|
780
817
|
padding: 2px;
|
|
781
818
|
}
|
|
819
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
820
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
821
|
+
padding: 0;
|
|
822
|
+
border-style: solid;
|
|
823
|
+
border-width: 1px;
|
|
824
|
+
border-radius: 4px;
|
|
825
|
+
}
|
|
782
826
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
783
827
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
784
828
|
box-shadow: none;
|
|
@@ -925,9 +969,36 @@
|
|
|
925
969
|
padding: 0 0 0 2px;
|
|
926
970
|
}
|
|
927
971
|
|
|
972
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup {
|
|
973
|
+
min-width: 190px;
|
|
974
|
+
}
|
|
928
975
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
929
976
|
display: none;
|
|
930
977
|
}
|
|
978
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
979
|
+
border: 0;
|
|
980
|
+
}
|
|
981
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
982
|
+
margin: 5px 0;
|
|
983
|
+
}
|
|
984
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
985
|
+
padding: 0;
|
|
986
|
+
display: -ms-flexbox;
|
|
987
|
+
display: flex;
|
|
988
|
+
-ms-flex-align: center;
|
|
989
|
+
align-items: center;
|
|
990
|
+
-ms-flex-pack: start;
|
|
991
|
+
justify-content: flex-start;
|
|
992
|
+
width: 100%;
|
|
993
|
+
}
|
|
994
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
995
|
+
margin: 0;
|
|
996
|
+
}
|
|
997
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
998
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
999
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
1000
|
+
display: none;
|
|
1001
|
+
}
|
|
931
1002
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
932
1003
|
display: none;
|
|
933
1004
|
}
|
|
@@ -940,6 +1011,12 @@
|
|
|
940
1011
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
941
1012
|
pointer-events: none;
|
|
942
1013
|
}
|
|
1014
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1015
|
+
font-size: 14px;
|
|
1016
|
+
}
|
|
1017
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1018
|
+
height: 32px;
|
|
1019
|
+
}
|
|
943
1020
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
944
1021
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
945
1022
|
white-space: nowrap;
|
|
@@ -948,23 +1025,34 @@
|
|
|
948
1025
|
-ms-flex-align: center;
|
|
949
1026
|
align-items: center;
|
|
950
1027
|
font-weight: 400;
|
|
951
|
-
font-size:
|
|
1028
|
+
font-size: 14px;
|
|
1029
|
+
}
|
|
1030
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1031
|
+
-ms-flex-align: center;
|
|
1032
|
+
align-items: center;
|
|
952
1033
|
}
|
|
953
1034
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
954
1035
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
955
1036
|
margin: 3px 5px;
|
|
956
1037
|
}
|
|
1038
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1039
|
+
font-size: 14px;
|
|
1040
|
+
}
|
|
957
1041
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
958
|
-
margin:
|
|
1042
|
+
margin: 9px 0 9px 12px;
|
|
959
1043
|
padding: 0;
|
|
960
1044
|
}
|
|
961
1045
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
962
1046
|
padding: 0;
|
|
963
1047
|
width: 100%;
|
|
1048
|
+
height: 32px;
|
|
1049
|
+
}
|
|
1050
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
1051
|
+
margin: 0;
|
|
964
1052
|
}
|
|
965
1053
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
966
1054
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
967
|
-
line-height:
|
|
1055
|
+
line-height: 22px;
|
|
968
1056
|
overflow: hidden;
|
|
969
1057
|
}
|
|
970
1058
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -977,32 +1065,52 @@
|
|
|
977
1065
|
justify-content: flex-start;
|
|
978
1066
|
}
|
|
979
1067
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
980
|
-
padding:
|
|
1068
|
+
padding: 6px 0 6px 12px;
|
|
1069
|
+
font-size: 14px;
|
|
981
1070
|
font-weight: 600;
|
|
982
1071
|
line-height: 18px;
|
|
1072
|
+
height: 26px;
|
|
983
1073
|
}
|
|
984
1074
|
|
|
985
1075
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
986
1076
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
987
|
-
margin-left:
|
|
1077
|
+
margin-left: 34px;
|
|
1078
|
+
}
|
|
1079
|
+
.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 {
|
|
1080
|
+
padding: 9px 8px 9px 12px;
|
|
1081
|
+
}
|
|
1082
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1083
|
+
margin-left: 34px;
|
|
988
1084
|
}
|
|
989
1085
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
990
1086
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
991
1087
|
transform: rotate(-90deg);
|
|
992
|
-
padding:
|
|
1088
|
+
padding: 0 12px;
|
|
993
1089
|
margin: 0 0 0 auto;
|
|
994
1090
|
}
|
|
995
1091
|
|
|
1092
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1093
|
+
padding: 6px 12px 6px 0;
|
|
1094
|
+
}
|
|
996
1095
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
997
1096
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
998
|
-
margin-right:
|
|
1097
|
+
margin-right: 34px;
|
|
1098
|
+
}
|
|
1099
|
+
.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 {
|
|
1100
|
+
padding: 9px 12px 9px 8px;
|
|
1101
|
+
}
|
|
1102
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1103
|
+
margin-right: 34px;
|
|
999
1104
|
}
|
|
1000
1105
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1001
1106
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1002
1107
|
transform: rotate(90deg);
|
|
1003
|
-
padding:
|
|
1108
|
+
padding: 0 12px;
|
|
1004
1109
|
margin: 0 auto 0 0;
|
|
1005
1110
|
}
|
|
1111
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1112
|
+
margin: 9px 12px 9px 0;
|
|
1113
|
+
}
|
|
1006
1114
|
|
|
1007
1115
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
1008
1116
|
-ms-flex-direction: column;
|
|
@@ -1029,6 +1137,18 @@
|
|
|
1029
1137
|
-ms-flex-pack: start;
|
|
1030
1138
|
justify-content: flex-start;
|
|
1031
1139
|
}
|
|
1140
|
+
.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 {
|
|
1141
|
+
border-top-right-radius: 4px;
|
|
1142
|
+
border-top-left-radius: 4px;
|
|
1143
|
+
border-bottom-right-radius: 0;
|
|
1144
|
+
border-bottom-left-radius: 0;
|
|
1145
|
+
}
|
|
1146
|
+
.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 {
|
|
1147
|
+
border-top-right-radius: 0;
|
|
1148
|
+
border-top-left-radius: 0;
|
|
1149
|
+
border-bottom-right-radius: 4px;
|
|
1150
|
+
border-bottom-left-radius: 4px;
|
|
1151
|
+
}
|
|
1032
1152
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
1033
1153
|
box-shadow: none;
|
|
1034
1154
|
border-radius: 4px;
|
|
@@ -1047,7 +1167,7 @@
|
|
|
1047
1167
|
padding: 0;
|
|
1048
1168
|
font-weight: 400;
|
|
1049
1169
|
font-size: 12px;
|
|
1050
|
-
border:
|
|
1170
|
+
border: 1px solid #8a8886;
|
|
1051
1171
|
text-transform: none;
|
|
1052
1172
|
}
|
|
1053
1173
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1058,6 +1178,119 @@
|
|
|
1058
1178
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1059
1179
|
}
|
|
1060
1180
|
|
|
1181
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1182
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1183
|
+
border-radius: 4px;
|
|
1184
|
+
padding: 0 12px 12px;
|
|
1185
|
+
overflow: auto;
|
|
1186
|
+
}
|
|
1187
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1188
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1189
|
+
padding: 8px 0 10px;
|
|
1190
|
+
font-size: 14px;
|
|
1191
|
+
font-weight: 600;
|
|
1192
|
+
line-height: 22px;
|
|
1193
|
+
}
|
|
1194
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1195
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1196
|
+
margin: 4px;
|
|
1197
|
+
height: 54px;
|
|
1198
|
+
width: 73px;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1202
|
+
width: 95px;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1206
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1207
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1208
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1209
|
+
padding: 0;
|
|
1210
|
+
margin: 0;
|
|
1211
|
+
display: -ms-flexbox;
|
|
1212
|
+
display: flex;
|
|
1213
|
+
-ms-flex-line-pack: distribute;
|
|
1214
|
+
align-content: space-around;
|
|
1215
|
+
}
|
|
1216
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1217
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1218
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1219
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1220
|
+
display: inherit;
|
|
1221
|
+
-ms-flex-align: center;
|
|
1222
|
+
align-items: center;
|
|
1223
|
+
-ms-flex-pack: center;
|
|
1224
|
+
justify-content: center;
|
|
1225
|
+
text-align: center;
|
|
1226
|
+
list-style-type: none;
|
|
1227
|
+
padding: 5px 0;
|
|
1228
|
+
-ms-flex-direction: column;
|
|
1229
|
+
flex-direction: column;
|
|
1230
|
+
cursor: pointer;
|
|
1231
|
+
border-width: 2px;
|
|
1232
|
+
border-style: solid;
|
|
1233
|
+
border-radius: 4px;
|
|
1234
|
+
}
|
|
1235
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1236
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1237
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1238
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1239
|
+
pointer-events: none;
|
|
1240
|
+
}
|
|
1241
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1242
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1243
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1244
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1245
|
+
display: none;
|
|
1246
|
+
}
|
|
1247
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1248
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1249
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1250
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1251
|
+
font-size: 14px;
|
|
1252
|
+
font-weight: 400;
|
|
1253
|
+
line-height: 22px;
|
|
1254
|
+
width: inherit;
|
|
1255
|
+
overflow: hidden;
|
|
1256
|
+
white-space: nowrap;
|
|
1257
|
+
text-overflow: ellipsis;
|
|
1258
|
+
}
|
|
1259
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1260
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1261
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1262
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1263
|
+
font-size: 20px;
|
|
1264
|
+
font-weight: 400;
|
|
1265
|
+
line-height: 20px;
|
|
1266
|
+
padding: 3px;
|
|
1267
|
+
background-size: cover;
|
|
1268
|
+
}
|
|
1269
|
+
.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,
|
|
1270
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1271
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1272
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1273
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1274
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1275
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1276
|
+
border-radius: 4px;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
.e-ribbon-keytip {
|
|
1280
|
+
min-width: 20px;
|
|
1281
|
+
height: 20px;
|
|
1282
|
+
line-height: 18px;
|
|
1283
|
+
font-size: 14px;
|
|
1284
|
+
}
|
|
1285
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1286
|
+
display: -ms-flexbox;
|
|
1287
|
+
display: flex;
|
|
1288
|
+
-ms-flex-pack: center;
|
|
1289
|
+
justify-content: center;
|
|
1290
|
+
-ms-flex-align: center;
|
|
1291
|
+
align-items: center;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1061
1294
|
.e-ribbon-menu {
|
|
1062
1295
|
display: block;
|
|
1063
1296
|
}
|
|
@@ -1459,11 +1692,42 @@
|
|
|
1459
1692
|
border-radius: 2px;
|
|
1460
1693
|
}
|
|
1461
1694
|
|
|
1695
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1696
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1697
|
+
line-height: 22px;
|
|
1698
|
+
height: 32px;
|
|
1699
|
+
font-size: 16px;
|
|
1700
|
+
}
|
|
1701
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1702
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1703
|
+
font-size: 18px;
|
|
1704
|
+
}
|
|
1705
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1706
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1707
|
+
height: 40px;
|
|
1708
|
+
}
|
|
1709
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1710
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1711
|
+
height: 40px;
|
|
1712
|
+
}
|
|
1713
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1714
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1715
|
+
font-size: 20px;
|
|
1716
|
+
}
|
|
1717
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1718
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1719
|
+
margin: 0;
|
|
1720
|
+
}
|
|
1721
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1722
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1723
|
+
-ms-flex-align: center;
|
|
1724
|
+
align-items: center;
|
|
1725
|
+
}
|
|
1462
1726
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1463
1727
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1464
1728
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1465
1729
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1466
|
-
font-size:
|
|
1730
|
+
font-size: 16px;
|
|
1467
1731
|
}
|
|
1468
1732
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1469
1733
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1473,32 +1737,60 @@
|
|
|
1473
1737
|
}
|
|
1474
1738
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1475
1739
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1476
|
-
margin:
|
|
1740
|
+
margin: 11px 0 11px 16px;
|
|
1477
1741
|
padding: 0;
|
|
1478
1742
|
}
|
|
1743
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1744
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1745
|
+
padding: 7px 0 7px 16px;
|
|
1746
|
+
}
|
|
1479
1747
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1480
1748
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1481
1749
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1482
1750
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1483
|
-
margin-left:
|
|
1751
|
+
margin-left: 46px;
|
|
1752
|
+
}
|
|
1753
|
+
.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,
|
|
1754
|
+
.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 {
|
|
1755
|
+
padding: 11px 12px 11px 16px;
|
|
1756
|
+
}
|
|
1757
|
+
.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,
|
|
1758
|
+
.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 {
|
|
1759
|
+
margin-left: 46px;
|
|
1484
1760
|
}
|
|
1485
1761
|
.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,
|
|
1486
1762
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1487
1763
|
.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,
|
|
1488
1764
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1489
|
-
padding:
|
|
1765
|
+
padding: 0 12px;
|
|
1766
|
+
}
|
|
1767
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1768
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1769
|
+
padding: 7px 16px 7px 0;
|
|
1490
1770
|
}
|
|
1491
1771
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1492
1772
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1493
1773
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1494
1774
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1495
|
-
margin-right:
|
|
1775
|
+
margin-right: 46px;
|
|
1776
|
+
}
|
|
1777
|
+
.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,
|
|
1778
|
+
.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 {
|
|
1779
|
+
padding: 11px 16px 11px 12px;
|
|
1780
|
+
}
|
|
1781
|
+
.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,
|
|
1782
|
+
.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 {
|
|
1783
|
+
margin-right: 46px;
|
|
1496
1784
|
}
|
|
1497
1785
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1498
1786
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1499
1787
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1500
1788
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1501
|
-
padding:
|
|
1789
|
+
padding: 0 12px;
|
|
1790
|
+
}
|
|
1791
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1792
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1793
|
+
margin: 11px 16px 11px 0;
|
|
1502
1794
|
}
|
|
1503
1795
|
|
|
1504
1796
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1571,9 +1863,30 @@
|
|
|
1571
1863
|
padding: 0 7px 0 0;
|
|
1572
1864
|
}
|
|
1573
1865
|
|
|
1866
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1867
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1868
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1869
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1870
|
+
padding: 0 16px 16px;
|
|
1871
|
+
}
|
|
1872
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1873
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1874
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1875
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1876
|
+
padding-bottom: 7px 0 11px;
|
|
1877
|
+
font-size: 16px;
|
|
1878
|
+
line-height: 24px;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1574
1881
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1575
1882
|
border-color: unset;
|
|
1576
1883
|
}
|
|
1884
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1885
|
+
background: #252423;
|
|
1886
|
+
}
|
|
1887
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1888
|
+
color: #0078d4;
|
|
1889
|
+
}
|
|
1577
1890
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1578
1891
|
color: #f3f2f1;
|
|
1579
1892
|
}
|
|
@@ -1756,6 +2069,10 @@
|
|
|
1756
2069
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1757
2070
|
border-color: transparent;
|
|
1758
2071
|
}
|
|
2072
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2073
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2074
|
+
border-color: #797775;
|
|
2075
|
+
}
|
|
1759
2076
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1760
2077
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1761
2078
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2161,6 +2478,58 @@
|
|
|
2161
2478
|
background: transparent;
|
|
2162
2479
|
}
|
|
2163
2480
|
|
|
2481
|
+
.e-ribbon-gallery-item {
|
|
2482
|
+
background: transparent;
|
|
2483
|
+
border-color: transparent;
|
|
2484
|
+
}
|
|
2485
|
+
.e-ribbon-gallery-item:hover {
|
|
2486
|
+
background: #252423;
|
|
2487
|
+
}
|
|
2488
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2489
|
+
background: #292827;
|
|
2490
|
+
}
|
|
2491
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2492
|
+
color: #f3f2f1;
|
|
2493
|
+
}
|
|
2494
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2495
|
+
color: #a19f9d;
|
|
2496
|
+
}
|
|
2497
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2498
|
+
background: transparent;
|
|
2499
|
+
}
|
|
2500
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2501
|
+
color: #484644;
|
|
2502
|
+
}
|
|
2503
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2504
|
+
color: #484644;
|
|
2505
|
+
}
|
|
2506
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2507
|
+
border-color: #292827;
|
|
2508
|
+
}
|
|
2509
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2510
|
+
color: #f3f2f1;
|
|
2511
|
+
}
|
|
2512
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2513
|
+
color: #a19f9d;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.e-ribbon-gallery-button {
|
|
2517
|
+
border-color: #797775;
|
|
2518
|
+
}
|
|
2519
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2520
|
+
background: #292827;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2524
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2525
|
+
background: #252423;
|
|
2526
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
|
2527
|
+
}
|
|
2528
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2529
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2530
|
+
color: #f3f2f1;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2164
2533
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2165
2534
|
color: #a19f9d;
|
|
2166
2535
|
}
|
|
@@ -2205,6 +2574,11 @@
|
|
|
2205
2574
|
color: #252423;
|
|
2206
2575
|
}
|
|
2207
2576
|
|
|
2577
|
+
.e-ribbon-keytip {
|
|
2578
|
+
background-color: #f3f2f1;
|
|
2579
|
+
color: #1b1a19;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2208
2582
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2209
2583
|
background: #252423;
|
|
2210
2584
|
}
|