@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
|
@@ -711,62 +711,55 @@
|
|
|
711
711
|
-ms-user-select: none;
|
|
712
712
|
user-select: none;
|
|
713
713
|
}
|
|
714
|
-
.e-spreadsheet .e-protect-dlg
|
|
714
|
+
.e-spreadsheet .e-protect-dlg {
|
|
715
715
|
height: 408px;
|
|
716
716
|
width: 281px;
|
|
717
717
|
}
|
|
718
|
-
.e-spreadsheet .e-protect-dlg
|
|
718
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
719
719
|
font-size: 14px;
|
|
720
720
|
line-height: 28px;
|
|
721
721
|
margin-bottom: 4px;
|
|
722
722
|
}
|
|
723
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
723
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
724
724
|
height: 510px !important;
|
|
725
725
|
width: 530px !important;
|
|
726
726
|
}
|
|
727
|
-
.e-spreadsheet .e-
|
|
728
|
-
padding: 0;
|
|
729
|
-
}
|
|
730
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
731
|
-
display: inline-table;
|
|
732
|
-
padding-top: 3px;
|
|
733
|
-
}
|
|
734
|
-
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
727
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
735
728
|
left: 0 !important;
|
|
736
729
|
}
|
|
737
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
730
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
738
731
|
font-size: 18px;
|
|
739
732
|
line-height: 21px;
|
|
740
733
|
}
|
|
741
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
734
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
742
735
|
color: #dd2c2c;
|
|
743
736
|
font-size: 12px;
|
|
744
737
|
padding-top: 7px;
|
|
745
738
|
}
|
|
746
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
739
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
747
740
|
font-size: 14px;
|
|
748
741
|
line-height: 16px;
|
|
749
742
|
}
|
|
750
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
743
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
751
744
|
margin-top: 10px;
|
|
752
745
|
}
|
|
753
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
746
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
754
747
|
left: 0 !important;
|
|
755
748
|
}
|
|
756
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
749
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
757
750
|
font-size: 18px;
|
|
758
751
|
line-height: 21px;
|
|
759
752
|
}
|
|
760
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
753
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
761
754
|
color: #dd2c2c;
|
|
762
755
|
font-size: 12px;
|
|
763
756
|
padding-top: 7px;
|
|
764
757
|
}
|
|
765
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
758
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
766
759
|
font-size: 14px;
|
|
767
760
|
line-height: 16px;
|
|
768
761
|
}
|
|
769
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
762
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
770
763
|
margin-top: 10px;
|
|
771
764
|
}
|
|
772
765
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -817,6 +810,13 @@
|
|
|
817
810
|
margin-right: 2.8%;
|
|
818
811
|
width: 80%;
|
|
819
812
|
}
|
|
813
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
814
|
+
padding: 0;
|
|
815
|
+
}
|
|
816
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
817
|
+
display: inline-table;
|
|
818
|
+
padding-top: 3px;
|
|
819
|
+
}
|
|
820
820
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
821
821
|
margin: 10px 10px 10px 0;
|
|
822
822
|
}
|
|
@@ -1147,8 +1147,8 @@
|
|
|
1147
1147
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1148
1148
|
background-color: #007bff;
|
|
1149
1149
|
cursor: ns-resize;
|
|
1150
|
-
left: 50%;
|
|
1151
1150
|
position: absolute;
|
|
1151
|
+
right: 50%;
|
|
1152
1152
|
top: 0;
|
|
1153
1153
|
transform: translate(-50%, -50%);
|
|
1154
1154
|
}
|
|
@@ -1163,8 +1163,8 @@
|
|
|
1163
1163
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1164
1164
|
background-color: #007bff;
|
|
1165
1165
|
cursor: ns-resize;
|
|
1166
|
-
left: 50%;
|
|
1167
1166
|
position: absolute;
|
|
1167
|
+
right: 50%;
|
|
1168
1168
|
top: 100%;
|
|
1169
1169
|
transform: translate(-50%, -50%);
|
|
1170
1170
|
}
|
|
@@ -1779,18 +1779,18 @@
|
|
|
1779
1779
|
direction: ltr;
|
|
1780
1780
|
text-align: left;
|
|
1781
1781
|
}
|
|
1782
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1782
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1783
1783
|
padding-bottom: 0;
|
|
1784
1784
|
padding-left: 0;
|
|
1785
1785
|
padding-right: 0;
|
|
1786
1786
|
}
|
|
1787
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1787
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1788
1788
|
padding-top: 15px;
|
|
1789
1789
|
}
|
|
1790
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1790
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1791
1791
|
min-width: 220px;
|
|
1792
1792
|
}
|
|
1793
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1793
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1794
1794
|
float: left;
|
|
1795
1795
|
margin-left: 0;
|
|
1796
1796
|
}
|
|
@@ -1914,88 +1914,88 @@
|
|
|
1914
1914
|
font-size: 14px;
|
|
1915
1915
|
line-height: 28px;
|
|
1916
1916
|
}
|
|
1917
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1918
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1917
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1918
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1919
1919
|
max-height: 640px !important;
|
|
1920
1920
|
}
|
|
1921
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1922
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1921
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1922
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1923
1923
|
padding: 24px 24px 16px;
|
|
1924
1924
|
}
|
|
1925
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1926
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1925
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1926
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1927
1927
|
font-size: 18px;
|
|
1928
1928
|
line-height: 21px;
|
|
1929
1929
|
}
|
|
1930
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1931
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1930
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1931
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1932
1932
|
padding-bottom: 0;
|
|
1933
1933
|
padding-left: 0;
|
|
1934
1934
|
padding-right: 0;
|
|
1935
1935
|
}
|
|
1936
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1937
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1936
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1937
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1938
1938
|
padding: 0 24px 0 25px;
|
|
1939
1939
|
}
|
|
1940
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1941
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1940
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1941
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1942
1942
|
height: 100%;
|
|
1943
1943
|
}
|
|
1944
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1945
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1944
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1945
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1946
1946
|
text-align: center;
|
|
1947
1947
|
width: 136px;
|
|
1948
1948
|
}
|
|
1949
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1950
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1949
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1950
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1951
1951
|
font-size: 13px;
|
|
1952
1952
|
line-height: 15px;
|
|
1953
1953
|
}
|
|
1954
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1955
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1954
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1955
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1956
1956
|
padding-top: 24px;
|
|
1957
1957
|
}
|
|
1958
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1959
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1958
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1959
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1960
1960
|
margin: 0 0 15.5px 24px;
|
|
1961
1961
|
}
|
|
1962
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1963
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1962
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1963
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1964
1964
|
font-size: 14px;
|
|
1965
1965
|
line-height: 16px;
|
|
1966
1966
|
}
|
|
1967
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1968
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1967
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1968
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1969
1969
|
margin-top: 8px;
|
|
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-input-group-icon {
|
|
1995
1995
|
padding-left: 4px;
|
|
1996
1996
|
padding-right: 4px;
|
|
1997
1997
|
}
|
|
1998
|
-
.e-spreadsheet .e-open-dlg
|
|
1998
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1999
1999
|
color: #dd2c2c;
|
|
2000
2000
|
font-size: 12px;
|
|
2001
2001
|
padding-top: 7px;
|
|
@@ -2014,12 +2014,6 @@
|
|
|
2014
2014
|
font-size: 12px;
|
|
2015
2015
|
padding-top: 7px;
|
|
2016
2016
|
}
|
|
2017
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
2018
|
-
padding-right: 12px;
|
|
2019
|
-
}
|
|
2020
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2021
|
-
padding: 12px 0;
|
|
2022
|
-
}
|
|
2023
2017
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2024
2018
|
margin: 0;
|
|
2025
2019
|
padding-bottom: 8px;
|
|
@@ -2028,62 +2022,62 @@
|
|
|
2028
2022
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
2029
2023
|
text-align: left;
|
|
2030
2024
|
}
|
|
2031
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2025
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
2032
2026
|
left: 0 !important;
|
|
2033
2027
|
}
|
|
2034
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2028
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2035
2029
|
font-size: 18px;
|
|
2036
2030
|
line-height: 31px;
|
|
2037
2031
|
}
|
|
2038
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2032
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2039
2033
|
color: #dd2c2c;
|
|
2040
2034
|
font-size: 12px;
|
|
2041
2035
|
padding-top: 12px;
|
|
2042
2036
|
}
|
|
2043
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2037
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2044
2038
|
padding-top: 12px;
|
|
2045
2039
|
}
|
|
2046
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
2040
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2047
2041
|
font-size: 12px;
|
|
2048
2042
|
line-height: 24px;
|
|
2049
2043
|
margin-bottom: 4px;
|
|
2050
2044
|
}
|
|
2051
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2045
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
2052
2046
|
left: 0 !important;
|
|
2053
2047
|
}
|
|
2054
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2048
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2055
2049
|
font-size: 18px;
|
|
2056
2050
|
line-height: 21px;
|
|
2057
2051
|
}
|
|
2058
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2052
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
2059
2053
|
color: #dd2c2c;
|
|
2060
2054
|
font-size: 12px;
|
|
2061
2055
|
padding-top: 7px;
|
|
2062
2056
|
}
|
|
2063
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2057
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
2064
2058
|
font-size: 14px;
|
|
2065
2059
|
line-height: 16px;
|
|
2066
2060
|
}
|
|
2067
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2061
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2068
2062
|
margin-top: 10px;
|
|
2069
2063
|
}
|
|
2070
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2064
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
2071
2065
|
left: 0 !important;
|
|
2072
2066
|
}
|
|
2073
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2067
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2074
2068
|
font-size: 18px;
|
|
2075
2069
|
line-height: 21px;
|
|
2076
2070
|
}
|
|
2077
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2071
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
2078
2072
|
color: #dd2c2c;
|
|
2079
2073
|
font-size: 12px;
|
|
2080
2074
|
padding-top: 7px;
|
|
2081
2075
|
}
|
|
2082
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2076
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
2083
2077
|
font-size: 14px;
|
|
2084
2078
|
line-height: 16px;
|
|
2085
2079
|
}
|
|
2086
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2080
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
2087
2081
|
margin-top: 10px;
|
|
2088
2082
|
}
|
|
2089
2083
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2099,7 +2093,7 @@
|
|
|
2099
2093
|
height: 18px;
|
|
2100
2094
|
margin-right: -1px;
|
|
2101
2095
|
padding: 0;
|
|
2102
|
-
position:
|
|
2096
|
+
position: relative;
|
|
2103
2097
|
right: 0;
|
|
2104
2098
|
width: 20px;
|
|
2105
2099
|
z-index: 2;
|
|
@@ -2125,9 +2119,6 @@
|
|
|
2125
2119
|
cursor: row-resize;
|
|
2126
2120
|
}
|
|
2127
2121
|
|
|
2128
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2129
|
-
max-width: initial;
|
|
2130
|
-
}
|
|
2131
2122
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2132
2123
|
font-size: 13px;
|
|
2133
2124
|
max-width: 200px;
|
|
@@ -2179,36 +2170,33 @@
|
|
|
2179
2170
|
font-family: "Calibri";
|
|
2180
2171
|
}
|
|
2181
2172
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2182
|
-
font-family: "Comic Sans MS";
|
|
2183
|
-
}
|
|
2184
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2185
2173
|
font-family: "Courier";
|
|
2186
2174
|
}
|
|
2187
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2175
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2188
2176
|
font-family: "Courier New";
|
|
2189
2177
|
}
|
|
2190
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2178
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2191
2179
|
font-family: "Din Condensed";
|
|
2192
2180
|
}
|
|
2193
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2181
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2194
2182
|
font-family: "Georgia";
|
|
2195
2183
|
}
|
|
2196
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2184
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2197
2185
|
font-family: "Helvetica";
|
|
2198
2186
|
}
|
|
2199
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2187
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2200
2188
|
font-family: "Helvetica New";
|
|
2201
2189
|
}
|
|
2202
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2190
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2203
2191
|
font-family: "Roboto";
|
|
2204
2192
|
}
|
|
2205
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2193
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2206
2194
|
font-family: "Tahoma";
|
|
2207
2195
|
}
|
|
2208
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2196
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2209
2197
|
font-family: "Times New Roman";
|
|
2210
2198
|
}
|
|
2211
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2199
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2212
2200
|
font-family: "Verdana";
|
|
2213
2201
|
}
|
|
2214
2202
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2367,9 +2355,6 @@
|
|
|
2367
2355
|
.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 {
|
|
2368
2356
|
display: block;
|
|
2369
2357
|
}
|
|
2370
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2371
|
-
height: 35px;
|
|
2372
|
-
}
|
|
2373
2358
|
.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 {
|
|
2374
2359
|
min-width: 165px;
|
|
2375
2360
|
overflow: visible;
|
|
@@ -2483,50 +2468,46 @@
|
|
|
2483
2468
|
width: 100%;
|
|
2484
2469
|
}
|
|
2485
2470
|
|
|
2486
|
-
.e-spreadsheet-function-dlg
|
|
2471
|
+
.e-spreadsheet-function-dlg {
|
|
2487
2472
|
min-height: 522px;
|
|
2488
2473
|
-webkit-user-select: none;
|
|
2489
2474
|
-ms-user-select: none;
|
|
2490
2475
|
user-select: none;
|
|
2491
2476
|
}
|
|
2492
|
-
.e-spreadsheet-function-dlg
|
|
2477
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2493
2478
|
padding: 18px;
|
|
2494
2479
|
}
|
|
2495
|
-
.e-spreadsheet-function-dlg
|
|
2480
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2496
2481
|
font-size: 16px;
|
|
2497
2482
|
font-weight: 400;
|
|
2498
2483
|
}
|
|
2499
|
-
.e-spreadsheet-function-dlg
|
|
2484
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2500
2485
|
overflow: hidden;
|
|
2501
2486
|
padding-left: 15px;
|
|
2502
2487
|
padding-right: 15px;
|
|
2503
2488
|
}
|
|
2504
|
-
.e-spreadsheet-function-dlg
|
|
2489
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2505
2490
|
font-size: 12px;
|
|
2506
2491
|
font-weight: 500;
|
|
2507
2492
|
margin-bottom: 5px;
|
|
2508
2493
|
}
|
|
2509
|
-
.e-spreadsheet-function-dlg
|
|
2494
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2510
2495
|
margin-left: -4px;
|
|
2511
2496
|
margin-top: 5px;
|
|
2512
2497
|
padding: 4px;
|
|
2513
2498
|
}
|
|
2514
|
-
.e-spreadsheet-function-dlg
|
|
2499
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2515
2500
|
font-size: 14px;
|
|
2516
2501
|
font-weight: 500;
|
|
2517
2502
|
padding-top: 10px;
|
|
2518
2503
|
}
|
|
2519
|
-
.e-spreadsheet-function-dlg
|
|
2504
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2520
2505
|
border: rgba(0, 0, 0, 0.13);
|
|
2521
2506
|
cursor: default;
|
|
2522
2507
|
margin-top: 6px;
|
|
2523
2508
|
overflow-y: auto;
|
|
2524
2509
|
}
|
|
2525
2510
|
|
|
2526
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2527
|
-
width: auto;
|
|
2528
|
-
}
|
|
2529
|
-
|
|
2530
2511
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2531
2512
|
line-height: 25px;
|
|
2532
2513
|
min-height: 25px;
|
|
@@ -2621,11 +2602,6 @@
|
|
|
2621
2602
|
height: auto;
|
|
2622
2603
|
width: auto;
|
|
2623
2604
|
}
|
|
2624
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2625
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2626
|
-
height: auto;
|
|
2627
|
-
overflow: hidden;
|
|
2628
|
-
}
|
|
2629
2605
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2630
2606
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2631
2607
|
font-size: 20px;
|
|
@@ -2722,8 +2698,8 @@
|
|
|
2722
2698
|
margin-right: 2.8%;
|
|
2723
2699
|
width: 77%;
|
|
2724
2700
|
}
|
|
2725
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2726
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2701
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2702
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2727
2703
|
width: 590px !important;
|
|
2728
2704
|
}
|
|
2729
2705
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2753,18 +2729,18 @@
|
|
|
2753
2729
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2754
2730
|
font-size: 12px;
|
|
2755
2731
|
}
|
|
2756
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2757
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2732
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2733
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2758
2734
|
color: #dd2c2c;
|
|
2759
2735
|
font-size: 14px;
|
|
2760
2736
|
padding-top: 16px;
|
|
2761
2737
|
}
|
|
2762
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2763
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2738
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2739
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2764
2740
|
padding-top: 16px;
|
|
2765
2741
|
}
|
|
2766
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2767
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2742
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2743
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2768
2744
|
font-size: 14px;
|
|
2769
2745
|
line-height: 28px;
|
|
2770
2746
|
margin-bottom: 4px;
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import '../ribbon/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap4-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap4-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap4-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap4-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap4-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap4-definition.scss';
|
|
21
|
+
@import 'bootstrap4-definition.scss';
|
|
22
|
+
@import 'icons/bootstrap4.scss';
|
|
23
|
+
@import 'all.scss';
|