@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
|
@@ -668,62 +668,55 @@
|
|
|
668
668
|
-ms-user-select: none;
|
|
669
669
|
user-select: none;
|
|
670
670
|
}
|
|
671
|
-
.e-spreadsheet .e-protect-dlg
|
|
671
|
+
.e-spreadsheet .e-protect-dlg {
|
|
672
672
|
height: 421px;
|
|
673
673
|
width: 282px;
|
|
674
674
|
}
|
|
675
|
-
.e-spreadsheet .e-protect-dlg
|
|
675
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
676
676
|
font-size: 14px;
|
|
677
677
|
line-height: 28px;
|
|
678
678
|
margin-bottom: 4px;
|
|
679
679
|
}
|
|
680
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
680
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
681
681
|
height: 510px !important;
|
|
682
682
|
width: 530px !important;
|
|
683
683
|
}
|
|
684
|
-
.e-spreadsheet .e-
|
|
685
|
-
padding: 0;
|
|
686
|
-
}
|
|
687
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
688
|
-
display: inline-table;
|
|
689
|
-
padding-top: 3px;
|
|
690
|
-
}
|
|
691
|
-
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
684
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
692
685
|
left: 0 !important;
|
|
693
686
|
}
|
|
694
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
687
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
695
688
|
font-size: 18px;
|
|
696
689
|
line-height: 21px;
|
|
697
690
|
}
|
|
698
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
691
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
699
692
|
color: #dd2c2c;
|
|
700
693
|
font-size: 12px;
|
|
701
694
|
padding-top: 7px;
|
|
702
695
|
}
|
|
703
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
696
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
704
697
|
font-size: 14px;
|
|
705
698
|
line-height: 16px;
|
|
706
699
|
}
|
|
707
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
700
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
708
701
|
margin-top: 10px;
|
|
709
702
|
}
|
|
710
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
703
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
711
704
|
left: 0 !important;
|
|
712
705
|
}
|
|
713
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
706
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
714
707
|
font-size: 18px;
|
|
715
708
|
line-height: 21px;
|
|
716
709
|
}
|
|
717
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
710
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
718
711
|
color: #dd2c2c;
|
|
719
712
|
font-size: 12px;
|
|
720
713
|
padding-top: 7px;
|
|
721
714
|
}
|
|
722
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
715
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
723
716
|
font-size: 14px;
|
|
724
717
|
line-height: 16px;
|
|
725
718
|
}
|
|
726
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
719
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
727
720
|
margin-top: 10px;
|
|
728
721
|
}
|
|
729
722
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -774,6 +767,13 @@
|
|
|
774
767
|
margin-right: 2.8%;
|
|
775
768
|
width: 80%;
|
|
776
769
|
}
|
|
770
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
771
|
+
padding: 0;
|
|
772
|
+
}
|
|
773
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
774
|
+
display: inline-table;
|
|
775
|
+
padding-top: 3px;
|
|
776
|
+
}
|
|
777
777
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
778
778
|
margin: 10px 10px 10px 0;
|
|
779
779
|
}
|
|
@@ -1108,8 +1108,8 @@
|
|
|
1108
1108
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1109
1109
|
background-color: #317ab9;
|
|
1110
1110
|
cursor: ns-resize;
|
|
1111
|
-
left: 50%;
|
|
1112
1111
|
position: absolute;
|
|
1112
|
+
right: 50%;
|
|
1113
1113
|
top: 0;
|
|
1114
1114
|
transform: translate(-50%, -50%);
|
|
1115
1115
|
}
|
|
@@ -1124,8 +1124,8 @@
|
|
|
1124
1124
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1125
1125
|
background-color: #317ab9;
|
|
1126
1126
|
cursor: ns-resize;
|
|
1127
|
-
left: 50%;
|
|
1128
1127
|
position: absolute;
|
|
1128
|
+
right: 50%;
|
|
1129
1129
|
top: 100%;
|
|
1130
1130
|
transform: translate(-50%, -50%);
|
|
1131
1131
|
}
|
|
@@ -1735,18 +1735,18 @@
|
|
|
1735
1735
|
direction: ltr;
|
|
1736
1736
|
text-align: left;
|
|
1737
1737
|
}
|
|
1738
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1738
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1739
1739
|
padding-bottom: 0;
|
|
1740
1740
|
padding-left: 0;
|
|
1741
1741
|
padding-right: 0;
|
|
1742
1742
|
}
|
|
1743
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1743
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1744
1744
|
padding-top: 15px;
|
|
1745
1745
|
}
|
|
1746
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1746
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1747
1747
|
min-width: 220px;
|
|
1748
1748
|
}
|
|
1749
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1749
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1750
1750
|
float: left;
|
|
1751
1751
|
margin-left: 0;
|
|
1752
1752
|
}
|
|
@@ -1870,84 +1870,84 @@
|
|
|
1870
1870
|
font-size: 14px;
|
|
1871
1871
|
line-height: 28px;
|
|
1872
1872
|
}
|
|
1873
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1874
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1873
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1874
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1875
1875
|
max-height: 640px !important;
|
|
1876
1876
|
}
|
|
1877
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1878
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1877
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1878
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1879
1879
|
padding: 24px 24px 16px;
|
|
1880
1880
|
}
|
|
1881
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1882
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1881
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1882
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1883
1883
|
font-size: 18px;
|
|
1884
1884
|
line-height: 21px;
|
|
1885
1885
|
}
|
|
1886
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1887
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1886
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1887
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1888
1888
|
padding-bottom: 0;
|
|
1889
1889
|
padding-left: 0;
|
|
1890
1890
|
padding-right: 0;
|
|
1891
1891
|
}
|
|
1892
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1893
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1892
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1893
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1894
1894
|
padding: 0 24px 0 25px;
|
|
1895
1895
|
}
|
|
1896
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1897
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1896
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1897
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1898
1898
|
height: 100%;
|
|
1899
1899
|
}
|
|
1900
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1901
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1900
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1901
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1902
1902
|
text-align: center;
|
|
1903
1903
|
width: 136px;
|
|
1904
1904
|
}
|
|
1905
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1906
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1905
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1906
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1907
1907
|
font-size: 13px;
|
|
1908
1908
|
line-height: 15px;
|
|
1909
1909
|
}
|
|
1910
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1911
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1910
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1911
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1912
1912
|
padding-top: 24px;
|
|
1913
1913
|
}
|
|
1914
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1915
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1914
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1915
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1916
1916
|
margin: 0 0 15.5px 24px;
|
|
1917
1917
|
}
|
|
1918
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1919
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1918
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1919
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1920
1920
|
font-size: 14px;
|
|
1921
1921
|
line-height: 16px;
|
|
1922
1922
|
}
|
|
1923
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1924
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1923
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1924
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1925
1925
|
margin-top: 8px;
|
|
1926
1926
|
font-size: 14px;
|
|
1927
1927
|
height: 32px;
|
|
1928
1928
|
line-height: 16px;
|
|
1929
1929
|
width: 275px;
|
|
1930
1930
|
}
|
|
1931
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1932
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1931
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1932
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1933
1933
|
border-bottom-width: 2px;
|
|
1934
1934
|
}
|
|
1935
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1936
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1935
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1936
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1937
1937
|
border: 1px solid #c8c8c8;
|
|
1938
1938
|
height: 165px;
|
|
1939
1939
|
margin: 8px 24px 0 0;
|
|
1940
1940
|
overflow: auto;
|
|
1941
1941
|
width: 273px;
|
|
1942
1942
|
}
|
|
1943
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1944
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1943
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1944
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1945
1945
|
margin: 4px 0;
|
|
1946
1946
|
}
|
|
1947
|
-
.e-spreadsheet .e-open-dlg
|
|
1947
|
+
.e-spreadsheet .e-open-dlg {
|
|
1948
1948
|
width: 340px;
|
|
1949
1949
|
}
|
|
1950
|
-
.e-spreadsheet .e-open-dlg
|
|
1950
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1951
1951
|
color: #dd2c2c;
|
|
1952
1952
|
font-size: 12px;
|
|
1953
1953
|
padding-top: 7px;
|
|
@@ -1966,12 +1966,6 @@
|
|
|
1966
1966
|
font-size: 12px;
|
|
1967
1967
|
padding-top: 7px;
|
|
1968
1968
|
}
|
|
1969
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1970
|
-
padding-right: 12px;
|
|
1971
|
-
}
|
|
1972
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1973
|
-
padding: 12px 0;
|
|
1974
|
-
}
|
|
1975
1969
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1976
1970
|
margin: 0;
|
|
1977
1971
|
padding-bottom: 8px;
|
|
@@ -1980,62 +1974,62 @@
|
|
|
1980
1974
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
1981
1975
|
text-align: left;
|
|
1982
1976
|
}
|
|
1983
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1977
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
1984
1978
|
left: 0 !important;
|
|
1985
1979
|
}
|
|
1986
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1980
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1987
1981
|
font-size: 18px;
|
|
1988
1982
|
line-height: 31px;
|
|
1989
1983
|
}
|
|
1990
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1984
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
1991
1985
|
color: #dd2c2c;
|
|
1992
1986
|
font-size: 12px;
|
|
1993
1987
|
padding-top: 12px;
|
|
1994
1988
|
}
|
|
1995
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1989
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
1996
1990
|
padding-top: 12px;
|
|
1997
1991
|
}
|
|
1998
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1992
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
1999
1993
|
font-size: 12px;
|
|
2000
1994
|
line-height: 24px;
|
|
2001
1995
|
margin-bottom: 4px;
|
|
2002
1996
|
}
|
|
2003
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1997
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
2004
1998
|
left: 0 !important;
|
|
2005
1999
|
}
|
|
2006
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2000
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2007
2001
|
font-size: 18px;
|
|
2008
2002
|
line-height: 21px;
|
|
2009
2003
|
}
|
|
2010
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2004
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
2011
2005
|
color: #dd2c2c;
|
|
2012
2006
|
font-size: 12px;
|
|
2013
2007
|
padding-top: 7px;
|
|
2014
2008
|
}
|
|
2015
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2009
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
2016
2010
|
font-size: 14px;
|
|
2017
2011
|
line-height: 16px;
|
|
2018
2012
|
}
|
|
2019
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
2013
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2020
2014
|
margin-top: 10px;
|
|
2021
2015
|
}
|
|
2022
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2016
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
2023
2017
|
left: 0 !important;
|
|
2024
2018
|
}
|
|
2025
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2019
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
2026
2020
|
font-size: 18px;
|
|
2027
2021
|
line-height: 21px;
|
|
2028
2022
|
}
|
|
2029
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2023
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
2030
2024
|
color: #dd2c2c;
|
|
2031
2025
|
font-size: 12px;
|
|
2032
2026
|
padding-top: 7px;
|
|
2033
2027
|
}
|
|
2034
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2028
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
2035
2029
|
font-size: 14px;
|
|
2036
2030
|
line-height: 16px;
|
|
2037
2031
|
}
|
|
2038
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
2032
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
2039
2033
|
margin-top: 10px;
|
|
2040
2034
|
}
|
|
2041
2035
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2051,7 +2045,7 @@
|
|
|
2051
2045
|
height: 18px;
|
|
2052
2046
|
margin-right: -1px;
|
|
2053
2047
|
padding: 0;
|
|
2054
|
-
position:
|
|
2048
|
+
position: relative;
|
|
2055
2049
|
right: 0;
|
|
2056
2050
|
width: 20px;
|
|
2057
2051
|
z-index: 2;
|
|
@@ -2077,9 +2071,6 @@
|
|
|
2077
2071
|
cursor: row-resize;
|
|
2078
2072
|
}
|
|
2079
2073
|
|
|
2080
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2081
|
-
max-width: initial;
|
|
2082
|
-
}
|
|
2083
2074
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2084
2075
|
font-size: 13px;
|
|
2085
2076
|
max-width: 200px;
|
|
@@ -2131,36 +2122,33 @@
|
|
|
2131
2122
|
font-family: "Calibri";
|
|
2132
2123
|
}
|
|
2133
2124
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2134
|
-
font-family: "Comic Sans MS";
|
|
2135
|
-
}
|
|
2136
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2137
2125
|
font-family: "Courier";
|
|
2138
2126
|
}
|
|
2139
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2127
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2140
2128
|
font-family: "Courier New";
|
|
2141
2129
|
}
|
|
2142
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2130
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2143
2131
|
font-family: "Din Condensed";
|
|
2144
2132
|
}
|
|
2145
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2133
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2146
2134
|
font-family: "Georgia";
|
|
2147
2135
|
}
|
|
2148
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2136
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2149
2137
|
font-family: "Helvetica";
|
|
2150
2138
|
}
|
|
2151
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2139
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2152
2140
|
font-family: "Helvetica New";
|
|
2153
2141
|
}
|
|
2154
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2142
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2155
2143
|
font-family: "Roboto";
|
|
2156
2144
|
}
|
|
2157
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2145
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2158
2146
|
font-family: "Tahoma";
|
|
2159
2147
|
}
|
|
2160
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2161
2149
|
font-family: "Times New Roman";
|
|
2162
2150
|
}
|
|
2163
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2164
2152
|
font-family: "Verdana";
|
|
2165
2153
|
}
|
|
2166
2154
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2319,9 +2307,6 @@
|
|
|
2319
2307
|
.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 {
|
|
2320
2308
|
display: block;
|
|
2321
2309
|
}
|
|
2322
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2323
|
-
height: 35px;
|
|
2324
|
-
}
|
|
2325
2310
|
.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 {
|
|
2326
2311
|
min-width: 165px;
|
|
2327
2312
|
overflow: visible;
|
|
@@ -2435,50 +2420,46 @@
|
|
|
2435
2420
|
width: 100%;
|
|
2436
2421
|
}
|
|
2437
2422
|
|
|
2438
|
-
.e-spreadsheet-function-dlg
|
|
2423
|
+
.e-spreadsheet-function-dlg {
|
|
2439
2424
|
min-height: 510px;
|
|
2440
2425
|
-webkit-user-select: none;
|
|
2441
2426
|
-ms-user-select: none;
|
|
2442
2427
|
user-select: none;
|
|
2443
2428
|
}
|
|
2444
|
-
.e-spreadsheet-function-dlg
|
|
2429
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2445
2430
|
padding: 18px;
|
|
2446
2431
|
}
|
|
2447
|
-
.e-spreadsheet-function-dlg
|
|
2432
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2448
2433
|
font-size: 16px;
|
|
2449
2434
|
font-weight: 400;
|
|
2450
2435
|
}
|
|
2451
|
-
.e-spreadsheet-function-dlg
|
|
2436
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2452
2437
|
overflow: hidden;
|
|
2453
2438
|
padding-left: 15px;
|
|
2454
2439
|
padding-right: 15px;
|
|
2455
2440
|
}
|
|
2456
|
-
.e-spreadsheet-function-dlg
|
|
2441
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2457
2442
|
font-size: 12px;
|
|
2458
2443
|
font-weight: 500;
|
|
2459
2444
|
margin-bottom: 5px;
|
|
2460
2445
|
}
|
|
2461
|
-
.e-spreadsheet-function-dlg
|
|
2446
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2462
2447
|
margin-left: -4px;
|
|
2463
2448
|
margin-top: 5px;
|
|
2464
2449
|
padding: 4px;
|
|
2465
2450
|
}
|
|
2466
|
-
.e-spreadsheet-function-dlg
|
|
2451
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2467
2452
|
font-size: 14px;
|
|
2468
2453
|
font-weight: 500;
|
|
2469
2454
|
padding-top: 10px;
|
|
2470
2455
|
}
|
|
2471
|
-
.e-spreadsheet-function-dlg
|
|
2456
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2472
2457
|
border: 1px solid #ddd;
|
|
2473
2458
|
cursor: default;
|
|
2474
2459
|
margin-top: 6px;
|
|
2475
2460
|
overflow-y: auto;
|
|
2476
2461
|
}
|
|
2477
2462
|
|
|
2478
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2479
|
-
width: auto;
|
|
2480
|
-
}
|
|
2481
|
-
|
|
2482
2463
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2483
2464
|
line-height: 25px;
|
|
2484
2465
|
min-height: 25px;
|
|
@@ -2573,11 +2554,6 @@
|
|
|
2573
2554
|
height: auto;
|
|
2574
2555
|
width: auto;
|
|
2575
2556
|
}
|
|
2576
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2577
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2578
|
-
height: auto;
|
|
2579
|
-
overflow: hidden;
|
|
2580
|
-
}
|
|
2581
2557
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2582
2558
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2583
2559
|
font-size: 20px;
|
|
@@ -2674,8 +2650,8 @@
|
|
|
2674
2650
|
margin-right: 2.8%;
|
|
2675
2651
|
width: 77%;
|
|
2676
2652
|
}
|
|
2677
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2678
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2653
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2654
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2679
2655
|
width: 590px !important;
|
|
2680
2656
|
}
|
|
2681
2657
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2705,18 +2681,18 @@
|
|
|
2705
2681
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2706
2682
|
font-size: 12px;
|
|
2707
2683
|
}
|
|
2708
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2709
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2684
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2685
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2710
2686
|
color: #dd2c2c;
|
|
2711
2687
|
font-size: 14px;
|
|
2712
2688
|
padding-top: 16px;
|
|
2713
2689
|
}
|
|
2714
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2715
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2690
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2691
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2716
2692
|
padding-top: 16px;
|
|
2717
2693
|
}
|
|
2718
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2719
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2694
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2695
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2720
2696
|
font-size: 14px;
|
|
2721
2697
|
line-height: 28px;
|
|
2722
2698
|
margin-bottom: 4px;
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import '../ribbon/bootstrap-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/bootstrap-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/bootstrap-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/bootstrap-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/bootstrap-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/bootstrap-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-definition.scss';
|
|
21
|
+
@import 'bootstrap-definition.scss';
|
|
22
|
+
@import 'icons/bootstrap.scss';
|
|
23
|
+
@import 'all.scss';
|