@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/bootstrap5.css
CHANGED
|
@@ -712,65 +712,58 @@
|
|
|
712
712
|
-ms-user-select: none;
|
|
713
713
|
user-select: none;
|
|
714
714
|
}
|
|
715
|
-
.e-spreadsheet .e-protect-dlg
|
|
715
|
+
.e-spreadsheet .e-protect-dlg {
|
|
716
716
|
height: 470px;
|
|
717
717
|
width: 287px;
|
|
718
718
|
}
|
|
719
|
-
.e-spreadsheet .e-protect-dlg
|
|
719
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
720
720
|
font-size: 14px;
|
|
721
721
|
line-height: 28px;
|
|
722
722
|
margin-bottom: 4px;
|
|
723
723
|
}
|
|
724
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
724
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
725
725
|
height: 510px !important;
|
|
726
726
|
width: 530px !important;
|
|
727
727
|
}
|
|
728
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-footer-content {
|
|
729
|
-
padding: 0;
|
|
730
|
-
}
|
|
731
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
732
|
-
display: inline-table;
|
|
733
|
-
padding-top: 3px;
|
|
734
|
-
}
|
|
735
728
|
.e-spreadsheet .e-dlg-header-content {
|
|
736
729
|
padding: 12px;
|
|
737
730
|
}
|
|
738
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
731
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
739
732
|
left: 0 !important;
|
|
740
733
|
}
|
|
741
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
734
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
742
735
|
font-size: 18px;
|
|
743
736
|
line-height: 21px;
|
|
744
737
|
}
|
|
745
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
738
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
746
739
|
color: #dc3545;
|
|
747
740
|
font-size: 12px;
|
|
748
741
|
padding-top: 7px;
|
|
749
742
|
}
|
|
750
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
743
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
751
744
|
font-size: 14px;
|
|
752
745
|
line-height: 16px;
|
|
753
746
|
}
|
|
754
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
747
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
755
748
|
margin-top: 10px;
|
|
756
749
|
}
|
|
757
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
750
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
758
751
|
left: 0 !important;
|
|
759
752
|
}
|
|
760
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
753
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
761
754
|
font-size: 18px;
|
|
762
755
|
line-height: 21px;
|
|
763
756
|
}
|
|
764
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
757
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
765
758
|
color: #dc3545;
|
|
766
759
|
font-size: 12px;
|
|
767
760
|
padding-top: 7px;
|
|
768
761
|
}
|
|
769
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
762
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
770
763
|
font-size: 14px;
|
|
771
764
|
line-height: 16px;
|
|
772
765
|
}
|
|
773
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
766
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
774
767
|
margin-top: 10px;
|
|
775
768
|
}
|
|
776
769
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -821,6 +814,13 @@
|
|
|
821
814
|
margin-right: 4.8%;
|
|
822
815
|
width: 80%;
|
|
823
816
|
}
|
|
817
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
818
|
+
padding: 0;
|
|
819
|
+
}
|
|
820
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
821
|
+
display: inline-table;
|
|
822
|
+
padding-top: 3px;
|
|
823
|
+
}
|
|
824
824
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
825
825
|
margin: 10px 10px 10px 0;
|
|
826
826
|
}
|
|
@@ -1155,8 +1155,8 @@
|
|
|
1155
1155
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1156
1156
|
background-color: #0d6efd;
|
|
1157
1157
|
cursor: ns-resize;
|
|
1158
|
-
left: 50%;
|
|
1159
1158
|
position: absolute;
|
|
1159
|
+
right: 50%;
|
|
1160
1160
|
top: 0;
|
|
1161
1161
|
transform: translate(-50%, -50%);
|
|
1162
1162
|
}
|
|
@@ -1171,8 +1171,8 @@
|
|
|
1171
1171
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1172
1172
|
background-color: #0d6efd;
|
|
1173
1173
|
cursor: ns-resize;
|
|
1174
|
-
left: 50%;
|
|
1175
1174
|
position: absolute;
|
|
1175
|
+
right: 50%;
|
|
1176
1176
|
top: 100%;
|
|
1177
1177
|
transform: translate(-50%, -50%);
|
|
1178
1178
|
}
|
|
@@ -1758,21 +1758,21 @@
|
|
|
1758
1758
|
direction: ltr;
|
|
1759
1759
|
text-align: left;
|
|
1760
1760
|
}
|
|
1761
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1761
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-header-content {
|
|
1762
1762
|
padding: 12px;
|
|
1763
1763
|
}
|
|
1764
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1764
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1765
1765
|
padding-bottom: 0;
|
|
1766
1766
|
padding-left: 0;
|
|
1767
1767
|
padding-right: 0;
|
|
1768
1768
|
}
|
|
1769
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1769
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1770
1770
|
padding-top: 18px;
|
|
1771
1771
|
}
|
|
1772
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1772
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1773
1773
|
min-width: 220px;
|
|
1774
1774
|
}
|
|
1775
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1775
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1776
1776
|
float: left;
|
|
1777
1777
|
margin-left: 0;
|
|
1778
1778
|
}
|
|
@@ -1899,84 +1899,84 @@
|
|
|
1899
1899
|
font-size: 14px;
|
|
1900
1900
|
line-height: 28px;
|
|
1901
1901
|
}
|
|
1902
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1903
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1902
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1903
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1904
1904
|
max-height: 640px !important;
|
|
1905
1905
|
}
|
|
1906
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1907
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1906
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1907
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1908
1908
|
padding: 24px 24px 16px;
|
|
1909
1909
|
}
|
|
1910
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1911
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1910
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1911
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1912
1912
|
font-size: 18px;
|
|
1913
1913
|
line-height: 21px;
|
|
1914
1914
|
}
|
|
1915
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1916
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1915
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1916
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1917
1917
|
padding-bottom: 0;
|
|
1918
1918
|
padding-left: 0;
|
|
1919
1919
|
padding-right: 0;
|
|
1920
1920
|
}
|
|
1921
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1922
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1921
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1922
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1923
1923
|
padding: 0 12px;
|
|
1924
1924
|
}
|
|
1925
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1926
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1925
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1926
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1927
1927
|
height: 100%;
|
|
1928
1928
|
}
|
|
1929
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1930
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1929
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1930
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1931
1931
|
text-align: center;
|
|
1932
1932
|
width: 136px;
|
|
1933
1933
|
}
|
|
1934
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1935
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1934
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1935
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1936
1936
|
font-size: 13px;
|
|
1937
1937
|
line-height: 15px;
|
|
1938
1938
|
}
|
|
1939
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1940
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1939
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1940
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1941
1941
|
padding-top: 12px;
|
|
1942
1942
|
}
|
|
1943
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1944
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1943
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1944
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1945
1945
|
margin: 12px 12px 15.5px;
|
|
1946
1946
|
}
|
|
1947
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1948
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1947
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1948
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1949
1949
|
font-size: 14px;
|
|
1950
1950
|
line-height: 16px;
|
|
1951
1951
|
}
|
|
1952
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1953
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1952
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1953
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1954
1954
|
margin-top: 8px;
|
|
1955
1955
|
font-size: 14px;
|
|
1956
1956
|
height: 32px;
|
|
1957
1957
|
line-height: 16px;
|
|
1958
1958
|
width: 275px;
|
|
1959
1959
|
}
|
|
1960
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1961
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1960
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1961
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1962
1962
|
border-bottom-width: 2px;
|
|
1963
1963
|
}
|
|
1964
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1965
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1964
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1965
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1966
1966
|
border: 1px solid #dee2e6;
|
|
1967
1967
|
height: 165px;
|
|
1968
1968
|
margin: 8px 24px 0 0;
|
|
1969
1969
|
overflow: auto;
|
|
1970
1970
|
width: 273px;
|
|
1971
1971
|
}
|
|
1972
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1973
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1972
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1973
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1974
1974
|
margin: 4px 0;
|
|
1975
1975
|
}
|
|
1976
|
-
.e-spreadsheet .e-open-dlg
|
|
1976
|
+
.e-spreadsheet .e-open-dlg {
|
|
1977
1977
|
width: 340px;
|
|
1978
1978
|
}
|
|
1979
|
-
.e-spreadsheet .e-open-dlg
|
|
1979
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1980
1980
|
color: #dc3545;
|
|
1981
1981
|
font-size: 12px;
|
|
1982
1982
|
padding-top: 7px;
|
|
@@ -1995,12 +1995,6 @@
|
|
|
1995
1995
|
font-size: 12px;
|
|
1996
1996
|
padding-top: 7px;
|
|
1997
1997
|
}
|
|
1998
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1999
|
-
padding-right: 12px;
|
|
2000
|
-
}
|
|
2001
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2002
|
-
padding: 12px 0;
|
|
2003
|
-
}
|
|
2004
1998
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2005
1999
|
margin: 0;
|
|
2006
2000
|
padding-bottom: 8px;
|
|
@@ -2009,62 +2003,62 @@
|
|
|
2009
2003
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
2010
2004
|
text-align: left;
|
|
2011
2005
|
}
|
|
2012
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2006
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
2013
2007
|
left: 0 !important;
|
|
2014
2008
|
}
|
|
2015
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2009
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2016
2010
|
font-size: 18px;
|
|
2017
2011
|
line-height: 31px;
|
|
2018
2012
|
}
|
|
2019
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2013
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2020
2014
|
color: #dc3545;
|
|
2021
2015
|
font-size: 12px;
|
|
2022
2016
|
padding-top: 12px;
|
|
2023
2017
|
}
|
|
2024
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2018
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2025
2019
|
padding-top: 12px;
|
|
2026
2020
|
}
|
|
2027
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2021
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2028
2022
|
font-size: 12px;
|
|
2029
2023
|
line-height: 24px;
|
|
2030
2024
|
margin-bottom: 4px;
|
|
2031
2025
|
}
|
|
2032
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2026
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
2033
2027
|
left: 0 !important;
|
|
2034
2028
|
}
|
|
2035
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2029
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2036
2030
|
font-size: 18px;
|
|
2037
2031
|
line-height: 21px;
|
|
2038
2032
|
}
|
|
2039
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2033
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
2040
2034
|
color: #dc3545;
|
|
2041
2035
|
font-size: 12px;
|
|
2042
2036
|
padding-top: 7px;
|
|
2043
2037
|
}
|
|
2044
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2038
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
2045
2039
|
font-size: 14px;
|
|
2046
2040
|
line-height: 16px;
|
|
2047
2041
|
}
|
|
2048
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2042
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2049
2043
|
margin-top: 10px;
|
|
2050
2044
|
}
|
|
2051
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2045
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
2052
2046
|
left: 0 !important;
|
|
2053
2047
|
}
|
|
2054
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2048
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2055
2049
|
font-size: 18px;
|
|
2056
2050
|
line-height: 21px;
|
|
2057
2051
|
}
|
|
2058
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2052
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
2059
2053
|
color: #dc3545;
|
|
2060
2054
|
font-size: 12px;
|
|
2061
2055
|
padding-top: 7px;
|
|
2062
2056
|
}
|
|
2063
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2057
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
2064
2058
|
font-size: 14px;
|
|
2065
2059
|
line-height: 16px;
|
|
2066
2060
|
}
|
|
2067
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2061
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
2068
2062
|
margin-top: 10px;
|
|
2069
2063
|
}
|
|
2070
2064
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2080,7 +2074,7 @@
|
|
|
2080
2074
|
height: 18px;
|
|
2081
2075
|
margin-right: -1px;
|
|
2082
2076
|
padding: 0;
|
|
2083
|
-
position:
|
|
2077
|
+
position: relative;
|
|
2084
2078
|
right: 0;
|
|
2085
2079
|
width: 20px;
|
|
2086
2080
|
z-index: 2;
|
|
@@ -2106,9 +2100,6 @@
|
|
|
2106
2100
|
cursor: row-resize;
|
|
2107
2101
|
}
|
|
2108
2102
|
|
|
2109
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2110
|
-
max-width: initial;
|
|
2111
|
-
}
|
|
2112
2103
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2113
2104
|
font-size: 13px;
|
|
2114
2105
|
max-width: 200px;
|
|
@@ -2160,36 +2151,33 @@
|
|
|
2160
2151
|
font-family: "Calibri";
|
|
2161
2152
|
}
|
|
2162
2153
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2163
|
-
font-family: "Comic Sans MS";
|
|
2164
|
-
}
|
|
2165
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2166
2154
|
font-family: "Courier";
|
|
2167
2155
|
}
|
|
2168
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2156
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2169
2157
|
font-family: "Courier New";
|
|
2170
2158
|
}
|
|
2171
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2159
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2172
2160
|
font-family: "Din Condensed";
|
|
2173
2161
|
}
|
|
2174
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2162
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2175
2163
|
font-family: "Georgia";
|
|
2176
2164
|
}
|
|
2177
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2165
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2178
2166
|
font-family: "Helvetica";
|
|
2179
2167
|
}
|
|
2180
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2168
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2181
2169
|
font-family: "Helvetica New";
|
|
2182
2170
|
}
|
|
2183
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2171
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2184
2172
|
font-family: "Roboto";
|
|
2185
2173
|
}
|
|
2186
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2174
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2187
2175
|
font-family: "Tahoma";
|
|
2188
2176
|
}
|
|
2189
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2177
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2190
2178
|
font-family: "Times New Roman";
|
|
2191
2179
|
}
|
|
2192
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2180
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2193
2181
|
font-family: "Verdana";
|
|
2194
2182
|
}
|
|
2195
2183
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2348,9 +2336,6 @@
|
|
|
2348
2336
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2349
2337
|
display: block;
|
|
2350
2338
|
}
|
|
2351
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2352
|
-
height: 35px;
|
|
2353
|
-
}
|
|
2354
2339
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2355
2340
|
min-width: 165px;
|
|
2356
2341
|
overflow: visible;
|
|
@@ -2464,50 +2449,46 @@
|
|
|
2464
2449
|
width: 100%;
|
|
2465
2450
|
}
|
|
2466
2451
|
|
|
2467
|
-
.e-spreadsheet-function-dlg
|
|
2452
|
+
.e-spreadsheet-function-dlg {
|
|
2468
2453
|
min-height: 518px;
|
|
2469
2454
|
-webkit-user-select: none;
|
|
2470
2455
|
-ms-user-select: none;
|
|
2471
2456
|
user-select: none;
|
|
2472
2457
|
}
|
|
2473
|
-
.e-spreadsheet-function-dlg
|
|
2458
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2474
2459
|
padding: 12px;
|
|
2475
2460
|
}
|
|
2476
|
-
.e-spreadsheet-function-dlg
|
|
2461
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2477
2462
|
font-size: 16px;
|
|
2478
2463
|
font-weight: 400;
|
|
2479
2464
|
}
|
|
2480
|
-
.e-spreadsheet-function-dlg
|
|
2465
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2481
2466
|
overflow: hidden;
|
|
2482
2467
|
padding-left: 18px;
|
|
2483
2468
|
padding-right: 18px;
|
|
2484
2469
|
}
|
|
2485
|
-
.e-spreadsheet-function-dlg
|
|
2470
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2486
2471
|
font-size: 12px;
|
|
2487
2472
|
font-weight: 500;
|
|
2488
2473
|
margin-bottom: 5px;
|
|
2489
2474
|
}
|
|
2490
|
-
.e-spreadsheet-function-dlg
|
|
2475
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2491
2476
|
margin-left: -4px;
|
|
2492
2477
|
margin-top: 5px;
|
|
2493
2478
|
padding: 4px;
|
|
2494
2479
|
}
|
|
2495
|
-
.e-spreadsheet-function-dlg
|
|
2480
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2496
2481
|
font-size: 14px;
|
|
2497
2482
|
font-weight: 500;
|
|
2498
2483
|
padding-top: 10px;
|
|
2499
2484
|
}
|
|
2500
|
-
.e-spreadsheet-function-dlg
|
|
2485
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2501
2486
|
border: 1px solid #dee2e6;
|
|
2502
2487
|
cursor: default;
|
|
2503
2488
|
margin-top: 6px;
|
|
2504
2489
|
overflow-y: auto;
|
|
2505
2490
|
}
|
|
2506
2491
|
|
|
2507
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2508
|
-
width: auto;
|
|
2509
|
-
}
|
|
2510
|
-
|
|
2511
2492
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2512
2493
|
line-height: 25px;
|
|
2513
2494
|
min-height: 25px;
|
|
@@ -2602,11 +2583,6 @@
|
|
|
2602
2583
|
height: auto;
|
|
2603
2584
|
width: auto;
|
|
2604
2585
|
}
|
|
2605
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2606
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2607
|
-
height: auto;
|
|
2608
|
-
overflow: hidden;
|
|
2609
|
-
}
|
|
2610
2586
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2611
2587
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2612
2588
|
font-size: 20px;
|
|
@@ -2708,8 +2684,8 @@
|
|
|
2708
2684
|
margin-right: 2.8%;
|
|
2709
2685
|
width: 77%;
|
|
2710
2686
|
}
|
|
2711
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2712
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2687
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2688
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2713
2689
|
width: 590px !important;
|
|
2714
2690
|
}
|
|
2715
2691
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2739,18 +2715,18 @@
|
|
|
2739
2715
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2740
2716
|
font-size: 12px;
|
|
2741
2717
|
}
|
|
2742
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2743
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2718
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2719
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2744
2720
|
color: #dc3545;
|
|
2745
2721
|
font-size: 14px;
|
|
2746
2722
|
padding-top: 16px;
|
|
2747
2723
|
}
|
|
2748
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2749
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2724
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2725
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2750
2726
|
padding-top: 16px;
|
|
2751
2727
|
}
|
|
2752
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2753
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2728
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2729
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2754
2730
|
font-size: 14px;
|
|
2755
2731
|
line-height: 28px;
|
|
2756
2732
|
margin-bottom: 4px;
|
|
@@ -2963,7 +2939,6 @@
|
|
|
2963
2939
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn:not(:focus):not(.e-tbar-btn).e-active {
|
|
2964
2940
|
background: #5c636a;
|
|
2965
2941
|
border-color: transparent;
|
|
2966
|
-
color: #fff;
|
|
2967
2942
|
}
|
|
2968
2943
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus {
|
|
2969
2944
|
color: #fff;
|
|
@@ -2971,9 +2946,6 @@
|
|
|
2971
2946
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active.e-dropdown-btn .e-tbar-btn-text, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus.e-dropdown-btn .e-tbar-btn-text {
|
|
2972
2947
|
color: inherit;
|
|
2973
2948
|
}
|
|
2974
|
-
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-split-colorpicker {
|
|
2975
|
-
color: #212529;
|
|
2976
|
-
}
|
|
2977
2949
|
.e-spreadsheet .e-formula-bar-panel {
|
|
2978
2950
|
background-color: #fff;
|
|
2979
2951
|
}
|