@syncfusion/ej2-ribbon 24.2.8 → 25.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -4
- package/README.md +3 -0
- package/dist/ej2-ribbon.umd.min.js +2 -2
- package/dist/ej2-ribbon.umd.min.js.map +1 -1
- package/dist/es6/ej2-ribbon.es2015.js +2164 -217
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +2293 -226
- package/dist/es6/ej2-ribbon.es5.js.map +1 -1
- package/dist/global/ej2-ribbon.min.js +2 -2
- package/dist/global/ej2-ribbon.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/global.js +1 -1
- package/src/ribbon/base/constant.d.ts +8 -0
- package/src/ribbon/base/constant.js +8 -0
- package/src/ribbon/base/interface.d.ts +114 -1
- package/src/ribbon/base/interface.js +4 -0
- package/src/ribbon/base/ribbon-model.d.ts +22 -1
- package/src/ribbon/base/ribbon.d.ts +70 -5
- package/src/ribbon/base/ribbon.js +571 -157
- package/src/ribbon/base/utils.d.ts +3 -2
- package/src/ribbon/base/utils.js +3 -2
- package/src/ribbon/items/index.d.ts +1 -0
- package/src/ribbon/items/index.js +1 -0
- package/src/ribbon/items/ribbon-colorpicker.js +6 -1
- package/src/ribbon/items/ribbon-gallery.d.ts +87 -0
- package/src/ribbon/items/ribbon-gallery.js +712 -0
- package/src/ribbon/items/ribbon-groupbutton.js +3 -0
- package/src/ribbon/models/index.d.ts +8 -0
- package/src/ribbon/models/index.js +4 -0
- package/src/ribbon/models/ribbon-back-stage-settings-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-back-stage-settings.d.ts +6 -0
- package/src/ribbon/models/ribbon-back-stage-settings.js +3 -0
- package/src/ribbon/models/ribbon-backstage-item-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-backstage-item.d.ts +6 -0
- package/src/ribbon/models/ribbon-backstage-item.js +3 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings-model.d.ts +30 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings.d.ts +33 -0
- package/src/ribbon/models/ribbon-contextual-tab-settings.js +50 -0
- package/src/ribbon/models/ribbon-file-menu-settings-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-file-menu-settings.d.ts +6 -0
- package/src/ribbon/models/ribbon-file-menu-settings.js +3 -0
- package/src/ribbon/models/ribbon-gallery-group-model.d.ts +44 -0
- package/src/ribbon/models/ribbon-gallery-group.d.ts +38 -0
- package/src/ribbon/models/ribbon-gallery-group.js +47 -0
- package/src/ribbon/models/ribbon-gallery-item-model.d.ts +43 -0
- package/src/ribbon/models/ribbon-gallery-item.d.ts +38 -0
- package/src/ribbon/models/ribbon-gallery-item.js +46 -0
- package/src/ribbon/models/ribbon-gallery-settings-model.d.ts +108 -0
- package/src/ribbon/models/ribbon-gallery-settings.d.ts +95 -0
- package/src/ribbon/models/ribbon-gallery-settings.js +71 -0
- package/src/ribbon/models/ribbon-group-button-item-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-group-button-item.d.ts +6 -0
- package/src/ribbon/models/ribbon-group-button-item.js +3 -0
- package/src/ribbon/models/ribbon-group-model.d.ts +14 -0
- package/src/ribbon/models/ribbon-group.d.ts +12 -0
- package/src/ribbon/models/ribbon-group.js +6 -0
- package/src/ribbon/models/ribbon-item-model.d.ts +15 -1
- package/src/ribbon/models/ribbon-item.d.ts +13 -0
- package/src/ribbon/models/ribbon-item.js +7 -0
- package/src/ribbon/models/ribbon-tab-model.d.ts +7 -0
- package/src/ribbon/models/ribbon-tab.d.ts +6 -0
- package/src/ribbon/models/ribbon-tab.js +3 -0
- package/src/ribbon/modules/index.d.ts +2 -0
- package/src/ribbon/modules/index.js +2 -0
- package/src/ribbon/modules/ribbon-backstage.d.ts +2 -0
- package/src/ribbon/modules/ribbon-backstage.js +37 -0
- package/src/ribbon/modules/ribbon-contextualtab.d.ts +27 -0
- package/src/ribbon/modules/ribbon-contextualtab.js +90 -0
- package/src/ribbon/modules/ribbon-filemenu.d.ts +2 -0
- package/src/ribbon/modules/ribbon-filemenu.js +19 -0
- package/src/ribbon/modules/ribbon-keytip.d.ts +54 -0
- package/src/ribbon/modules/ribbon-keytip.js +554 -0
- package/styles/bootstrap-dark.css +398 -24
- package/styles/bootstrap.css +389 -15
- package/styles/bootstrap4.css +398 -24
- package/styles/bootstrap5-dark.css +391 -17
- package/styles/bootstrap5.css +391 -17
- package/styles/fabric-dark.css +388 -14
- package/styles/fabric.css +387 -13
- package/styles/fluent-dark.css +389 -15
- package/styles/fluent.css +389 -15
- package/styles/highcontrast-light.css +381 -7
- package/styles/highcontrast.css +390 -16
- package/styles/material-dark.css +391 -17
- package/styles/material.css +391 -17
- package/styles/material3-dark.css +389 -15
- package/styles/material3.css +389 -15
- package/styles/ribbon/_bds-definition.scss +360 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +81 -6
- package/styles/ribbon/_bootstrap-definition.scss +81 -6
- package/styles/ribbon/_bootstrap4-definition.scss +82 -7
- package/styles/ribbon/_bootstrap5-definition.scss +81 -6
- package/styles/ribbon/_fabric-dark-definition.scss +78 -3
- package/styles/ribbon/_fabric-definition.scss +78 -3
- package/styles/ribbon/_fluent-definition.scss +80 -5
- package/styles/ribbon/_fusionnew-definition.scss +76 -1
- package/styles/ribbon/_highcontrast-definition.scss +80 -5
- package/styles/ribbon/_highcontrast-light-definition.scss +76 -1
- package/styles/ribbon/_layout.scss +344 -38
- package/styles/ribbon/_material-dark-definition.scss +80 -5
- package/styles/ribbon/_material-definition.scss +81 -6
- package/styles/ribbon/_material3-definition.scss +80 -5
- package/styles/ribbon/_tailwind-definition.scss +80 -5
- package/styles/ribbon/_theme.scss +71 -0
- package/styles/ribbon/bootstrap-dark.css +398 -24
- package/styles/ribbon/bootstrap.css +389 -15
- package/styles/ribbon/bootstrap4.css +398 -24
- package/styles/ribbon/bootstrap5-dark.css +391 -17
- package/styles/ribbon/bootstrap5.css +391 -17
- package/styles/ribbon/fabric-dark.css +388 -14
- package/styles/ribbon/fabric.css +387 -13
- package/styles/ribbon/fluent-dark.css +389 -15
- package/styles/ribbon/fluent.css +389 -15
- package/styles/ribbon/highcontrast-light.css +381 -7
- package/styles/ribbon/highcontrast.css +390 -16
- package/styles/ribbon/icons/_bds.scss +9 -0
- package/styles/ribbon/material-dark.css +391 -17
- package/styles/ribbon/material.css +391 -17
- package/styles/ribbon/material3-dark.css +389 -15
- package/styles/ribbon/material3.css +389 -15
- package/styles/ribbon/tailwind-dark.css +390 -16
- package/styles/ribbon/tailwind.css +390 -16
- package/styles/tailwind-dark.css +390 -16
- package/styles/tailwind.css +390 -16
|
@@ -324,6 +324,21 @@
|
|
|
324
324
|
.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 {
|
|
325
325
|
display: none;
|
|
326
326
|
}
|
|
327
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
328
|
+
height: 30px;
|
|
329
|
+
}
|
|
330
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
331
|
+
padding: 5px 0;
|
|
332
|
+
width: 78px;
|
|
333
|
+
margin: 2px;
|
|
334
|
+
max-height: 26px;
|
|
335
|
+
}
|
|
336
|
+
.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 {
|
|
337
|
+
pointer-events: none;
|
|
338
|
+
}
|
|
339
|
+
.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 {
|
|
340
|
+
font-size: 12px;
|
|
341
|
+
}
|
|
327
342
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
328
343
|
overflow-y: hidden;
|
|
329
344
|
}
|
|
@@ -619,6 +634,28 @@
|
|
|
619
634
|
padding: 1px;
|
|
620
635
|
vertical-align: middle;
|
|
621
636
|
}
|
|
637
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
638
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
639
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
640
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
641
|
+
height: 72px;
|
|
642
|
+
display: -ms-flexbox;
|
|
643
|
+
display: flex;
|
|
644
|
+
}
|
|
645
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
646
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
647
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
648
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
649
|
+
max-height: 72px;
|
|
650
|
+
}
|
|
651
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
652
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
653
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
654
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
655
|
+
padding: 0;
|
|
656
|
+
border-width: 0 0 0 1px;
|
|
657
|
+
border-radius: 0 4px 4px 0;
|
|
658
|
+
}
|
|
622
659
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
623
660
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
624
661
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -724,6 +761,13 @@
|
|
|
724
761
|
min-height: 33%;
|
|
725
762
|
padding: 2px;
|
|
726
763
|
}
|
|
764
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
765
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
766
|
+
padding: 0;
|
|
767
|
+
border-style: solid;
|
|
768
|
+
border-width: 1px;
|
|
769
|
+
border-radius: 4px;
|
|
770
|
+
}
|
|
727
771
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
728
772
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
729
773
|
box-shadow: none;
|
|
@@ -870,9 +914,36 @@
|
|
|
870
914
|
padding: 0 0 0 2px;
|
|
871
915
|
}
|
|
872
916
|
|
|
917
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup:has(.e-ribbon-overflow-target) {
|
|
918
|
+
min-width: 190px;
|
|
919
|
+
}
|
|
873
920
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
874
921
|
display: none;
|
|
875
922
|
}
|
|
923
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
924
|
+
border: 0;
|
|
925
|
+
}
|
|
926
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
927
|
+
margin: 5px 0;
|
|
928
|
+
}
|
|
929
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
930
|
+
padding: 0;
|
|
931
|
+
display: -ms-flexbox;
|
|
932
|
+
display: flex;
|
|
933
|
+
-ms-flex-align: center;
|
|
934
|
+
align-items: center;
|
|
935
|
+
-ms-flex-pack: start;
|
|
936
|
+
justify-content: flex-start;
|
|
937
|
+
width: 100%;
|
|
938
|
+
}
|
|
939
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
940
|
+
margin: 0;
|
|
941
|
+
}
|
|
942
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
943
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
944
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
945
|
+
display: none;
|
|
946
|
+
}
|
|
876
947
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
877
948
|
display: none;
|
|
878
949
|
}
|
|
@@ -885,6 +956,12 @@
|
|
|
885
956
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
886
957
|
pointer-events: none;
|
|
887
958
|
}
|
|
959
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
960
|
+
font-size: 12px;
|
|
961
|
+
}
|
|
962
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
963
|
+
height: 30px;
|
|
964
|
+
}
|
|
888
965
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
889
966
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
890
967
|
white-space: nowrap;
|
|
@@ -895,21 +972,32 @@
|
|
|
895
972
|
font-weight: 400;
|
|
896
973
|
font-size: 12px;
|
|
897
974
|
}
|
|
975
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
976
|
+
-ms-flex-align: center;
|
|
977
|
+
align-items: center;
|
|
978
|
+
}
|
|
898
979
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
899
980
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
900
981
|
margin: 2px 8px;
|
|
901
982
|
}
|
|
983
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
984
|
+
font-size: 16px;
|
|
985
|
+
}
|
|
902
986
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
903
|
-
margin:
|
|
987
|
+
margin: 7px 0 7px 12px;
|
|
904
988
|
padding: 0;
|
|
905
989
|
}
|
|
906
990
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
907
991
|
padding: 0;
|
|
908
992
|
width: 100%;
|
|
993
|
+
height: 30px;
|
|
994
|
+
}
|
|
995
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
996
|
+
margin: 0;
|
|
909
997
|
}
|
|
910
998
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
911
999
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
912
|
-
line-height:
|
|
1000
|
+
line-height: 16px;
|
|
913
1001
|
overflow: hidden;
|
|
914
1002
|
}
|
|
915
1003
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper {
|
|
@@ -922,32 +1010,52 @@
|
|
|
922
1010
|
justify-content: flex-start;
|
|
923
1011
|
}
|
|
924
1012
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
925
|
-
padding:
|
|
1013
|
+
padding: 5px 0 5px 12px;
|
|
1014
|
+
font-size: 14px;
|
|
926
1015
|
font-weight: 400;
|
|
927
|
-
line-height:
|
|
1016
|
+
line-height: 18px;
|
|
1017
|
+
height: 24px;
|
|
928
1018
|
}
|
|
929
1019
|
|
|
930
1020
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
931
1021
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
932
|
-
margin-left:
|
|
1022
|
+
margin-left: 36px;
|
|
1023
|
+
}
|
|
1024
|
+
.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 {
|
|
1025
|
+
padding: 7px 8px 7px 12px;
|
|
1026
|
+
}
|
|
1027
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1028
|
+
margin-left: 36px;
|
|
933
1029
|
}
|
|
934
1030
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
935
1031
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
936
1032
|
transform: rotate(-90deg);
|
|
937
|
-
padding:
|
|
1033
|
+
padding: 0 12px;
|
|
938
1034
|
margin: 0 0 0 auto;
|
|
939
1035
|
}
|
|
940
1036
|
|
|
1037
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1038
|
+
padding: 5px 12px 5px 0;
|
|
1039
|
+
}
|
|
941
1040
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
942
1041
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
943
|
-
margin-right:
|
|
1042
|
+
margin-right: 36px;
|
|
1043
|
+
}
|
|
1044
|
+
.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 {
|
|
1045
|
+
padding: 7px 12px 7px 8px;
|
|
1046
|
+
}
|
|
1047
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1048
|
+
margin-right: 36px;
|
|
944
1049
|
}
|
|
945
1050
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
946
1051
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
947
1052
|
transform: rotate(90deg);
|
|
948
|
-
padding:
|
|
1053
|
+
padding: 0 12px;
|
|
949
1054
|
margin: 0 auto 0 0;
|
|
950
1055
|
}
|
|
1056
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1057
|
+
margin: 7px 12px 7px 0;
|
|
1058
|
+
}
|
|
951
1059
|
|
|
952
1060
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
953
1061
|
-ms-flex-direction: column;
|
|
@@ -962,7 +1070,7 @@
|
|
|
962
1070
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-ribbon-groupbutton-header {
|
|
963
1071
|
padding-bottom: 2px;
|
|
964
1072
|
font-weight: 400;
|
|
965
|
-
line-height:
|
|
1073
|
+
line-height: 18px;
|
|
966
1074
|
white-space: nowrap;
|
|
967
1075
|
}
|
|
968
1076
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -974,6 +1082,18 @@
|
|
|
974
1082
|
-ms-flex-pack: start;
|
|
975
1083
|
justify-content: flex-start;
|
|
976
1084
|
}
|
|
1085
|
+
.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 {
|
|
1086
|
+
border-top-right-radius: 4px;
|
|
1087
|
+
border-top-left-radius: 4px;
|
|
1088
|
+
border-bottom-right-radius: 0;
|
|
1089
|
+
border-bottom-left-radius: 0;
|
|
1090
|
+
}
|
|
1091
|
+
.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 {
|
|
1092
|
+
border-top-right-radius: 0;
|
|
1093
|
+
border-top-left-radius: 0;
|
|
1094
|
+
border-bottom-right-radius: 4px;
|
|
1095
|
+
border-bottom-left-radius: 4px;
|
|
1096
|
+
}
|
|
977
1097
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
978
1098
|
box-shadow: none;
|
|
979
1099
|
border-radius: 2px;
|
|
@@ -992,7 +1112,7 @@
|
|
|
992
1112
|
padding: 0;
|
|
993
1113
|
font-weight: 400;
|
|
994
1114
|
font-size: 12px;
|
|
995
|
-
border:
|
|
1115
|
+
border: 1px solid #333;
|
|
996
1116
|
text-transform: none;
|
|
997
1117
|
}
|
|
998
1118
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -1003,6 +1123,119 @@
|
|
|
1003
1123
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
1004
1124
|
}
|
|
1005
1125
|
|
|
1126
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1127
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1128
|
+
border-radius: 4px;
|
|
1129
|
+
padding: 0 12px 12px;
|
|
1130
|
+
overflow: auto;
|
|
1131
|
+
}
|
|
1132
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1133
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1134
|
+
padding: 8px 0 4px;
|
|
1135
|
+
font-size: 14px;
|
|
1136
|
+
font-weight: 500;
|
|
1137
|
+
line-height: 22px;
|
|
1138
|
+
}
|
|
1139
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1140
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1141
|
+
margin: 4px;
|
|
1142
|
+
height: 54px;
|
|
1143
|
+
width: 73px;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1147
|
+
width: 95px;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1151
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1152
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1153
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1154
|
+
padding: 0;
|
|
1155
|
+
margin: 0;
|
|
1156
|
+
display: -ms-flexbox;
|
|
1157
|
+
display: flex;
|
|
1158
|
+
-ms-flex-line-pack: distribute;
|
|
1159
|
+
align-content: space-around;
|
|
1160
|
+
}
|
|
1161
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1162
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1163
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1164
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1165
|
+
display: inherit;
|
|
1166
|
+
-ms-flex-align: center;
|
|
1167
|
+
align-items: center;
|
|
1168
|
+
-ms-flex-pack: center;
|
|
1169
|
+
justify-content: center;
|
|
1170
|
+
text-align: center;
|
|
1171
|
+
list-style-type: none;
|
|
1172
|
+
padding: 5px 0;
|
|
1173
|
+
-ms-flex-direction: column;
|
|
1174
|
+
flex-direction: column;
|
|
1175
|
+
cursor: pointer;
|
|
1176
|
+
border-width: 2px;
|
|
1177
|
+
border-style: solid;
|
|
1178
|
+
border-radius: 4px;
|
|
1179
|
+
}
|
|
1180
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1181
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1182
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1183
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1184
|
+
pointer-events: none;
|
|
1185
|
+
}
|
|
1186
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1187
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1188
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1189
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1190
|
+
display: none;
|
|
1191
|
+
}
|
|
1192
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1193
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1194
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1195
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1196
|
+
font-size: 14px;
|
|
1197
|
+
font-weight: 400;
|
|
1198
|
+
line-height: 22px;
|
|
1199
|
+
width: inherit;
|
|
1200
|
+
overflow: hidden;
|
|
1201
|
+
white-space: nowrap;
|
|
1202
|
+
text-overflow: ellipsis;
|
|
1203
|
+
}
|
|
1204
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1205
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1206
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1207
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1208
|
+
font-size: 20px;
|
|
1209
|
+
font-weight: 400;
|
|
1210
|
+
line-height: 20px;
|
|
1211
|
+
padding: 3px;
|
|
1212
|
+
background-size: cover;
|
|
1213
|
+
}
|
|
1214
|
+
.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,
|
|
1215
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1216
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1217
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1218
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1219
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1220
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1221
|
+
border-radius: 4px;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.e-ribbon-keytip {
|
|
1225
|
+
min-width: 20px;
|
|
1226
|
+
height: 20px;
|
|
1227
|
+
line-height: 18px;
|
|
1228
|
+
font-size: 14px;
|
|
1229
|
+
}
|
|
1230
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1231
|
+
display: -ms-flexbox;
|
|
1232
|
+
display: flex;
|
|
1233
|
+
-ms-flex-pack: center;
|
|
1234
|
+
justify-content: center;
|
|
1235
|
+
-ms-flex-align: center;
|
|
1236
|
+
align-items: center;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1006
1239
|
.e-ribbon-menu {
|
|
1007
1240
|
display: block;
|
|
1008
1241
|
}
|
|
@@ -1404,6 +1637,37 @@
|
|
|
1404
1637
|
border-radius: unset;
|
|
1405
1638
|
}
|
|
1406
1639
|
|
|
1640
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1641
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1642
|
+
line-height: 22px;
|
|
1643
|
+
height: 28px;
|
|
1644
|
+
font-size: 16px;
|
|
1645
|
+
}
|
|
1646
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1647
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1648
|
+
font-size: 14px;
|
|
1649
|
+
}
|
|
1650
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1651
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1652
|
+
height: 38px;
|
|
1653
|
+
}
|
|
1654
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1655
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1656
|
+
height: 40px;
|
|
1657
|
+
}
|
|
1658
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1659
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1660
|
+
font-size: 18px;
|
|
1661
|
+
}
|
|
1662
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1663
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1664
|
+
margin: 0;
|
|
1665
|
+
}
|
|
1666
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1667
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1668
|
+
-ms-flex-align: center;
|
|
1669
|
+
align-items: center;
|
|
1670
|
+
}
|
|
1407
1671
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1408
1672
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1409
1673
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
@@ -1418,32 +1682,60 @@
|
|
|
1418
1682
|
}
|
|
1419
1683
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1420
1684
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1421
|
-
margin:
|
|
1685
|
+
margin: 11px 0 11px 16px;
|
|
1422
1686
|
padding: 0;
|
|
1423
1687
|
}
|
|
1688
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1689
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1690
|
+
padding: 5px 0 5px 16px;
|
|
1691
|
+
}
|
|
1424
1692
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1425
1693
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1426
1694
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1427
1695
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1428
|
-
margin-left:
|
|
1696
|
+
margin-left: 44px;
|
|
1697
|
+
}
|
|
1698
|
+
.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,
|
|
1699
|
+
.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 {
|
|
1700
|
+
padding: 11px 10px 11px 16px;
|
|
1701
|
+
}
|
|
1702
|
+
.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,
|
|
1703
|
+
.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 {
|
|
1704
|
+
margin-left: 44px;
|
|
1429
1705
|
}
|
|
1430
1706
|
.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,
|
|
1431
1707
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1432
1708
|
.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,
|
|
1433
1709
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1434
|
-
padding:
|
|
1710
|
+
padding: 0 12px;
|
|
1711
|
+
}
|
|
1712
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1713
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1714
|
+
padding: 5px 16px 5px 0;
|
|
1435
1715
|
}
|
|
1436
1716
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1437
1717
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1438
1718
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1439
1719
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1440
|
-
margin-right:
|
|
1720
|
+
margin-right: 44px;
|
|
1721
|
+
}
|
|
1722
|
+
.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,
|
|
1723
|
+
.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 {
|
|
1724
|
+
padding: 11px 16px 11px 10px;
|
|
1725
|
+
}
|
|
1726
|
+
.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,
|
|
1727
|
+
.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 {
|
|
1728
|
+
margin-right: 44px;
|
|
1441
1729
|
}
|
|
1442
1730
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1443
1731
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1444
1732
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1445
1733
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1446
|
-
padding:
|
|
1734
|
+
padding: 0 12px;
|
|
1735
|
+
}
|
|
1736
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1737
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1738
|
+
margin: 11px 16px 11px 0;
|
|
1447
1739
|
}
|
|
1448
1740
|
|
|
1449
1741
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1516,9 +1808,30 @@
|
|
|
1516
1808
|
padding: 0 10px 0 0;
|
|
1517
1809
|
}
|
|
1518
1810
|
|
|
1811
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1812
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1813
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1814
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1815
|
+
padding: 0 16px 16px;
|
|
1816
|
+
}
|
|
1817
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1818
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1819
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1820
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1821
|
+
padding-bottom: 12px 0 8px;
|
|
1822
|
+
font-size: 16px;
|
|
1823
|
+
line-height: 24px;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1519
1826
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1520
1827
|
border-color: unset;
|
|
1521
1828
|
}
|
|
1829
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1830
|
+
background: #f8f8f8;
|
|
1831
|
+
}
|
|
1832
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1833
|
+
color: #317ab9;
|
|
1834
|
+
}
|
|
1522
1835
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1523
1836
|
color: #333;
|
|
1524
1837
|
}
|
|
@@ -1701,6 +2014,10 @@
|
|
|
1701
2014
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1702
2015
|
border-color: transparent;
|
|
1703
2016
|
}
|
|
2017
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
2018
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
2019
|
+
border-color: #ddd;
|
|
2020
|
+
}
|
|
1704
2021
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1705
2022
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1706
2023
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2106,6 +2423,58 @@
|
|
|
2106
2423
|
background: transparent;
|
|
2107
2424
|
}
|
|
2108
2425
|
|
|
2426
|
+
.e-ribbon-gallery-item {
|
|
2427
|
+
background: transparent;
|
|
2428
|
+
border-color: transparent;
|
|
2429
|
+
}
|
|
2430
|
+
.e-ribbon-gallery-item:hover {
|
|
2431
|
+
background: #eee;
|
|
2432
|
+
}
|
|
2433
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2434
|
+
background: #317ab9;
|
|
2435
|
+
}
|
|
2436
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2437
|
+
color: #fff;
|
|
2438
|
+
}
|
|
2439
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2440
|
+
color: #fff;
|
|
2441
|
+
}
|
|
2442
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2443
|
+
background: transparent;
|
|
2444
|
+
}
|
|
2445
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2446
|
+
color: #adadad;
|
|
2447
|
+
}
|
|
2448
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2449
|
+
color: #adadad;
|
|
2450
|
+
}
|
|
2451
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2452
|
+
border-color: #eee;
|
|
2453
|
+
}
|
|
2454
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2455
|
+
color: #333;
|
|
2456
|
+
}
|
|
2457
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2458
|
+
color: #333;
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
.e-ribbon-gallery-button {
|
|
2462
|
+
border-color: #ddd;
|
|
2463
|
+
}
|
|
2464
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2465
|
+
background: #317ab9;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2469
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2470
|
+
background: #fff;
|
|
2471
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
2472
|
+
}
|
|
2473
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2474
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2475
|
+
color: #333;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2109
2478
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2110
2479
|
color: #333;
|
|
2111
2480
|
}
|
|
@@ -2150,6 +2519,11 @@
|
|
|
2150
2519
|
color: #000;
|
|
2151
2520
|
}
|
|
2152
2521
|
|
|
2522
|
+
.e-ribbon-keytip {
|
|
2523
|
+
background-color: #000;
|
|
2524
|
+
color: #fff;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2153
2527
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2154
2528
|
background: #fff;
|
|
2155
2529
|
}
|