@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/ribbon/fabric.css
CHANGED
|
@@ -293,6 +293,21 @@
|
|
|
293
293
|
.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 {
|
|
294
294
|
display: none;
|
|
295
295
|
}
|
|
296
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
297
|
+
height: 30px;
|
|
298
|
+
}
|
|
299
|
+
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
300
|
+
padding: 5px 0;
|
|
301
|
+
width: 78px;
|
|
302
|
+
margin: 2px;
|
|
303
|
+
max-height: 26px;
|
|
304
|
+
}
|
|
305
|
+
.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 {
|
|
306
|
+
pointer-events: none;
|
|
307
|
+
}
|
|
308
|
+
.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 {
|
|
309
|
+
font-size: 12px;
|
|
310
|
+
}
|
|
296
311
|
.e-ribbon.e-rbn.e-ribbon-simplified-mode .e-ribbon-tab .e-hscroll-bar {
|
|
297
312
|
overflow-y: hidden;
|
|
298
313
|
}
|
|
@@ -588,6 +603,28 @@
|
|
|
588
603
|
padding: 1px;
|
|
589
604
|
vertical-align: middle;
|
|
590
605
|
}
|
|
606
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
607
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper,
|
|
608
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper,
|
|
609
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper {
|
|
610
|
+
height: 78px;
|
|
611
|
+
display: -ms-flexbox;
|
|
612
|
+
display: flex;
|
|
613
|
+
}
|
|
614
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
615
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
616
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
617
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-wrapper .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
618
|
+
max-height: 78px;
|
|
619
|
+
}
|
|
620
|
+
.e-ribbon.e-rbn .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
621
|
+
.e-ribbon.e-rbn .e-ribbon-item .e-ribbon-gallery-button,
|
|
622
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow .e-ribbon-gallery-button,
|
|
623
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-ribbon-gallery-button {
|
|
624
|
+
padding: 0;
|
|
625
|
+
border-width: 0 0 0 1px;
|
|
626
|
+
border-radius: 0 4px 4px 0;
|
|
627
|
+
}
|
|
591
628
|
.e-ribbon.e-rbn .e-ribbon-group-overflow.e-hidden,
|
|
592
629
|
.e-ribbon.e-rbn .e-ribbon-item.e-hidden,
|
|
593
630
|
.e-ribbon-group-overflow-ddb .e-ribbon-group-overflow.e-hidden,
|
|
@@ -693,6 +730,13 @@
|
|
|
693
730
|
min-height: 33%;
|
|
694
731
|
padding: 2px;
|
|
695
732
|
}
|
|
733
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
734
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
735
|
+
padding: 0;
|
|
736
|
+
border-style: solid;
|
|
737
|
+
border-width: 1px;
|
|
738
|
+
border-radius: 4px;
|
|
739
|
+
}
|
|
696
740
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group,
|
|
697
741
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-btn-group {
|
|
698
742
|
box-shadow: none;
|
|
@@ -839,9 +883,36 @@
|
|
|
839
883
|
padding: 0 0 0 2px;
|
|
840
884
|
}
|
|
841
885
|
|
|
886
|
+
.e-ribbon-group-overflow-ddb.e-dropdown-popup {
|
|
887
|
+
min-width: 190px;
|
|
888
|
+
}
|
|
842
889
|
.e-ribbon-group-overflow-ddb .e-ribbon-of-tab:not(.e-ribbon-active) {
|
|
843
890
|
display: none;
|
|
844
891
|
}
|
|
892
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
893
|
+
border: 0;
|
|
894
|
+
}
|
|
895
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-input-group) {
|
|
896
|
+
margin: 5px 0;
|
|
897
|
+
}
|
|
898
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn {
|
|
899
|
+
padding: 0;
|
|
900
|
+
display: -ms-flexbox;
|
|
901
|
+
display: flex;
|
|
902
|
+
-ms-flex-align: center;
|
|
903
|
+
align-items: center;
|
|
904
|
+
-ms-flex-pack: start;
|
|
905
|
+
justify-content: flex-start;
|
|
906
|
+
width: 100%;
|
|
907
|
+
}
|
|
908
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-dropdown.e-btn .e-btn-icon {
|
|
909
|
+
margin: 0;
|
|
910
|
+
}
|
|
911
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-wrapper.e-hidden,
|
|
912
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-container.e-hidden,
|
|
913
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-gallery-button.e-hidden {
|
|
914
|
+
display: none;
|
|
915
|
+
}
|
|
845
916
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hidden, .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target.e-hide-group {
|
|
846
917
|
display: none;
|
|
847
918
|
}
|
|
@@ -854,6 +925,12 @@
|
|
|
854
925
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-of-tab .e-ribbon-of-group-container.e-disabled {
|
|
855
926
|
pointer-events: none;
|
|
856
927
|
}
|
|
928
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
929
|
+
font-size: 14px;
|
|
930
|
+
}
|
|
931
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
932
|
+
height: 32px;
|
|
933
|
+
}
|
|
857
934
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
858
935
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
859
936
|
white-space: nowrap;
|
|
@@ -864,17 +941,28 @@
|
|
|
864
941
|
font-weight: 400;
|
|
865
942
|
font-size: 14px;
|
|
866
943
|
}
|
|
944
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
945
|
+
-ms-flex-align: center;
|
|
946
|
+
align-items: center;
|
|
947
|
+
}
|
|
867
948
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
868
949
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template {
|
|
869
950
|
margin: 7px 8px;
|
|
870
951
|
}
|
|
952
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
953
|
+
font-size: 14px;
|
|
954
|
+
}
|
|
871
955
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
872
|
-
margin:
|
|
956
|
+
margin: 9px 0 9px 12px;
|
|
873
957
|
padding: 0;
|
|
874
958
|
}
|
|
875
959
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
876
960
|
padding: 0;
|
|
877
961
|
width: 100%;
|
|
962
|
+
height: 32px;
|
|
963
|
+
}
|
|
964
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item .e-btn .e-btn-icon.e-icon-left {
|
|
965
|
+
margin: 0;
|
|
878
966
|
}
|
|
879
967
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-split-btn-wrapper .e-btn,
|
|
880
968
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item > .e-btn {
|
|
@@ -891,32 +979,52 @@
|
|
|
891
979
|
justify-content: flex-start;
|
|
892
980
|
}
|
|
893
981
|
.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
894
|
-
padding: 6px
|
|
982
|
+
padding: 6px 0 6px 12px;
|
|
983
|
+
font-size: 14px;
|
|
895
984
|
font-weight: 600;
|
|
896
|
-
line-height:
|
|
985
|
+
line-height: 18px;
|
|
986
|
+
height: 26px;
|
|
897
987
|
}
|
|
898
988
|
|
|
899
989
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
900
990
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
901
991
|
margin-left: 34px;
|
|
902
992
|
}
|
|
993
|
+
.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 {
|
|
994
|
+
padding: 9px 8px 9px 12px;
|
|
995
|
+
}
|
|
996
|
+
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
997
|
+
margin-left: 34px;
|
|
998
|
+
}
|
|
903
999
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
904
1000
|
.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
905
1001
|
transform: rotate(-90deg);
|
|
906
|
-
padding:
|
|
1002
|
+
padding: 0 12px;
|
|
907
1003
|
margin: 0 0 0 auto;
|
|
908
1004
|
}
|
|
909
1005
|
|
|
1006
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1007
|
+
padding: 6px 12px 6px 0;
|
|
1008
|
+
}
|
|
910
1009
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
911
1010
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
912
1011
|
margin-right: 34px;
|
|
913
1012
|
}
|
|
1013
|
+
.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 {
|
|
1014
|
+
padding: 9px 12px 9px 8px;
|
|
1015
|
+
}
|
|
1016
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:not(:has(.e-ribbon-colorpicker-label)) .e-colorpicker-wrapper {
|
|
1017
|
+
margin-right: 34px;
|
|
1018
|
+
}
|
|
914
1019
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
915
1020
|
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
916
1021
|
transform: rotate(90deg);
|
|
917
|
-
padding:
|
|
1022
|
+
padding: 0 12px;
|
|
918
1023
|
margin: 0 auto 0 0;
|
|
919
1024
|
}
|
|
1025
|
+
.e-rtl.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1026
|
+
margin: 9px 12px 9px 0;
|
|
1027
|
+
}
|
|
920
1028
|
|
|
921
1029
|
.e-dropdown-popup.e-ribbon-dropdown-group-button.e-ribbon-group-button-overflow-popup .e-btn-group:not(.e-icon-btn) {
|
|
922
1030
|
-ms-flex-direction: column;
|
|
@@ -931,7 +1039,7 @@
|
|
|
931
1039
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-ribbon-groupbutton-header {
|
|
932
1040
|
padding-bottom: 6px;
|
|
933
1041
|
font-weight: 600;
|
|
934
|
-
line-height:
|
|
1042
|
+
line-height: 18px;
|
|
935
1043
|
white-space: nowrap;
|
|
936
1044
|
}
|
|
937
1045
|
.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) {
|
|
@@ -943,6 +1051,18 @@
|
|
|
943
1051
|
-ms-flex-pack: start;
|
|
944
1052
|
justify-content: flex-start;
|
|
945
1053
|
}
|
|
1054
|
+
.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 {
|
|
1055
|
+
border-top-right-radius: 4px;
|
|
1056
|
+
border-top-left-radius: 4px;
|
|
1057
|
+
border-bottom-right-radius: 0;
|
|
1058
|
+
border-bottom-left-radius: 0;
|
|
1059
|
+
}
|
|
1060
|
+
.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 {
|
|
1061
|
+
border-top-right-radius: 0;
|
|
1062
|
+
border-top-left-radius: 0;
|
|
1063
|
+
border-bottom-right-radius: 4px;
|
|
1064
|
+
border-bottom-left-radius: 4px;
|
|
1065
|
+
}
|
|
946
1066
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group {
|
|
947
1067
|
box-shadow: none;
|
|
948
1068
|
border-radius: unset;
|
|
@@ -961,7 +1081,7 @@
|
|
|
961
1081
|
padding: 0;
|
|
962
1082
|
font-weight: 400;
|
|
963
1083
|
font-size: 14px;
|
|
964
|
-
border:
|
|
1084
|
+
border: 1px solid #d0d0d0;
|
|
965
1085
|
text-transform: none;
|
|
966
1086
|
}
|
|
967
1087
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-group .e-btn.e-ribbon-group-button:not(.e-icon-btn) {
|
|
@@ -972,6 +1092,119 @@
|
|
|
972
1092
|
box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
|
|
973
1093
|
}
|
|
974
1094
|
|
|
1095
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
1096
|
+
.e-ribbon-gallery-dropdown.e-popup {
|
|
1097
|
+
border-radius: 4px;
|
|
1098
|
+
padding: 0 12px 12px;
|
|
1099
|
+
overflow: auto;
|
|
1100
|
+
}
|
|
1101
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1102
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1103
|
+
padding: 8px 0 10px;
|
|
1104
|
+
font-size: 14px;
|
|
1105
|
+
font-weight: 600;
|
|
1106
|
+
line-height: 22px;
|
|
1107
|
+
}
|
|
1108
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1109
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1110
|
+
margin: 4px;
|
|
1111
|
+
height: 54px;
|
|
1112
|
+
width: 73px;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1116
|
+
width: 95px;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container,
|
|
1120
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container,
|
|
1121
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container,
|
|
1122
|
+
.e-ribbon-item .e-ribbon-gallery-container {
|
|
1123
|
+
padding: 0;
|
|
1124
|
+
margin: 0;
|
|
1125
|
+
display: -ms-flexbox;
|
|
1126
|
+
display: flex;
|
|
1127
|
+
-ms-flex-line-pack: distribute;
|
|
1128
|
+
align-content: space-around;
|
|
1129
|
+
}
|
|
1130
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1131
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1132
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item,
|
|
1133
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item {
|
|
1134
|
+
display: inherit;
|
|
1135
|
+
-ms-flex-align: center;
|
|
1136
|
+
align-items: center;
|
|
1137
|
+
-ms-flex-pack: center;
|
|
1138
|
+
justify-content: center;
|
|
1139
|
+
text-align: center;
|
|
1140
|
+
list-style-type: none;
|
|
1141
|
+
padding: 5px 0;
|
|
1142
|
+
-ms-flex-direction: column;
|
|
1143
|
+
flex-direction: column;
|
|
1144
|
+
cursor: pointer;
|
|
1145
|
+
border-width: 2px;
|
|
1146
|
+
border-style: solid;
|
|
1147
|
+
border-radius: 4px;
|
|
1148
|
+
}
|
|
1149
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1150
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1151
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled,
|
|
1152
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-disabled {
|
|
1153
|
+
pointer-events: none;
|
|
1154
|
+
}
|
|
1155
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1156
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1157
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden,
|
|
1158
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-hidden {
|
|
1159
|
+
display: none;
|
|
1160
|
+
}
|
|
1161
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1162
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1163
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text,
|
|
1164
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
1165
|
+
font-size: 14px;
|
|
1166
|
+
font-weight: 400;
|
|
1167
|
+
line-height: 22px;
|
|
1168
|
+
width: inherit;
|
|
1169
|
+
overflow: hidden;
|
|
1170
|
+
white-space: nowrap;
|
|
1171
|
+
text-overflow: ellipsis;
|
|
1172
|
+
}
|
|
1173
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1174
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1175
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons,
|
|
1176
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
1177
|
+
font-size: 20px;
|
|
1178
|
+
font-weight: 400;
|
|
1179
|
+
line-height: 20px;
|
|
1180
|
+
padding: 3px;
|
|
1181
|
+
background-size: cover;
|
|
1182
|
+
}
|
|
1183
|
+
.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,
|
|
1184
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1185
|
+
.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1186
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1187
|
+
.e-ribbon-group-overflow .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected,
|
|
1188
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item:hover,
|
|
1189
|
+
.e-ribbon-item .e-ribbon-gallery-container .e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
1190
|
+
border-radius: 4px;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.e-ribbon-keytip {
|
|
1194
|
+
min-width: 20px;
|
|
1195
|
+
height: 20px;
|
|
1196
|
+
line-height: 18px;
|
|
1197
|
+
font-size: 14px;
|
|
1198
|
+
}
|
|
1199
|
+
.e-ribbon-keytip.e-popup-open {
|
|
1200
|
+
display: -ms-flexbox;
|
|
1201
|
+
display: flex;
|
|
1202
|
+
-ms-flex-pack: center;
|
|
1203
|
+
justify-content: center;
|
|
1204
|
+
-ms-flex-align: center;
|
|
1205
|
+
align-items: center;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
975
1208
|
.e-ribbon-menu {
|
|
976
1209
|
display: block;
|
|
977
1210
|
}
|
|
@@ -1373,11 +1606,42 @@
|
|
|
1373
1606
|
border-radius: unset;
|
|
1374
1607
|
}
|
|
1375
1608
|
|
|
1609
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1610
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1611
|
+
line-height: 22px;
|
|
1612
|
+
height: 32px;
|
|
1613
|
+
font-size: 16px;
|
|
1614
|
+
}
|
|
1615
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret,
|
|
1616
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-dropdown-btn .e-caret {
|
|
1617
|
+
font-size: 18px;
|
|
1618
|
+
}
|
|
1619
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group,
|
|
1620
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-input-group {
|
|
1621
|
+
height: 40px;
|
|
1622
|
+
}
|
|
1623
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item,
|
|
1624
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item.e-ribbon-medium-item {
|
|
1625
|
+
height: 40px;
|
|
1626
|
+
}
|
|
1627
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon,
|
|
1628
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon {
|
|
1629
|
+
font-size: 18px;
|
|
1630
|
+
}
|
|
1631
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left,
|
|
1632
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-btn .e-btn-icon.e-icon-left {
|
|
1633
|
+
margin: 0;
|
|
1634
|
+
}
|
|
1635
|
+
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper),
|
|
1636
|
+
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item:has(.e-colorpicker-wrapper) {
|
|
1637
|
+
-ms-flex-align: center;
|
|
1638
|
+
align-items: center;
|
|
1639
|
+
}
|
|
1376
1640
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1377
1641
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1378
1642
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1379
1643
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1380
|
-
font-size:
|
|
1644
|
+
font-size: 18px;
|
|
1381
1645
|
}
|
|
1382
1646
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-input-group,
|
|
1383
1647
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-template,
|
|
@@ -1387,32 +1651,60 @@
|
|
|
1387
1651
|
}
|
|
1388
1652
|
.e-bigger .e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1389
1653
|
.e-bigger.e-ribbon-group-overflow-ddb .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1390
|
-
margin:
|
|
1654
|
+
margin: 11px 0 11px 16px;
|
|
1391
1655
|
padding: 0;
|
|
1392
1656
|
}
|
|
1657
|
+
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1658
|
+
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1659
|
+
padding: 7px 0 7px 16px;
|
|
1660
|
+
}
|
|
1393
1661
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1394
1662
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1395
1663
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1396
1664
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1397
|
-
margin-left:
|
|
1665
|
+
margin-left: 46px;
|
|
1666
|
+
}
|
|
1667
|
+
.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,
|
|
1668
|
+
.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 {
|
|
1669
|
+
padding: 11px 12px 11px 16px;
|
|
1670
|
+
}
|
|
1671
|
+
.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,
|
|
1672
|
+
.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 {
|
|
1673
|
+
margin-left: 46px;
|
|
1398
1674
|
}
|
|
1399
1675
|
.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,
|
|
1400
1676
|
.e-bigger .e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1401
1677
|
.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,
|
|
1402
1678
|
.e-bigger.e-ribbon-group-overflow-ddb:not(.e-rtl) .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1403
|
-
padding:
|
|
1679
|
+
padding: 0 12px;
|
|
1680
|
+
}
|
|
1681
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header,
|
|
1682
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-overflow-header {
|
|
1683
|
+
padding: 7px 16px 7px 0;
|
|
1404
1684
|
}
|
|
1405
1685
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1406
1686
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label,
|
|
1407
1687
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-combobox-label,
|
|
1408
1688
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item .e-ribbon-colorpicker-label {
|
|
1409
|
-
margin-right:
|
|
1689
|
+
margin-right: 46px;
|
|
1690
|
+
}
|
|
1691
|
+
.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,
|
|
1692
|
+
.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 {
|
|
1693
|
+
padding: 11px 16px 11px 12px;
|
|
1694
|
+
}
|
|
1695
|
+
.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,
|
|
1696
|
+
.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 {
|
|
1697
|
+
margin-right: 46px;
|
|
1410
1698
|
}
|
|
1411
1699
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1412
1700
|
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret,
|
|
1413
1701
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-split-btn-wrapper .e-icons.e-caret,
|
|
1414
1702
|
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-dropdown-btn .e-icons.e-caret {
|
|
1415
|
-
padding:
|
|
1703
|
+
padding: 0 12px;
|
|
1704
|
+
}
|
|
1705
|
+
.e-bigger .e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper,
|
|
1706
|
+
.e-bigger.e-ribbon-group-overflow-ddb.e-rtl .e-ribbon-overflow-target .e-ribbon-item > .e-checkbox-wrapper {
|
|
1707
|
+
margin: 11px 16px 11px 0;
|
|
1416
1708
|
}
|
|
1417
1709
|
|
|
1418
1710
|
.e-bigger .e-ribbon-control.e-dropdown-popup ul .e-item {
|
|
@@ -1485,9 +1777,30 @@
|
|
|
1485
1777
|
padding: 0 10px 0 0;
|
|
1486
1778
|
}
|
|
1487
1779
|
|
|
1780
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup,
|
|
1781
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup,
|
|
1782
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup,
|
|
1783
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup {
|
|
1784
|
+
padding: 0 16px 16px;
|
|
1785
|
+
}
|
|
1786
|
+
.e-bigger.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1787
|
+
.e-bigger .e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
1788
|
+
.e-bigger.e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header,
|
|
1789
|
+
.e-bigger .e-ribbon-gallery-dropdown.e-popup .e-ribbon-gallery-header {
|
|
1790
|
+
padding-bottom: 9px 0 13px;
|
|
1791
|
+
font-size: 16px;
|
|
1792
|
+
line-height: 24px;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1488
1795
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header {
|
|
1489
1796
|
border-color: #dadada;
|
|
1490
1797
|
}
|
|
1798
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab {
|
|
1799
|
+
background: #fff;
|
|
1800
|
+
}
|
|
1801
|
+
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item.e-ribbon-contextual-tab .e-tab-wrap .e-tab-text {
|
|
1802
|
+
color: #0078d6;
|
|
1803
|
+
}
|
|
1491
1804
|
.e-ribbon.e-rbn .e-ribbon-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text {
|
|
1492
1805
|
color: #333;
|
|
1493
1806
|
}
|
|
@@ -1670,6 +1983,10 @@
|
|
|
1670
1983
|
.e-ribbon-group-overflow-ddb .e-ribbon-item .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
|
|
1671
1984
|
border-color: transparent;
|
|
1672
1985
|
}
|
|
1986
|
+
.e-ribbon.e-rbn .e-ribbon-item:has(.e-ribbon-gallery-container),
|
|
1987
|
+
.e-ribbon-group-overflow-ddb .e-ribbon-item:has(.e-ribbon-gallery-container) {
|
|
1988
|
+
border-color: #eaeaea;
|
|
1989
|
+
}
|
|
1673
1990
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn:not(.e-ribbon-file-menu),
|
|
1674
1991
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button,
|
|
1675
1992
|
.e-ribbon.e-rbn .e-ribbon-item .e-btn-group .e-btn.e-ribbon-group-button:not(:first-of-type):not(:last-of-type),
|
|
@@ -2075,6 +2392,58 @@
|
|
|
2075
2392
|
background: transparent;
|
|
2076
2393
|
}
|
|
2077
2394
|
|
|
2395
|
+
.e-ribbon-gallery-item {
|
|
2396
|
+
background: transparent;
|
|
2397
|
+
border-color: transparent;
|
|
2398
|
+
}
|
|
2399
|
+
.e-ribbon-gallery-item:hover {
|
|
2400
|
+
background: #f4f4f4;
|
|
2401
|
+
}
|
|
2402
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected {
|
|
2403
|
+
background: #d1ebff;
|
|
2404
|
+
}
|
|
2405
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-text {
|
|
2406
|
+
color: #333;
|
|
2407
|
+
}
|
|
2408
|
+
.e-ribbon-gallery-item.e-ribbon-gallery-selected .e-ribbon-gallery-icons {
|
|
2409
|
+
color: #333;
|
|
2410
|
+
}
|
|
2411
|
+
.e-ribbon-gallery-item.e-disabled {
|
|
2412
|
+
background: transparent;
|
|
2413
|
+
}
|
|
2414
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-text {
|
|
2415
|
+
color: #a6a6a6;
|
|
2416
|
+
}
|
|
2417
|
+
.e-ribbon-gallery-item.e-disabled .e-ribbon-gallery-icons {
|
|
2418
|
+
color: #a6a6a6;
|
|
2419
|
+
}
|
|
2420
|
+
.e-ribbon-gallery-item:focus, .e-ribbon-gallery-item:focus-visible {
|
|
2421
|
+
border-color: #eaeaea;
|
|
2422
|
+
}
|
|
2423
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-text {
|
|
2424
|
+
color: #333;
|
|
2425
|
+
}
|
|
2426
|
+
.e-ribbon-gallery-item .e-ribbon-gallery-icons {
|
|
2427
|
+
color: #333;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.e-ribbon-gallery-button {
|
|
2431
|
+
border-color: #eaeaea;
|
|
2432
|
+
}
|
|
2433
|
+
.e-ribbon-gallery-button.e-gallery-button-active {
|
|
2434
|
+
background: #d1ebff;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2437
|
+
.e-ribbon-gallery-popup.e-popup,
|
|
2438
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown {
|
|
2439
|
+
background: #fff;
|
|
2440
|
+
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
2441
|
+
}
|
|
2442
|
+
.e-ribbon-gallery-popup.e-popup .e-ribbon-gallery-header,
|
|
2443
|
+
.e-dropdown-popup.e-ribbon-gallery-dropdown .e-ribbon-gallery-header {
|
|
2444
|
+
color: #333;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2078
2447
|
.e-dropdown-popup.e-ribbon-dropdown-group-button .e-btn-icon {
|
|
2079
2448
|
color: #333;
|
|
2080
2449
|
}
|
|
@@ -2119,6 +2488,11 @@
|
|
|
2119
2488
|
color: #fff;
|
|
2120
2489
|
}
|
|
2121
2490
|
|
|
2491
|
+
.e-ribbon-keytip {
|
|
2492
|
+
background-color: #000;
|
|
2493
|
+
color: #fff;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2122
2496
|
.e-ribbon-menu.e-menu-wrapper:not(.e-menu-popup), .e-ribbon-menu.e-menu-container:not(.e-menu-popup) {
|
|
2123
2497
|
background: #fff;
|
|
2124
2498
|
}
|