@syncfusion/ej2-angular-spreadsheet 20.4.38-ngcc → 20.4.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/README.md +67 -144
- 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 +38 -36
- package/schematics/utils/lib-details.d.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 +24 -34
- package/styles/bootstrap.css +24 -34
- package/styles/bootstrap4.css +24 -34
- package/styles/bootstrap5-dark.css +24 -34
- package/styles/bootstrap5.css +24 -34
- package/styles/fabric-dark.css +24 -34
- package/styles/fabric.css +24 -34
- package/styles/fluent-dark.css +24 -34
- package/styles/fluent.css +24 -34
- package/styles/highcontrast-light.css +24 -34
- package/styles/highcontrast.css +24 -34
- package/styles/material-dark.css +24 -34
- package/styles/material.css +24 -34
- 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 +241 -0
- package/styles/ribbon/_material-dark-definition.scss +15 -0
- package/styles/ribbon/_material-definition.scss +12 -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 +154 -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 +154 -0
- package/styles/spreadsheet/_bootstrap-definition.scss +154 -0
- package/styles/spreadsheet/_bootstrap4-definition.scss +153 -0
- package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
- package/styles/spreadsheet/_bootstrap5-definition.scss +156 -0
- package/styles/spreadsheet/_fabric-dark-definition.scss +151 -0
- package/styles/spreadsheet/_fabric-definition.scss +151 -0
- package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
- package/styles/spreadsheet/_fluent-definition.scss +152 -0
- package/styles/spreadsheet/_fusionnew-definition.scss +151 -0
- package/styles/spreadsheet/_highcontrast-definition.scss +150 -0
- package/styles/spreadsheet/_highcontrast-light-definition.scss +146 -0
- package/styles/spreadsheet/_layout.scss +3025 -0
- package/styles/spreadsheet/_material-dark-definition.scss +153 -0
- package/styles/spreadsheet/_material-definition.scss +151 -0
- package/styles/spreadsheet/_material3-definition.scss +151 -0
- package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
- package/styles/spreadsheet/_tailwind-definition.scss +158 -0
- package/styles/spreadsheet/_theme.scss +1365 -0
- package/styles/spreadsheet/bootstrap-dark.css +24 -34
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +24 -34
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +24 -34
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +24 -34
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +24 -34
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +24 -34
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +24 -34
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +24 -34
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +24 -34
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +24 -34
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +24 -34
- 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 +994 -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 +24 -34
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +24 -34
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +24 -34
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +24 -34
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +24 -34
- package/styles/tailwind.css +24 -34
- 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 -1365
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1583
- 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/styles/fabric-dark.css
CHANGED
|
@@ -659,6 +659,9 @@
|
|
|
659
659
|
display: inline-table;
|
|
660
660
|
padding-top: 3px;
|
|
661
661
|
}
|
|
662
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
663
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
664
|
+
}
|
|
662
665
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
663
666
|
font-size: 18px;
|
|
664
667
|
line-height: 21px;
|
|
@@ -675,6 +678,9 @@
|
|
|
675
678
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
676
679
|
margin-top: 10px;
|
|
677
680
|
}
|
|
681
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
682
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
683
|
+
}
|
|
678
684
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
679
685
|
font-size: 18px;
|
|
680
686
|
line-height: 21px;
|
|
@@ -1632,19 +1638,6 @@
|
|
|
1632
1638
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1633
1639
|
right: 0;
|
|
1634
1640
|
}
|
|
1635
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1636
|
-
border-left-color: transparent;
|
|
1637
|
-
}
|
|
1638
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1639
|
-
border-left: 1px solid #514f4f;
|
|
1640
|
-
border-right: none;
|
|
1641
|
-
left: 0.5px;
|
|
1642
|
-
}
|
|
1643
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1644
|
-
border-left: none;
|
|
1645
|
-
border-right: 1px solid #514f4f;
|
|
1646
|
-
right: 0.5px;
|
|
1647
|
-
}
|
|
1648
1641
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1649
1642
|
position: relative;
|
|
1650
1643
|
}
|
|
@@ -1942,6 +1935,9 @@
|
|
|
1942
1935
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1943
1936
|
text-align: left;
|
|
1944
1937
|
}
|
|
1938
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1939
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1940
|
+
}
|
|
1945
1941
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1946
1942
|
font-size: 18px;
|
|
1947
1943
|
line-height: 31px;
|
|
@@ -1959,6 +1955,9 @@
|
|
|
1959
1955
|
line-height: 24px;
|
|
1960
1956
|
margin-bottom: 4px;
|
|
1961
1957
|
}
|
|
1958
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
1959
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1960
|
+
}
|
|
1962
1961
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1963
1962
|
font-size: 18px;
|
|
1964
1963
|
line-height: 21px;
|
|
@@ -1975,6 +1974,9 @@
|
|
|
1975
1974
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1976
1975
|
margin-top: 10px;
|
|
1977
1976
|
}
|
|
1977
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
1978
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1979
|
+
}
|
|
1978
1980
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1979
1981
|
font-size: 18px;
|
|
1980
1982
|
line-height: 21px;
|
|
@@ -2084,36 +2086,33 @@
|
|
|
2084
2086
|
font-family: "Calibri";
|
|
2085
2087
|
}
|
|
2086
2088
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2087
|
-
font-family: "Comic Sans MS";
|
|
2088
|
-
}
|
|
2089
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2090
2089
|
font-family: "Courier";
|
|
2091
2090
|
}
|
|
2092
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2091
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2093
2092
|
font-family: "Courier New";
|
|
2094
2093
|
}
|
|
2095
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2094
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2096
2095
|
font-family: "Din Condensed";
|
|
2097
2096
|
}
|
|
2098
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2097
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2099
2098
|
font-family: "Georgia";
|
|
2100
2099
|
}
|
|
2101
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2100
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2102
2101
|
font-family: "Helvetica";
|
|
2103
2102
|
}
|
|
2104
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2103
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2105
2104
|
font-family: "Helvetica New";
|
|
2106
2105
|
}
|
|
2107
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2106
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2108
2107
|
font-family: "Roboto";
|
|
2109
2108
|
}
|
|
2110
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2109
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2111
2110
|
font-family: "Tahoma";
|
|
2112
2111
|
}
|
|
2113
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2112
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2114
2113
|
font-family: "Times New Roman";
|
|
2115
2114
|
}
|
|
2116
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2115
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2117
2116
|
font-family: "Verdana";
|
|
2118
2117
|
}
|
|
2119
2118
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2988,15 +2987,6 @@
|
|
|
2988
2987
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
2989
2988
|
border-left-color: #6f6c6c;
|
|
2990
2989
|
}
|
|
2991
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
2992
|
-
border-left-color: transparent;
|
|
2993
|
-
}
|
|
2994
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
2995
|
-
border-left-color: #6f6c6c;
|
|
2996
|
-
}
|
|
2997
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
2998
|
-
border-right-color: #6f6c6c;
|
|
2999
|
-
}
|
|
3000
2990
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3001
2991
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3002
2992
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/fabric.css
CHANGED
|
@@ -662,6 +662,9 @@
|
|
|
662
662
|
display: inline-table;
|
|
663
663
|
padding-top: 3px;
|
|
664
664
|
}
|
|
665
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
666
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
667
|
+
}
|
|
665
668
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
666
669
|
font-size: 18px;
|
|
667
670
|
line-height: 21px;
|
|
@@ -678,6 +681,9 @@
|
|
|
678
681
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
679
682
|
margin-top: 10px;
|
|
680
683
|
}
|
|
684
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
685
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
686
|
+
}
|
|
681
687
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
682
688
|
font-size: 18px;
|
|
683
689
|
line-height: 21px;
|
|
@@ -1640,19 +1646,6 @@
|
|
|
1640
1646
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1641
1647
|
right: 0;
|
|
1642
1648
|
}
|
|
1643
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1644
|
-
border-left-color: transparent;
|
|
1645
|
-
}
|
|
1646
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1647
|
-
border-left: 1px solid #eaeaea;
|
|
1648
|
-
border-right: none;
|
|
1649
|
-
left: 0.5px;
|
|
1650
|
-
}
|
|
1651
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1652
|
-
border-left: none;
|
|
1653
|
-
border-right: 1px solid #eaeaea;
|
|
1654
|
-
right: 0.5px;
|
|
1655
|
-
}
|
|
1656
1649
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1657
1650
|
position: relative;
|
|
1658
1651
|
}
|
|
@@ -1950,6 +1943,9 @@
|
|
|
1950
1943
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1951
1944
|
text-align: left;
|
|
1952
1945
|
}
|
|
1946
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1947
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1948
|
+
}
|
|
1953
1949
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1954
1950
|
font-size: 18px;
|
|
1955
1951
|
line-height: 31px;
|
|
@@ -1967,6 +1963,9 @@
|
|
|
1967
1963
|
line-height: 24px;
|
|
1968
1964
|
margin-bottom: 4px;
|
|
1969
1965
|
}
|
|
1966
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
1967
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1968
|
+
}
|
|
1970
1969
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1971
1970
|
font-size: 18px;
|
|
1972
1971
|
line-height: 21px;
|
|
@@ -1983,6 +1982,9 @@
|
|
|
1983
1982
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1984
1983
|
margin-top: 10px;
|
|
1985
1984
|
}
|
|
1985
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
1986
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1987
|
+
}
|
|
1986
1988
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1987
1989
|
font-size: 18px;
|
|
1988
1990
|
line-height: 21px;
|
|
@@ -2092,36 +2094,33 @@
|
|
|
2092
2094
|
font-family: "Calibri";
|
|
2093
2095
|
}
|
|
2094
2096
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2095
|
-
font-family: "Comic Sans MS";
|
|
2096
|
-
}
|
|
2097
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2098
2097
|
font-family: "Courier";
|
|
2099
2098
|
}
|
|
2100
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2099
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2101
2100
|
font-family: "Courier New";
|
|
2102
2101
|
}
|
|
2103
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2102
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2104
2103
|
font-family: "Din Condensed";
|
|
2105
2104
|
}
|
|
2106
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2105
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2107
2106
|
font-family: "Georgia";
|
|
2108
2107
|
}
|
|
2109
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2108
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2110
2109
|
font-family: "Helvetica";
|
|
2111
2110
|
}
|
|
2112
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2111
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2113
2112
|
font-family: "Helvetica New";
|
|
2114
2113
|
}
|
|
2115
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2114
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2116
2115
|
font-family: "Roboto";
|
|
2117
2116
|
}
|
|
2118
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2117
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2119
2118
|
font-family: "Tahoma";
|
|
2120
2119
|
}
|
|
2121
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2120
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2122
2121
|
font-family: "Times New Roman";
|
|
2123
2122
|
}
|
|
2124
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2123
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2125
2124
|
font-family: "Verdana";
|
|
2126
2125
|
}
|
|
2127
2126
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3000,15 +2999,6 @@
|
|
|
3000
2999
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3001
3000
|
border-left-color: #d0d0d0;
|
|
3002
3001
|
}
|
|
3003
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3004
|
-
border-left-color: transparent;
|
|
3005
|
-
}
|
|
3006
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3007
|
-
border-left-color: #d0d0d0;
|
|
3008
|
-
}
|
|
3009
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3010
|
-
border-right-color: #d0d0d0;
|
|
3011
|
-
}
|
|
3012
3002
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3013
3003
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3014
3004
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/fluent-dark.css
CHANGED
|
@@ -715,6 +715,9 @@
|
|
|
715
715
|
display: inline-table;
|
|
716
716
|
padding-top: 3px;
|
|
717
717
|
}
|
|
718
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
719
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
720
|
+
}
|
|
718
721
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
719
722
|
font-size: 18px;
|
|
720
723
|
line-height: 21px;
|
|
@@ -731,6 +734,9 @@
|
|
|
731
734
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
732
735
|
margin-top: 10px;
|
|
733
736
|
}
|
|
737
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
738
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
739
|
+
}
|
|
734
740
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
735
741
|
font-size: 18px;
|
|
736
742
|
line-height: 21px;
|
|
@@ -1687,19 +1693,6 @@
|
|
|
1687
1693
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1688
1694
|
right: 0;
|
|
1689
1695
|
}
|
|
1690
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1691
|
-
border-left-color: transparent;
|
|
1692
|
-
}
|
|
1693
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1694
|
-
border-left: 1px solid #292827;
|
|
1695
|
-
border-right: none;
|
|
1696
|
-
left: 0.5px;
|
|
1697
|
-
}
|
|
1698
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1699
|
-
border-left: none;
|
|
1700
|
-
border-right: 1px solid #292827;
|
|
1701
|
-
right: 0.5px;
|
|
1702
|
-
}
|
|
1703
1696
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1704
1697
|
position: relative;
|
|
1705
1698
|
}
|
|
@@ -1998,6 +1991,9 @@
|
|
|
1998
1991
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1999
1992
|
text-align: left;
|
|
2000
1993
|
}
|
|
1994
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1995
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1996
|
+
}
|
|
2001
1997
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2002
1998
|
font-size: 18px;
|
|
2003
1999
|
line-height: 31px;
|
|
@@ -2015,6 +2011,9 @@
|
|
|
2015
2011
|
line-height: 24px;
|
|
2016
2012
|
margin-bottom: 4px;
|
|
2017
2013
|
}
|
|
2014
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2015
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2016
|
+
}
|
|
2018
2017
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2019
2018
|
font-size: 18px;
|
|
2020
2019
|
line-height: 21px;
|
|
@@ -2031,6 +2030,9 @@
|
|
|
2031
2030
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2032
2031
|
margin-top: 10px;
|
|
2033
2032
|
}
|
|
2033
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2034
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2035
|
+
}
|
|
2034
2036
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2035
2037
|
font-size: 18px;
|
|
2036
2038
|
line-height: 21px;
|
|
@@ -2141,36 +2143,33 @@
|
|
|
2141
2143
|
font-family: "Calibri";
|
|
2142
2144
|
}
|
|
2143
2145
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2144
|
-
font-family: "Comic Sans MS";
|
|
2145
|
-
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2146
|
font-family: "Courier";
|
|
2148
2147
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2150
2149
|
font-family: "Courier New";
|
|
2151
2150
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2153
2152
|
font-family: "Din Condensed";
|
|
2154
2153
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2156
2155
|
font-family: "Georgia";
|
|
2157
2156
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2159
2158
|
font-family: "Helvetica";
|
|
2160
2159
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2162
2161
|
font-family: "Helvetica New";
|
|
2163
2162
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2165
2164
|
font-family: "Roboto";
|
|
2166
2165
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2168
2167
|
font-family: "Tahoma";
|
|
2169
2168
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2171
2170
|
font-family: "Times New Roman";
|
|
2172
2171
|
}
|
|
2173
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2174
2173
|
font-family: "Verdana";
|
|
2175
2174
|
}
|
|
2176
2175
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3101,15 +3100,6 @@
|
|
|
3101
3100
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3102
3101
|
border-left-color: #1f1e1d;
|
|
3103
3102
|
}
|
|
3104
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3105
|
-
border-left-color: transparent;
|
|
3106
|
-
}
|
|
3107
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3108
|
-
border-left-color: #1f1e1d;
|
|
3109
|
-
}
|
|
3110
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3111
|
-
border-right-color: #1f1e1d;
|
|
3112
|
-
}
|
|
3113
3103
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3114
3104
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3115
3105
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
package/styles/fluent.css
CHANGED
|
@@ -715,6 +715,9 @@
|
|
|
715
715
|
display: inline-table;
|
|
716
716
|
padding-top: 3px;
|
|
717
717
|
}
|
|
718
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
719
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
720
|
+
}
|
|
718
721
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
719
722
|
font-size: 18px;
|
|
720
723
|
line-height: 21px;
|
|
@@ -731,6 +734,9 @@
|
|
|
731
734
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
732
735
|
margin-top: 10px;
|
|
733
736
|
}
|
|
737
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
738
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
739
|
+
}
|
|
734
740
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
735
741
|
font-size: 18px;
|
|
736
742
|
line-height: 21px;
|
|
@@ -1687,19 +1693,6 @@
|
|
|
1687
1693
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1688
1694
|
right: 0;
|
|
1689
1695
|
}
|
|
1690
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1691
|
-
border-left-color: transparent;
|
|
1692
|
-
}
|
|
1693
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1694
|
-
border-left: 1px solid #edebe9;
|
|
1695
|
-
border-right: none;
|
|
1696
|
-
left: 0.5px;
|
|
1697
|
-
}
|
|
1698
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1699
|
-
border-left: none;
|
|
1700
|
-
border-right: 1px solid #edebe9;
|
|
1701
|
-
right: 0.5px;
|
|
1702
|
-
}
|
|
1703
1696
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1704
1697
|
position: relative;
|
|
1705
1698
|
}
|
|
@@ -1998,6 +1991,9 @@
|
|
|
1998
1991
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1999
1992
|
text-align: left;
|
|
2000
1993
|
}
|
|
1994
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1995
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1996
|
+
}
|
|
2001
1997
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2002
1998
|
font-size: 18px;
|
|
2003
1999
|
line-height: 31px;
|
|
@@ -2015,6 +2011,9 @@
|
|
|
2015
2011
|
line-height: 24px;
|
|
2016
2012
|
margin-bottom: 4px;
|
|
2017
2013
|
}
|
|
2014
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2015
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2016
|
+
}
|
|
2018
2017
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2019
2018
|
font-size: 18px;
|
|
2020
2019
|
line-height: 21px;
|
|
@@ -2031,6 +2030,9 @@
|
|
|
2031
2030
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2032
2031
|
margin-top: 10px;
|
|
2033
2032
|
}
|
|
2033
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2034
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2035
|
+
}
|
|
2034
2036
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2035
2037
|
font-size: 18px;
|
|
2036
2038
|
line-height: 21px;
|
|
@@ -2141,36 +2143,33 @@
|
|
|
2141
2143
|
font-family: "Calibri";
|
|
2142
2144
|
}
|
|
2143
2145
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2144
|
-
font-family: "Comic Sans MS";
|
|
2145
|
-
}
|
|
2146
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2147
2146
|
font-family: "Courier";
|
|
2148
2147
|
}
|
|
2149
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2148
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2150
2149
|
font-family: "Courier New";
|
|
2151
2150
|
}
|
|
2152
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2151
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2153
2152
|
font-family: "Din Condensed";
|
|
2154
2153
|
}
|
|
2155
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2154
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2156
2155
|
font-family: "Georgia";
|
|
2157
2156
|
}
|
|
2158
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2157
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2159
2158
|
font-family: "Helvetica";
|
|
2160
2159
|
}
|
|
2161
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2160
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2162
2161
|
font-family: "Helvetica New";
|
|
2163
2162
|
}
|
|
2164
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2163
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2165
2164
|
font-family: "Roboto";
|
|
2166
2165
|
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2166
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2168
2167
|
font-family: "Tahoma";
|
|
2169
2168
|
}
|
|
2170
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2169
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2171
2170
|
font-family: "Times New Roman";
|
|
2172
2171
|
}
|
|
2173
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2172
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2174
2173
|
font-family: "Verdana";
|
|
2175
2174
|
}
|
|
2176
2175
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3101,15 +3100,6 @@
|
|
|
3101
3100
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
3102
3101
|
border-left-color: #e4e1de;
|
|
3103
3102
|
}
|
|
3104
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
3105
|
-
border-left-color: transparent;
|
|
3106
|
-
}
|
|
3107
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
3108
|
-
border-left-color: #e4e1de;
|
|
3109
|
-
}
|
|
3110
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
3111
|
-
border-right-color: #e4e1de;
|
|
3112
|
-
}
|
|
3113
3103
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3114
3104
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3115
3105
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -104,6 +104,9 @@
|
|
|
104
104
|
display: inline-table;
|
|
105
105
|
padding-top: 3px;
|
|
106
106
|
}
|
|
107
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
108
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
109
|
+
}
|
|
107
110
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
108
111
|
font-size: 18px;
|
|
109
112
|
line-height: 21px;
|
|
@@ -120,6 +123,9 @@
|
|
|
120
123
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
121
124
|
margin-top: 10px;
|
|
122
125
|
}
|
|
126
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
127
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
128
|
+
}
|
|
123
129
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
124
130
|
font-size: 18px;
|
|
125
131
|
line-height: 21px;
|
|
@@ -1074,19 +1080,6 @@
|
|
|
1074
1080
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1075
1081
|
right: 0;
|
|
1076
1082
|
}
|
|
1077
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1078
|
-
border-left-color: transparent;
|
|
1079
|
-
}
|
|
1080
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1081
|
-
border-left: none;
|
|
1082
|
-
border-right: none;
|
|
1083
|
-
left: 0.5px;
|
|
1084
|
-
}
|
|
1085
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1086
|
-
border-left: none;
|
|
1087
|
-
border-right: none;
|
|
1088
|
-
right: 0.5px;
|
|
1089
|
-
}
|
|
1090
1083
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1091
1084
|
position: relative;
|
|
1092
1085
|
}
|
|
@@ -1384,6 +1377,9 @@
|
|
|
1384
1377
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1385
1378
|
text-align: left;
|
|
1386
1379
|
}
|
|
1380
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1381
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1382
|
+
}
|
|
1387
1383
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1388
1384
|
font-size: 18px;
|
|
1389
1385
|
line-height: 31px;
|
|
@@ -1401,6 +1397,9 @@
|
|
|
1401
1397
|
line-height: 24px;
|
|
1402
1398
|
margin-bottom: 4px;
|
|
1403
1399
|
}
|
|
1400
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
1401
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1402
|
+
}
|
|
1404
1403
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1405
1404
|
font-size: 18px;
|
|
1406
1405
|
line-height: 21px;
|
|
@@ -1417,6 +1416,9 @@
|
|
|
1417
1416
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1418
1417
|
margin-top: 10px;
|
|
1419
1418
|
}
|
|
1419
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
1420
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1421
|
+
}
|
|
1420
1422
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1421
1423
|
font-size: 18px;
|
|
1422
1424
|
line-height: 21px;
|
|
@@ -1526,36 +1528,33 @@
|
|
|
1526
1528
|
font-family: "Calibri";
|
|
1527
1529
|
}
|
|
1528
1530
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
1529
|
-
font-family: "Comic Sans MS";
|
|
1530
|
-
}
|
|
1531
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1532
1531
|
font-family: "Courier";
|
|
1533
1532
|
}
|
|
1534
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1533
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1535
1534
|
font-family: "Courier New";
|
|
1536
1535
|
}
|
|
1537
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1536
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
1538
1537
|
font-family: "Din Condensed";
|
|
1539
1538
|
}
|
|
1540
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1539
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
1541
1540
|
font-family: "Georgia";
|
|
1542
1541
|
}
|
|
1543
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1542
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
1544
1543
|
font-family: "Helvetica";
|
|
1545
1544
|
}
|
|
1546
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1545
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
1547
1546
|
font-family: "Helvetica New";
|
|
1548
1547
|
}
|
|
1549
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1548
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
1550
1549
|
font-family: "Roboto";
|
|
1551
1550
|
}
|
|
1552
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1551
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
1553
1552
|
font-family: "Tahoma";
|
|
1554
1553
|
}
|
|
1555
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1554
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
1556
1555
|
font-family: "Times New Roman";
|
|
1557
1556
|
}
|
|
1558
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1557
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
1559
1558
|
font-family: "Verdana";
|
|
1560
1559
|
}
|
|
1561
1560
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -2416,15 +2415,6 @@
|
|
|
2416
2415
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-select-all-cell.e-prev-highlight-right {
|
|
2417
2416
|
border-left-color: #000;
|
|
2418
2417
|
}
|
|
2419
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight {
|
|
2420
|
-
border-left-color: transparent;
|
|
2421
|
-
}
|
|
2422
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-prev-highlight::after, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-start.e-highlight::after {
|
|
2423
|
-
border-left-color: #000;
|
|
2424
|
-
}
|
|
2425
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-hide-end.e-highlight::before, .e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-header-cell.e-highlight + th.e-header-cell.e-hide-end::before {
|
|
2426
|
-
border-right-color: #000;
|
|
2427
|
-
}
|
|
2428
2418
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
2429
2419
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
2430
2420
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|