@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
|
@@ -638,62 +638,55 @@
|
|
|
638
638
|
-ms-user-select: none;
|
|
639
639
|
user-select: none;
|
|
640
640
|
}
|
|
641
|
-
.e-spreadsheet .e-protect-dlg
|
|
641
|
+
.e-spreadsheet .e-protect-dlg {
|
|
642
642
|
height: 416px;
|
|
643
643
|
width: 300px;
|
|
644
644
|
}
|
|
645
|
-
.e-spreadsheet .e-protect-dlg
|
|
645
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
646
646
|
font-size: 14px;
|
|
647
647
|
line-height: 28px;
|
|
648
648
|
margin-bottom: 4px;
|
|
649
649
|
}
|
|
650
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
650
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
651
651
|
height: 510px !important;
|
|
652
652
|
width: 530px !important;
|
|
653
653
|
}
|
|
654
|
-
.e-spreadsheet .e-
|
|
655
|
-
padding: 0;
|
|
656
|
-
}
|
|
657
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
658
|
-
display: inline-table;
|
|
659
|
-
padding-top: 3px;
|
|
660
|
-
}
|
|
661
|
-
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
654
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
662
655
|
left: 0 !important;
|
|
663
656
|
}
|
|
664
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
657
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
665
658
|
font-size: 18px;
|
|
666
659
|
line-height: 21px;
|
|
667
660
|
}
|
|
668
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
661
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
669
662
|
color: #dd2c2c;
|
|
670
663
|
font-size: 12px;
|
|
671
664
|
padding-top: 7px;
|
|
672
665
|
}
|
|
673
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
666
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
674
667
|
font-size: 14px;
|
|
675
668
|
line-height: 16px;
|
|
676
669
|
}
|
|
677
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
670
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
678
671
|
margin-top: 10px;
|
|
679
672
|
}
|
|
680
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
673
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
681
674
|
left: 0 !important;
|
|
682
675
|
}
|
|
683
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
676
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
684
677
|
font-size: 18px;
|
|
685
678
|
line-height: 21px;
|
|
686
679
|
}
|
|
687
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
680
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
688
681
|
color: #dd2c2c;
|
|
689
682
|
font-size: 12px;
|
|
690
683
|
padding-top: 7px;
|
|
691
684
|
}
|
|
692
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
685
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
693
686
|
font-size: 14px;
|
|
694
687
|
line-height: 16px;
|
|
695
688
|
}
|
|
696
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
689
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
697
690
|
margin-top: 10px;
|
|
698
691
|
}
|
|
699
692
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -744,6 +737,13 @@
|
|
|
744
737
|
margin-right: 2.8%;
|
|
745
738
|
width: 80%;
|
|
746
739
|
}
|
|
740
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
741
|
+
padding: 0;
|
|
742
|
+
}
|
|
743
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
744
|
+
display: inline-table;
|
|
745
|
+
padding-top: 3px;
|
|
746
|
+
}
|
|
747
747
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
748
748
|
margin: 10px 10px 10px 0;
|
|
749
749
|
}
|
|
@@ -1078,8 +1078,8 @@
|
|
|
1078
1078
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1079
1079
|
background-color: #0074cc;
|
|
1080
1080
|
cursor: ns-resize;
|
|
1081
|
-
left: 50%;
|
|
1082
1081
|
position: absolute;
|
|
1082
|
+
right: 50%;
|
|
1083
1083
|
top: 0;
|
|
1084
1084
|
transform: translate(-50%, -50%);
|
|
1085
1085
|
}
|
|
@@ -1094,8 +1094,8 @@
|
|
|
1094
1094
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1095
1095
|
background-color: #0074cc;
|
|
1096
1096
|
cursor: ns-resize;
|
|
1097
|
-
left: 50%;
|
|
1098
1097
|
position: absolute;
|
|
1098
|
+
right: 50%;
|
|
1099
1099
|
top: 100%;
|
|
1100
1100
|
transform: translate(-50%, -50%);
|
|
1101
1101
|
}
|
|
@@ -1689,18 +1689,18 @@
|
|
|
1689
1689
|
direction: ltr;
|
|
1690
1690
|
text-align: left;
|
|
1691
1691
|
}
|
|
1692
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1692
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1693
1693
|
padding-bottom: 0;
|
|
1694
1694
|
padding-left: 0;
|
|
1695
1695
|
padding-right: 0;
|
|
1696
1696
|
}
|
|
1697
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1697
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1698
1698
|
padding-top: 18px;
|
|
1699
1699
|
}
|
|
1700
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1700
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1701
1701
|
min-width: 220px;
|
|
1702
1702
|
}
|
|
1703
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1703
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1704
1704
|
float: left;
|
|
1705
1705
|
margin-left: 0;
|
|
1706
1706
|
}
|
|
@@ -1824,84 +1824,84 @@
|
|
|
1824
1824
|
font-size: 14px;
|
|
1825
1825
|
line-height: 28px;
|
|
1826
1826
|
}
|
|
1827
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1828
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1827
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1828
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1829
1829
|
max-height: 640px !important;
|
|
1830
1830
|
}
|
|
1831
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1832
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1831
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1832
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1833
1833
|
padding: 24px 24px 16px;
|
|
1834
1834
|
}
|
|
1835
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1836
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1835
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1836
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1837
1837
|
font-size: 18px;
|
|
1838
1838
|
line-height: 21px;
|
|
1839
1839
|
}
|
|
1840
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1841
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1840
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1841
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1842
1842
|
padding-bottom: 0;
|
|
1843
1843
|
padding-left: 0;
|
|
1844
1844
|
padding-right: 0;
|
|
1845
1845
|
}
|
|
1846
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1847
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1846
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1847
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1848
1848
|
padding: 0 24px 0 25px;
|
|
1849
1849
|
}
|
|
1850
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1851
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1850
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1851
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1852
1852
|
height: 100%;
|
|
1853
1853
|
}
|
|
1854
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1855
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1854
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1855
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1856
1856
|
text-align: center;
|
|
1857
1857
|
width: 136px;
|
|
1858
1858
|
}
|
|
1859
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1860
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1859
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1860
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1861
1861
|
font-size: 13px;
|
|
1862
1862
|
line-height: 15px;
|
|
1863
1863
|
}
|
|
1864
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1865
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1864
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1865
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1866
1866
|
padding-top: 24px;
|
|
1867
1867
|
}
|
|
1868
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1869
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1868
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1869
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1870
1870
|
margin: 0 0 15.5px 24px;
|
|
1871
1871
|
}
|
|
1872
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1873
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1872
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1873
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1874
1874
|
font-size: 14px;
|
|
1875
1875
|
line-height: 16px;
|
|
1876
1876
|
}
|
|
1877
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1878
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1877
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1878
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1879
1879
|
margin-top: 8px;
|
|
1880
1880
|
font-size: 14px;
|
|
1881
1881
|
height: 32px;
|
|
1882
1882
|
line-height: 16px;
|
|
1883
1883
|
width: 275px;
|
|
1884
1884
|
}
|
|
1885
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1886
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1885
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1886
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1887
1887
|
border-bottom-width: 2px;
|
|
1888
1888
|
}
|
|
1889
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1890
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1889
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1890
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1891
1891
|
border: 1px solid #c8c8c8;
|
|
1892
1892
|
height: 165px;
|
|
1893
1893
|
margin: 8px 24px 0 0;
|
|
1894
1894
|
overflow: auto;
|
|
1895
1895
|
width: 273px;
|
|
1896
1896
|
}
|
|
1897
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1898
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1897
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1898
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1899
1899
|
margin: 4px 0;
|
|
1900
1900
|
}
|
|
1901
|
-
.e-spreadsheet .e-open-dlg
|
|
1901
|
+
.e-spreadsheet .e-open-dlg {
|
|
1902
1902
|
width: 340px;
|
|
1903
1903
|
}
|
|
1904
|
-
.e-spreadsheet .e-open-dlg
|
|
1904
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1905
1905
|
color: #dd2c2c;
|
|
1906
1906
|
font-size: 12px;
|
|
1907
1907
|
padding-top: 7px;
|
|
@@ -1920,12 +1920,6 @@
|
|
|
1920
1920
|
font-size: 12px;
|
|
1921
1921
|
padding-top: 7px;
|
|
1922
1922
|
}
|
|
1923
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1924
|
-
padding-right: 12px;
|
|
1925
|
-
}
|
|
1926
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1927
|
-
padding: 12px 0;
|
|
1928
|
-
}
|
|
1929
1923
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1930
1924
|
margin: 0;
|
|
1931
1925
|
padding-bottom: 8px;
|
|
@@ -1934,62 +1928,62 @@
|
|
|
1934
1928
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
1935
1929
|
text-align: left;
|
|
1936
1930
|
}
|
|
1937
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1931
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
1938
1932
|
left: 0 !important;
|
|
1939
1933
|
}
|
|
1940
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1934
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1941
1935
|
font-size: 18px;
|
|
1942
1936
|
line-height: 31px;
|
|
1943
1937
|
}
|
|
1944
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1938
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
1945
1939
|
color: #dd2c2c;
|
|
1946
1940
|
font-size: 12px;
|
|
1947
1941
|
padding-top: 12px;
|
|
1948
1942
|
}
|
|
1949
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1943
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
1950
1944
|
padding-top: 12px;
|
|
1951
1945
|
}
|
|
1952
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1946
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
1953
1947
|
font-size: 12px;
|
|
1954
1948
|
line-height: 24px;
|
|
1955
1949
|
margin-bottom: 4px;
|
|
1956
1950
|
}
|
|
1957
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1951
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
1958
1952
|
left: 0 !important;
|
|
1959
1953
|
}
|
|
1960
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1954
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1961
1955
|
font-size: 18px;
|
|
1962
1956
|
line-height: 21px;
|
|
1963
1957
|
}
|
|
1964
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1958
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
1965
1959
|
color: #dd2c2c;
|
|
1966
1960
|
font-size: 12px;
|
|
1967
1961
|
padding-top: 7px;
|
|
1968
1962
|
}
|
|
1969
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1963
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
1970
1964
|
font-size: 14px;
|
|
1971
1965
|
line-height: 16px;
|
|
1972
1966
|
}
|
|
1973
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1967
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1974
1968
|
margin-top: 10px;
|
|
1975
1969
|
}
|
|
1976
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1970
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
1977
1971
|
left: 0 !important;
|
|
1978
1972
|
}
|
|
1979
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1973
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1980
1974
|
font-size: 18px;
|
|
1981
1975
|
line-height: 21px;
|
|
1982
1976
|
}
|
|
1983
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1977
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
1984
1978
|
color: #dd2c2c;
|
|
1985
1979
|
font-size: 12px;
|
|
1986
1980
|
padding-top: 7px;
|
|
1987
1981
|
}
|
|
1988
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1982
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
1989
1983
|
font-size: 14px;
|
|
1990
1984
|
line-height: 16px;
|
|
1991
1985
|
}
|
|
1992
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1986
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
1993
1987
|
margin-top: 10px;
|
|
1994
1988
|
}
|
|
1995
1989
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -2005,7 +1999,7 @@
|
|
|
2005
1999
|
height: 18px;
|
|
2006
2000
|
margin-right: -1px;
|
|
2007
2001
|
padding: 0;
|
|
2008
|
-
position:
|
|
2002
|
+
position: relative;
|
|
2009
2003
|
right: 0;
|
|
2010
2004
|
width: 20px;
|
|
2011
2005
|
z-index: 2;
|
|
@@ -2031,9 +2025,6 @@
|
|
|
2031
2025
|
cursor: row-resize;
|
|
2032
2026
|
}
|
|
2033
2027
|
|
|
2034
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2035
|
-
max-width: initial;
|
|
2036
|
-
}
|
|
2037
2028
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2038
2029
|
font-size: 13px;
|
|
2039
2030
|
max-width: 200px;
|
|
@@ -2085,36 +2076,33 @@
|
|
|
2085
2076
|
font-family: "Calibri";
|
|
2086
2077
|
}
|
|
2087
2078
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2088
|
-
font-family: "Comic Sans MS";
|
|
2089
|
-
}
|
|
2090
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2091
2079
|
font-family: "Courier";
|
|
2092
2080
|
}
|
|
2093
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2081
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2094
2082
|
font-family: "Courier New";
|
|
2095
2083
|
}
|
|
2096
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2084
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2097
2085
|
font-family: "Din Condensed";
|
|
2098
2086
|
}
|
|
2099
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2087
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2100
2088
|
font-family: "Georgia";
|
|
2101
2089
|
}
|
|
2102
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2090
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2103
2091
|
font-family: "Helvetica";
|
|
2104
2092
|
}
|
|
2105
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2093
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2106
2094
|
font-family: "Helvetica New";
|
|
2107
2095
|
}
|
|
2108
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2096
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2109
2097
|
font-family: "Roboto";
|
|
2110
2098
|
}
|
|
2111
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2099
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2112
2100
|
font-family: "Tahoma";
|
|
2113
2101
|
}
|
|
2114
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2102
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2115
2103
|
font-family: "Times New Roman";
|
|
2116
2104
|
}
|
|
2117
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2105
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2118
2106
|
font-family: "Verdana";
|
|
2119
2107
|
}
|
|
2120
2108
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2386,50 +2374,46 @@
|
|
|
2386
2374
|
width: 100%;
|
|
2387
2375
|
}
|
|
2388
2376
|
|
|
2389
|
-
.e-spreadsheet-function-dlg
|
|
2377
|
+
.e-spreadsheet-function-dlg {
|
|
2390
2378
|
min-height: 515px;
|
|
2391
2379
|
-webkit-user-select: none;
|
|
2392
2380
|
-ms-user-select: none;
|
|
2393
2381
|
user-select: none;
|
|
2394
2382
|
}
|
|
2395
|
-
.e-spreadsheet-function-dlg
|
|
2383
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
2396
2384
|
padding: 18px;
|
|
2397
2385
|
}
|
|
2398
|
-
.e-spreadsheet-function-dlg
|
|
2386
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
2399
2387
|
font-size: 16px;
|
|
2400
2388
|
font-weight: 400;
|
|
2401
2389
|
}
|
|
2402
|
-
.e-spreadsheet-function-dlg
|
|
2390
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
2403
2391
|
overflow: hidden;
|
|
2404
2392
|
padding-left: 18px;
|
|
2405
2393
|
padding-right: 18px;
|
|
2406
2394
|
}
|
|
2407
|
-
.e-spreadsheet-function-dlg
|
|
2395
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
2408
2396
|
font-size: 12px;
|
|
2409
2397
|
font-weight: 500;
|
|
2410
2398
|
margin-bottom: 5px;
|
|
2411
2399
|
}
|
|
2412
|
-
.e-spreadsheet-function-dlg
|
|
2400
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
2413
2401
|
margin-left: -4px;
|
|
2414
2402
|
margin-top: 5px;
|
|
2415
2403
|
padding: 4px;
|
|
2416
2404
|
}
|
|
2417
|
-
.e-spreadsheet-function-dlg
|
|
2405
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
2418
2406
|
font-size: 14px;
|
|
2419
2407
|
font-weight: 500;
|
|
2420
2408
|
padding-top: 10px;
|
|
2421
2409
|
}
|
|
2422
|
-
.e-spreadsheet-function-dlg
|
|
2410
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
2423
2411
|
border: 1px solid #414040;
|
|
2424
2412
|
cursor: default;
|
|
2425
2413
|
margin-top: 6px;
|
|
2426
2414
|
overflow-y: auto;
|
|
2427
2415
|
}
|
|
2428
2416
|
|
|
2429
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2430
|
-
width: auto;
|
|
2431
|
-
}
|
|
2432
|
-
|
|
2433
2417
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2434
2418
|
line-height: 25px;
|
|
2435
2419
|
min-height: 25px;
|
|
@@ -2528,11 +2512,6 @@
|
|
|
2528
2512
|
height: auto;
|
|
2529
2513
|
width: auto;
|
|
2530
2514
|
}
|
|
2531
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2532
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2533
|
-
height: auto;
|
|
2534
|
-
overflow: hidden;
|
|
2535
|
-
}
|
|
2536
2515
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2537
2516
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2538
2517
|
font-size: 20px;
|
|
@@ -2634,8 +2613,8 @@
|
|
|
2634
2613
|
margin-right: 2.8%;
|
|
2635
2614
|
width: 77%;
|
|
2636
2615
|
}
|
|
2637
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2638
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2616
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2617
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2639
2618
|
width: 590px !important;
|
|
2640
2619
|
}
|
|
2641
2620
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2665,18 +2644,18 @@
|
|
|
2665
2644
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2666
2645
|
font-size: 12px;
|
|
2667
2646
|
}
|
|
2668
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2669
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2647
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2648
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2670
2649
|
color: #dd2c2c;
|
|
2671
2650
|
font-size: 14px;
|
|
2672
2651
|
padding-top: 16px;
|
|
2673
2652
|
}
|
|
2674
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2675
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2653
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2654
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2676
2655
|
padding-top: 16px;
|
|
2677
2656
|
}
|
|
2678
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2679
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2657
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2658
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2680
2659
|
font-size: 14px;
|
|
2681
2660
|
line-height: 28px;
|
|
2682
2661
|
margin-bottom: 4px;
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import '../ribbon/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/fabric-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/fabric-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fabric-dark-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/fabric-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/fabric-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-dark-definition.scss';
|
|
21
|
+
@import 'fabric-dark-definition.scss';
|
|
22
|
+
@import 'icons/fabric-dark.scss';
|
|
23
|
+
@import 'all.scss';
|