@syncfusion/ej2-angular-spreadsheet 20.2.38-ngcc → 20.2.38
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +80 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +202 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +886 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/spreadsheet/cells.directive.d.ts +5 -0
- package/src/spreadsheet/chart.directive.d.ts +5 -0
- package/src/spreadsheet/columns.directive.d.ts +5 -0
- package/src/spreadsheet/conditionalformats.directive.d.ts +5 -0
- package/src/spreadsheet/definednames.directive.d.ts +5 -0
- package/src/spreadsheet/image.directive.d.ts +5 -0
- package/src/spreadsheet/ranges.directive.d.ts +5 -0
- package/src/spreadsheet/rows.directive.d.ts +5 -0
- package/src/spreadsheet/sheets.directive.d.ts +5 -0
- package/src/spreadsheet/spreadsheet-all.module.d.ts +6 -0
- package/src/spreadsheet/spreadsheet.component.d.ts +3 -0
- package/src/spreadsheet/spreadsheet.module.d.ts +15 -0
- package/styles/bootstrap-dark.css +99 -123
- package/styles/bootstrap.css +99 -123
- package/styles/bootstrap4.css +100 -124
- package/styles/bootstrap5-dark.css +100 -128
- package/styles/bootstrap5.css +100 -128
- package/styles/fabric-dark.css +99 -120
- package/styles/fabric.css +99 -120
- package/styles/fluent-dark.css +113 -136
- package/styles/fluent.css +113 -136
- package/styles/highcontrast-light.css +99 -120
- package/styles/highcontrast.css +99 -120
- package/styles/material-dark.css +99 -122
- package/styles/material.css +99 -122
- package/styles/ribbon/_all.scss +2 -0
- package/styles/ribbon/_bootstrap-dark-definition.scss +13 -0
- package/styles/ribbon/_bootstrap-definition.scss +12 -0
- package/styles/ribbon/_bootstrap4-definition.scss +13 -0
- package/styles/ribbon/_bootstrap5-dark-definition.scss +1 -0
- package/styles/ribbon/_bootstrap5-definition.scss +14 -0
- package/styles/ribbon/_fabric-dark-definition.scss +14 -0
- package/styles/ribbon/_fabric-definition.scss +14 -0
- package/styles/ribbon/_fluent-dark-definition.scss +1 -0
- package/styles/ribbon/_fluent-definition.scss +14 -0
- package/styles/ribbon/_fusionnew-definition.scss +14 -0
- package/styles/ribbon/_highcontrast-definition.scss +12 -0
- package/styles/ribbon/_highcontrast-light-definition.scss +12 -0
- package/styles/ribbon/_layout.scss +243 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +13 -0
- package/styles/ribbon/_material3-definition.scss +15 -0
- package/styles/ribbon/_mixin.scss +89 -0
- package/styles/ribbon/_tailwind-dark-definition.scss +1 -0
- package/styles/ribbon/_tailwind-definition.scss +13 -0
- package/styles/ribbon/_theme.scss +115 -0
- package/styles/ribbon/bootstrap-dark.scss +4 -1
- package/styles/ribbon/bootstrap.scss +4 -1
- package/styles/ribbon/bootstrap4.scss +4 -1
- package/styles/ribbon/bootstrap5-dark.scss +4 -1
- package/styles/ribbon/bootstrap5.scss +4 -1
- package/styles/ribbon/fabric-dark.scss +4 -1
- package/styles/ribbon/fabric.scss +4 -1
- package/styles/ribbon/fluent-dark.scss +4 -1
- package/styles/ribbon/fluent.scss +4 -1
- package/styles/ribbon/highcontrast-light.scss +3 -1
- package/styles/ribbon/highcontrast.scss +4 -1
- package/styles/ribbon/icons/_bootstrap-dark.scss +15 -0
- package/styles/ribbon/icons/_bootstrap.scss +15 -0
- package/styles/ribbon/icons/_bootstrap4.scss +9 -0
- package/styles/ribbon/icons/_bootstrap5-dark.scss +1 -0
- package/styles/ribbon/icons/_bootstrap5.scss +15 -0
- package/styles/ribbon/icons/_fabric-dark.scss +9 -0
- package/styles/ribbon/icons/_fabric.scss +9 -0
- package/styles/ribbon/icons/_fluent-dark.scss +1 -0
- package/styles/ribbon/icons/_fluent.scss +15 -0
- package/styles/ribbon/icons/_fusionnew.scss +15 -0
- package/styles/ribbon/icons/_highcontrast.scss +9 -0
- package/styles/ribbon/icons/_material-dark.scss +15 -0
- package/styles/ribbon/icons/_material.scss +15 -0
- package/styles/ribbon/icons/_material3.scss +15 -0
- package/styles/ribbon/icons/_tailwind-dark.scss +15 -0
- package/styles/ribbon/icons/_tailwind.scss +15 -0
- package/styles/ribbon/material-dark.scss +4 -1
- package/styles/ribbon/material.scss +4 -1
- package/styles/ribbon/tailwind-dark.scss +4 -1
- package/styles/ribbon/tailwind.scss +4 -1
- package/styles/spreadsheet/_all.scss +2 -0
- package/styles/spreadsheet/_bootstrap-dark-definition.scss +133 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +133 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +132 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +134 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +130 -0
- package/styles/spreadsheet/_fabric-definition.scss +130 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +134 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +134 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +130 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +130 -0
- package/styles/spreadsheet/_layout.scss +2981 -0
- package/styles/spreadsheet/_material-dark-definition.scss +133 -0
- package/styles/spreadsheet/_material-definition.scss +131 -0
- package/styles/spreadsheet/_material3-definition.scss +134 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +136 -0
- package/styles/spreadsheet/_theme.scss +1356 -0
- package/styles/spreadsheet/bootstrap-dark.css +99 -123
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +99 -123
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +100 -124
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +100 -128
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +100 -128
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +99 -120
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +99 -120
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +113 -136
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +113 -136
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +99 -120
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +99 -120
- package/styles/spreadsheet/highcontrast.scss +23 -1
- package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
- package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
- package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
- package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
- package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
- package/styles/spreadsheet/icons/_fabric.scss +995 -0
- package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
- package/styles/spreadsheet/icons/_fluent.scss +996 -0
- package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
- package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
- package/styles/spreadsheet/icons/_material-dark.scss +993 -0
- package/styles/spreadsheet/icons/_material.scss +995 -0
- package/styles/spreadsheet/icons/_material3.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
- package/styles/spreadsheet/icons/_tailwind.scss +996 -0
- package/styles/spreadsheet/material-dark.css +99 -122
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +99 -122
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +101 -121
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +101 -121
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +101 -121
- package/styles/tailwind.css +101 -121
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/CHANGELOG.md +0 -1160
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1585
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/material.css
CHANGED
|
@@ -726,58 +726,51 @@
|
|
|
726
726
|
-ms-user-select: none;
|
|
727
727
|
user-select: none;
|
|
728
728
|
}
|
|
729
|
-
.e-spreadsheet .e-protect-dlg
|
|
729
|
+
.e-spreadsheet .e-protect-dlg {
|
|
730
730
|
height: 470px;
|
|
731
731
|
width: 287px;
|
|
732
732
|
}
|
|
733
|
-
.e-spreadsheet .e-protect-dlg
|
|
733
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
734
734
|
font-size: 14px;
|
|
735
735
|
line-height: 28px;
|
|
736
736
|
margin-bottom: 4px;
|
|
737
737
|
}
|
|
738
|
-
.e-spreadsheet .e-
|
|
739
|
-
padding: 0;
|
|
740
|
-
}
|
|
741
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
742
|
-
display: inline-table;
|
|
743
|
-
padding-top: 3px;
|
|
744
|
-
}
|
|
745
|
-
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
738
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
746
739
|
left: 0 !important;
|
|
747
740
|
}
|
|
748
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
741
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
749
742
|
font-size: 18px;
|
|
750
743
|
line-height: 21px;
|
|
751
744
|
}
|
|
752
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
745
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
753
746
|
color: #dd2c2c;
|
|
754
747
|
font-size: 12px;
|
|
755
748
|
padding-top: 7px;
|
|
756
749
|
}
|
|
757
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
750
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
758
751
|
font-size: 14px;
|
|
759
752
|
line-height: 16px;
|
|
760
753
|
}
|
|
761
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
754
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
762
755
|
margin-top: 10px;
|
|
763
756
|
}
|
|
764
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
757
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
765
758
|
left: 0 !important;
|
|
766
759
|
}
|
|
767
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
760
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
768
761
|
font-size: 18px;
|
|
769
762
|
line-height: 21px;
|
|
770
763
|
}
|
|
771
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
764
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
772
765
|
color: #dd2c2c;
|
|
773
766
|
font-size: 12px;
|
|
774
767
|
padding-top: 7px;
|
|
775
768
|
}
|
|
776
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
769
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
777
770
|
font-size: 14px;
|
|
778
771
|
line-height: 16px;
|
|
779
772
|
}
|
|
780
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
773
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
781
774
|
margin-top: 10px;
|
|
782
775
|
}
|
|
783
776
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -828,6 +821,13 @@
|
|
|
828
821
|
margin-right: 2.8%;
|
|
829
822
|
width: 80%;
|
|
830
823
|
}
|
|
824
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
825
|
+
padding: 0;
|
|
826
|
+
}
|
|
827
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
828
|
+
display: inline-table;
|
|
829
|
+
padding-top: 3px;
|
|
830
|
+
}
|
|
831
831
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
832
832
|
margin: 10px 10px 10px 0;
|
|
833
833
|
}
|
|
@@ -1162,8 +1162,8 @@
|
|
|
1162
1162
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1163
1163
|
background-color: #e3165b;
|
|
1164
1164
|
cursor: ns-resize;
|
|
1165
|
-
left: 50%;
|
|
1166
1165
|
position: absolute;
|
|
1166
|
+
right: 50%;
|
|
1167
1167
|
top: 0;
|
|
1168
1168
|
transform: translate(-50%, -50%);
|
|
1169
1169
|
}
|
|
@@ -1178,8 +1178,8 @@
|
|
|
1178
1178
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1179
1179
|
background-color: #e3165b;
|
|
1180
1180
|
cursor: ns-resize;
|
|
1181
|
-
left: 50%;
|
|
1182
1181
|
position: absolute;
|
|
1182
|
+
right: 50%;
|
|
1183
1183
|
top: 100%;
|
|
1184
1184
|
transform: translate(-50%, -50%);
|
|
1185
1185
|
}
|
|
@@ -1777,21 +1777,21 @@
|
|
|
1777
1777
|
direction: ltr;
|
|
1778
1778
|
text-align: left;
|
|
1779
1779
|
}
|
|
1780
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1780
|
+
.e-spreadsheet .e-customsort-dlg {
|
|
1781
1781
|
height: 360px !important;
|
|
1782
1782
|
}
|
|
1783
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1783
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1784
1784
|
padding-bottom: 0;
|
|
1785
1785
|
padding-left: 0;
|
|
1786
1786
|
padding-right: 0;
|
|
1787
1787
|
}
|
|
1788
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1788
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1789
1789
|
padding-top: 18px;
|
|
1790
1790
|
}
|
|
1791
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1791
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1792
1792
|
min-width: 220px;
|
|
1793
1793
|
}
|
|
1794
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1794
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1795
1795
|
float: left;
|
|
1796
1796
|
margin-left: 0;
|
|
1797
1797
|
}
|
|
@@ -1915,83 +1915,83 @@
|
|
|
1915
1915
|
font-size: 14px;
|
|
1916
1916
|
line-height: 28px;
|
|
1917
1917
|
}
|
|
1918
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1919
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1918
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1919
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1920
1920
|
max-height: 640px !important;
|
|
1921
1921
|
}
|
|
1922
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1923
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1922
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1923
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1924
1924
|
padding: 24px 24px 16px;
|
|
1925
1925
|
}
|
|
1926
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1927
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1926
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1927
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1928
1928
|
font-size: 18px;
|
|
1929
1929
|
line-height: 21px;
|
|
1930
1930
|
}
|
|
1931
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1932
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1931
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1932
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1933
1933
|
padding-bottom: 0;
|
|
1934
1934
|
padding-left: 0;
|
|
1935
1935
|
padding-right: 0;
|
|
1936
1936
|
}
|
|
1937
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1938
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1937
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1938
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1939
1939
|
padding: 0 24px 0 25px;
|
|
1940
1940
|
}
|
|
1941
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1942
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1941
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1942
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1943
1943
|
height: 100%;
|
|
1944
1944
|
}
|
|
1945
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1946
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1945
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1946
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1947
1947
|
text-align: center;
|
|
1948
1948
|
width: 136px;
|
|
1949
1949
|
}
|
|
1950
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1951
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1950
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1951
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1952
1952
|
font-size: 13px;
|
|
1953
1953
|
line-height: 15px;
|
|
1954
1954
|
}
|
|
1955
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1956
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1955
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1956
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1957
1957
|
padding-top: 24px;
|
|
1958
1958
|
}
|
|
1959
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1960
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1959
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1960
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1961
1961
|
margin: 0 0 15.5px 24px;
|
|
1962
1962
|
}
|
|
1963
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1964
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1963
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1964
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1965
1965
|
font-size: 14px;
|
|
1966
1966
|
line-height: 16px;
|
|
1967
1967
|
}
|
|
1968
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1969
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1968
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1969
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1970
1970
|
font-size: 14px;
|
|
1971
1971
|
height: 32px;
|
|
1972
1972
|
line-height: 16px;
|
|
1973
1973
|
width: 275px;
|
|
1974
1974
|
}
|
|
1975
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1976
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1975
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1976
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1977
1977
|
border-bottom-width: 2px;
|
|
1978
1978
|
}
|
|
1979
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1980
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1979
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1980
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1981
1981
|
border: 1px solid #c8c8c8;
|
|
1982
1982
|
height: 165px;
|
|
1983
1983
|
margin: 8px 24px 0 0;
|
|
1984
1984
|
overflow: auto;
|
|
1985
1985
|
width: 273px;
|
|
1986
1986
|
}
|
|
1987
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1988
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1987
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1988
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1989
1989
|
margin: 4px 0;
|
|
1990
1990
|
}
|
|
1991
|
-
.e-spreadsheet .e-open-dlg
|
|
1991
|
+
.e-spreadsheet .e-open-dlg {
|
|
1992
1992
|
width: 340px;
|
|
1993
1993
|
}
|
|
1994
|
-
.e-spreadsheet .e-open-dlg
|
|
1994
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1995
1995
|
color: #dd2c2c;
|
|
1996
1996
|
font-size: 12px;
|
|
1997
1997
|
padding-top: 7px;
|
|
@@ -2010,12 +2010,6 @@
|
|
|
2010
2010
|
font-size: 12px;
|
|
2011
2011
|
padding-top: 7px;
|
|
2012
2012
|
}
|
|
2013
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
2014
|
-
padding-right: 12px;
|
|
2015
|
-
}
|
|
2016
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2017
|
-
padding: 12px 0;
|
|
2018
|
-
}
|
|
2019
2013
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2020
2014
|
margin: 0;
|
|
2021
2015
|
padding-bottom: 8px;
|
|
@@ -2024,62 +2018,62 @@
|
|
|
2024
2018
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
2025
2019
|
text-align: left;
|
|
2026
2020
|
}
|
|
2027
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2021
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
2028
2022
|
left: 0 !important;
|
|
2029
2023
|
}
|
|
2030
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2024
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2031
2025
|
font-size: 18px;
|
|
2032
2026
|
line-height: 31px;
|
|
2033
2027
|
}
|
|
2034
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2028
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2035
2029
|
color: #dd2c2c;
|
|
2036
2030
|
font-size: 12px;
|
|
2037
2031
|
padding-top: 12px;
|
|
2038
2032
|
}
|
|
2039
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2033
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2040
2034
|
padding-top: 12px;
|
|
2041
2035
|
}
|
|
2042
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2036
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2043
2037
|
font-size: 12px;
|
|
2044
2038
|
line-height: 24px;
|
|
2045
2039
|
margin-bottom: 4px;
|
|
2046
2040
|
}
|
|
2047
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2041
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
2048
2042
|
left: 0 !important;
|
|
2049
2043
|
}
|
|
2050
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2044
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2051
2045
|
font-size: 18px;
|
|
2052
2046
|
line-height: 21px;
|
|
2053
2047
|
}
|
|
2054
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2048
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
2055
2049
|
color: #dd2c2c;
|
|
2056
2050
|
font-size: 12px;
|
|
2057
2051
|
padding-top: 7px;
|
|
2058
2052
|
}
|
|
2059
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2053
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
2060
2054
|
font-size: 14px;
|
|
2061
2055
|
line-height: 16px;
|
|
2062
2056
|
}
|
|
2063
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2057
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2064
2058
|
margin-top: 10px;
|
|
2065
2059
|
}
|
|
2066
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2060
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
2067
2061
|
left: 0 !important;
|
|
2068
2062
|
}
|
|
2069
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2063
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2070
2064
|
font-size: 18px;
|
|
2071
2065
|
line-height: 21px;
|
|
2072
2066
|
}
|
|
2073
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2067
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
2074
2068
|
color: #dd2c2c;
|
|
2075
2069
|
font-size: 12px;
|
|
2076
2070
|
padding-top: 7px;
|
|
2077
2071
|
}
|
|
2078
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2072
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
2079
2073
|
font-size: 14px;
|
|
2080
2074
|
line-height: 16px;
|
|
2081
2075
|
}
|
|
2082
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2076
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
2083
2077
|
margin-top: 10px;
|
|
2084
2078
|
}
|
|
2085
2079
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2095,12 +2089,10 @@
|
|
|
2095
2089
|
height: 18px;
|
|
2096
2090
|
margin-right: -1px;
|
|
2097
2091
|
padding: 0;
|
|
2098
|
-
position:
|
|
2092
|
+
position: relative;
|
|
2099
2093
|
right: 0;
|
|
2100
2094
|
width: 20px;
|
|
2101
2095
|
z-index: 2;
|
|
2102
|
-
bottom: 0.5px;
|
|
2103
|
-
right: 0.5px;
|
|
2104
2096
|
}
|
|
2105
2097
|
|
|
2106
2098
|
.e-colorpicker-wrapper.e-border-colorpicker {
|
|
@@ -2123,9 +2115,6 @@
|
|
|
2123
2115
|
cursor: row-resize;
|
|
2124
2116
|
}
|
|
2125
2117
|
|
|
2126
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2127
|
-
max-width: initial;
|
|
2128
|
-
}
|
|
2129
2118
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2130
2119
|
font-size: 13px;
|
|
2131
2120
|
max-width: 200px;
|
|
@@ -2177,36 +2166,33 @@
|
|
|
2177
2166
|
font-family: "Calibri";
|
|
2178
2167
|
}
|
|
2179
2168
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2180
|
-
font-family: "Comic Sans MS";
|
|
2181
|
-
}
|
|
2182
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2183
2169
|
font-family: "Courier";
|
|
2184
2170
|
}
|
|
2185
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2171
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2186
2172
|
font-family: "Courier New";
|
|
2187
2173
|
}
|
|
2188
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2174
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2189
2175
|
font-family: "Din Condensed";
|
|
2190
2176
|
}
|
|
2191
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2177
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2192
2178
|
font-family: "Georgia";
|
|
2193
2179
|
}
|
|
2194
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2180
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2195
2181
|
font-family: "Helvetica";
|
|
2196
2182
|
}
|
|
2197
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2183
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2198
2184
|
font-family: "Helvetica New";
|
|
2199
2185
|
}
|
|
2200
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2186
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2201
2187
|
font-family: "Roboto";
|
|
2202
2188
|
}
|
|
2203
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2189
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2204
2190
|
font-family: "Tahoma";
|
|
2205
2191
|
}
|
|
2206
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2192
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2207
2193
|
font-family: "Times New Roman";
|
|
2208
2194
|
}
|
|
2209
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2195
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2210
2196
|
font-family: "Verdana";
|
|
2211
2197
|
}
|
|
2212
2198
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2478,50 +2464,46 @@
|
|
|
2478
2464
|
width: 100%;
|
|
2479
2465
|
}
|
|
2480
2466
|
|
|
2481
|
-
.e-spreadsheet-function-dlg
|
|
2467
|
+
.e-spreadsheet-function-dlg {
|
|
2482
2468
|
min-height: 480px;
|
|
2483
2469
|
-webkit-user-select: none;
|
|
2484
2470
|
-ms-user-select: none;
|
|
2485
2471
|
user-select: none;
|
|
2486
2472
|
}
|
|
2487
|
-
.e-spreadsheet-function-dlg
|
|
2473
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2488
2474
|
padding: 18px;
|
|
2489
2475
|
}
|
|
2490
|
-
.e-spreadsheet-function-dlg
|
|
2476
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2491
2477
|
font-size: 16px;
|
|
2492
2478
|
font-weight: 400;
|
|
2493
2479
|
}
|
|
2494
|
-
.e-spreadsheet-function-dlg
|
|
2480
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2495
2481
|
overflow: hidden;
|
|
2496
2482
|
padding-left: 18px;
|
|
2497
2483
|
padding-right: 18px;
|
|
2498
2484
|
}
|
|
2499
|
-
.e-spreadsheet-function-dlg
|
|
2485
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2500
2486
|
font-size: 12px;
|
|
2501
2487
|
font-weight: 500;
|
|
2502
2488
|
margin-bottom: 0;
|
|
2503
2489
|
}
|
|
2504
|
-
.e-spreadsheet-function-dlg
|
|
2490
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2505
2491
|
margin-left: -4px;
|
|
2506
2492
|
margin-top: 5px;
|
|
2507
2493
|
padding: 4px;
|
|
2508
2494
|
}
|
|
2509
|
-
.e-spreadsheet-function-dlg
|
|
2495
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2510
2496
|
font-size: 14px;
|
|
2511
2497
|
font-weight: 500;
|
|
2512
2498
|
padding-top: 10px;
|
|
2513
2499
|
}
|
|
2514
|
-
.e-spreadsheet-function-dlg
|
|
2500
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2515
2501
|
border: 1px solid #e0e0e0;
|
|
2516
2502
|
cursor: default;
|
|
2517
2503
|
margin-top: 6px;
|
|
2518
2504
|
overflow-y: auto;
|
|
2519
2505
|
}
|
|
2520
2506
|
|
|
2521
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2522
|
-
width: auto;
|
|
2523
|
-
}
|
|
2524
|
-
|
|
2525
2507
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2526
2508
|
line-height: 25px;
|
|
2527
2509
|
min-height: 25px;
|
|
@@ -2616,11 +2598,6 @@
|
|
|
2616
2598
|
height: auto;
|
|
2617
2599
|
width: auto;
|
|
2618
2600
|
}
|
|
2619
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2620
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2621
|
-
height: auto;
|
|
2622
|
-
overflow: hidden;
|
|
2623
|
-
}
|
|
2624
2601
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2625
2602
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2626
2603
|
font-size: 20px;
|
|
@@ -2722,8 +2699,8 @@
|
|
|
2722
2699
|
margin-right: 2.8%;
|
|
2723
2700
|
width: 77%;
|
|
2724
2701
|
}
|
|
2725
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2726
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2702
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2703
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2727
2704
|
width: 590px !important;
|
|
2728
2705
|
}
|
|
2729
2706
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2753,18 +2730,18 @@
|
|
|
2753
2730
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2754
2731
|
font-size: 12px;
|
|
2755
2732
|
}
|
|
2756
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2757
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2733
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2734
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2758
2735
|
color: #dd2c2c;
|
|
2759
2736
|
font-size: 14px;
|
|
2760
2737
|
padding-top: 16px;
|
|
2761
2738
|
}
|
|
2762
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2763
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2739
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2740
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2764
2741
|
padding-top: 16px;
|
|
2765
2742
|
}
|
|
2766
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2767
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2743
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2744
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2768
2745
|
font-size: 14px;
|
|
2769
2746
|
line-height: 28px;
|
|
2770
2747
|
margin-bottom: 4px;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap' !default;
|
|
2
|
+
$ribbon-border-color: $grey-88 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-content-bg-color: $gray-darker !default;
|
|
5
|
+
$ribbon-header-bg-color: #191919 !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 16.5px 4px 17.5px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
9
|
+
$expand-icon-color: $grey-dark-font !default;
|
|
10
|
+
$ribbon-header-height: 45px !default;
|
|
11
|
+
$ribbon-focus-text-color: $grey-dark-font !default;
|
|
12
|
+
$ribbon-focus-bg-color: $grey-44 !default;
|
|
13
|
+
$ribbon-comb-icon-color: $grey-dark-font !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap' !default;
|
|
2
|
+
$ribbon-border-color: #e5e5e5 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-content-bg-color: $grey-white !default;
|
|
5
|
+
$ribbon-header-bg-color: $grey-f9 !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 16.5px 4px 17.5px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
9
|
+
$expand-icon-color: $gray-light !default;
|
|
10
|
+
$ribbon-header-height: 45px !default;
|
|
11
|
+
$ribbon-focus-bg-color: $grey-lighter !default;
|
|
12
|
+
$ribbon-focus-text-color: $brand-primary-darken-25 !default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap4' !default;
|
|
2
|
+
$ribbon-border-color: $gray-300 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-header-bg-color: $gray-100 !default;
|
|
5
|
+
$ribbon-content-bg-color: $white !default;
|
|
6
|
+
$file-menu-wrap-padding: 0 !default;
|
|
7
|
+
$drop-icon-margin: 15px 5px !default;
|
|
8
|
+
$ribbon-comb-icon-color: $gray-700 !default;
|
|
9
|
+
$bigger-drop-icon-margin: 18.5px 5px 19.5px !default;
|
|
10
|
+
$expand-icon-color: $gray-600 !default;
|
|
11
|
+
$ribbon-header-height: 41px !default;
|
|
12
|
+
$ribbon-focus-text-color: darken($primary, 15%) !default;
|
|
13
|
+
$ribbon-focus-bg-color: #eee !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap5' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$separator-border-color: $border-light !default;
|
|
10
|
+
$expand-icon-color: $icon-color !default;
|
|
11
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
12
|
+
$ribbon-focus-text-color: $primary-bg-color-pressed !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'fabric' !default;
|
|
2
|
+
$border-color: $neutral-quintenary !default;
|
|
3
|
+
$ribbon-border: 1px solid $border-color !default;
|
|
4
|
+
$tab-header-height: 38px !default;
|
|
5
|
+
$bigger-tab-header-height: 48px !default;
|
|
6
|
+
$ribbon-header-bg-color: $neutral-lighter !default;
|
|
7
|
+
$file-menu-wrap-padding: 0 0 0 8px !default;
|
|
8
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
9
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
10
|
+
$ribbon-comb-icon-color: $neutral-light-font !default;
|
|
11
|
+
$expand-icon-color: $neutral-light-font !default;
|
|
12
|
+
$ribbon-focus-bg-color: initial !default;
|
|
13
|
+
$ribbon-focus-text-color: $neutral-light-fontalt !default;
|
|
14
|
+
$ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'fabric' !default;
|
|
2
|
+
$border-color: $neutral-light !default;
|
|
3
|
+
$ribbon-border: 1px solid $border-color !default;
|
|
4
|
+
$tab-header-height: 38px !default;
|
|
5
|
+
$bigger-tab-header-height: 48px !default;
|
|
6
|
+
$ribbon-header-bg-color: $neutral-white !default;
|
|
7
|
+
$ribbon-focused-wrap-focus-border-color: $neutral-secondary-alt !default;
|
|
8
|
+
$file-menu-wrap-padding: 0 0 0 8px !default;
|
|
9
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
10
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
11
|
+
$ribbon-comb-icon-color: $neutral-light-font !default;
|
|
12
|
+
$expand-icon-color: $neutral-secondary !default;
|
|
13
|
+
$ribbon-focus-bg-color: initial !default;
|
|
14
|
+
$ribbon-focus-text-color: $neutral-light-font !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent-definition.scss';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'FluentUI' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
10
|
+
$separator-border-color: $border-light !default;
|
|
11
|
+
$ribbon-focus-text-color: $content-text-color !default;
|
|
12
|
+
$expand-icon-color: $icon-color !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: $content-bg-color-alt2 !default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$ribbon-skin: 'bootstrap5' !default;
|
|
2
|
+
$file-menu-wrap-padding: 0 !default;
|
|
3
|
+
$drop-icon-margin: 8px 4px !default;
|
|
4
|
+
$bigger-drop-icon-margin: 16px 5px !default;
|
|
5
|
+
$ribbon-border-color: $border-light !default;
|
|
6
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
7
|
+
$ribbon-content-bg-color: $content-bg-color !default;
|
|
8
|
+
$ribbon-header-bg-color: $content-bg-color-alt1 !default;
|
|
9
|
+
$ribbon-comb-icon-color: $icon-color !default;
|
|
10
|
+
$separator-border-color: $border-light !default;
|
|
11
|
+
$ribbon-focus-text-color: $primary-bg-color-pressed !default;
|
|
12
|
+
$expand-icon-color: $icon-color !default;
|
|
13
|
+
$ribbon-focused-wrap-focus-border-color: $icon-color !default;
|
|
14
|
+
$ribbon-focus-bg-color: rgba($content-bg-color-alt2, .12) !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'highcontrast' !default;
|
|
2
|
+
$ribbon-border-color: $bg-base-100 !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$ribbon-header-bg-color: $bg-base-0 !default;
|
|
5
|
+
$file-menu-wrap-padding: 0 !default;
|
|
6
|
+
$ribbon-focused-wrap-focus-border-color: $hover-border !default;
|
|
7
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
8
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
9
|
+
$ribbon-comb-icon-color: $content-font !default;
|
|
10
|
+
$expand-icon-color: $content-font !default;
|
|
11
|
+
$ribbon-focus-bg-color: initial !default;
|
|
12
|
+
$ribbon-focus-text-color: $content-font !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
$ribbon-skin: 'highcontrast' !default;
|
|
2
|
+
$ribbon-border-color: transparent !default;
|
|
3
|
+
$ribbon-border: 1px solid $ribbon-border-color !default;
|
|
4
|
+
$file-menu-wrap-padding: 0 !default;
|
|
5
|
+
$drop-icon-margin: 12.5px 4px !default;
|
|
6
|
+
$bigger-drop-icon-margin: 14.5px 5px !default;
|
|
7
|
+
$expand-icon-color: initial !default;
|
|
8
|
+
$ribbon-comb-icon-color: $content-font !default;
|
|
9
|
+
$ribbon-header-bg-color: transparent !default;
|
|
10
|
+
$ribbon-focused-wrap-focus-border-color: $hover-border !default;
|
|
11
|
+
$ribbon-focus-bg-color: initial !default;
|
|
12
|
+
$ribbon-focus-text-color: $content-font !default;
|