@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
|
@@ -683,6 +683,9 @@
|
|
|
683
683
|
display: inline-table;
|
|
684
684
|
padding-top: 3px;
|
|
685
685
|
}
|
|
686
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
687
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
688
|
+
}
|
|
686
689
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
687
690
|
font-size: 18px;
|
|
688
691
|
line-height: 21px;
|
|
@@ -699,6 +702,9 @@
|
|
|
699
702
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
700
703
|
margin-top: 10px;
|
|
701
704
|
}
|
|
705
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
706
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
707
|
+
}
|
|
702
708
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
703
709
|
font-size: 18px;
|
|
704
710
|
line-height: 21px;
|
|
@@ -1653,19 +1659,6 @@
|
|
|
1653
1659
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1654
1660
|
right: 0;
|
|
1655
1661
|
}
|
|
1656
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1657
|
-
border-left-color: transparent;
|
|
1658
|
-
}
|
|
1659
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1660
|
-
border-left: 1px solid #484848;
|
|
1661
|
-
border-right: none;
|
|
1662
|
-
left: 0.5px;
|
|
1663
|
-
}
|
|
1664
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1665
|
-
border-left: none;
|
|
1666
|
-
border-right: 1px solid #484848;
|
|
1667
|
-
right: 0.5px;
|
|
1668
|
-
}
|
|
1669
1662
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1670
1663
|
position: relative;
|
|
1671
1664
|
}
|
|
@@ -1963,6 +1956,9 @@
|
|
|
1963
1956
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1964
1957
|
text-align: left;
|
|
1965
1958
|
}
|
|
1959
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1960
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1961
|
+
}
|
|
1966
1962
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1967
1963
|
font-size: 18px;
|
|
1968
1964
|
line-height: 31px;
|
|
@@ -1980,6 +1976,9 @@
|
|
|
1980
1976
|
line-height: 24px;
|
|
1981
1977
|
margin-bottom: 4px;
|
|
1982
1978
|
}
|
|
1979
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
1980
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1981
|
+
}
|
|
1983
1982
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1984
1983
|
font-size: 18px;
|
|
1985
1984
|
line-height: 21px;
|
|
@@ -1996,6 +1995,9 @@
|
|
|
1996
1995
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1997
1996
|
margin-top: 10px;
|
|
1998
1997
|
}
|
|
1998
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
1999
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2000
|
+
}
|
|
1999
2001
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2000
2002
|
font-size: 18px;
|
|
2001
2003
|
line-height: 21px;
|
|
@@ -2105,36 +2107,33 @@
|
|
|
2105
2107
|
font-family: "Calibri";
|
|
2106
2108
|
}
|
|
2107
2109
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2108
|
-
font-family: "Comic Sans MS";
|
|
2109
|
-
}
|
|
2110
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2111
2110
|
font-family: "Courier";
|
|
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(8) {
|
|
2114
2113
|
font-family: "Courier New";
|
|
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(9) {
|
|
2117
2116
|
font-family: "Din Condensed";
|
|
2118
2117
|
}
|
|
2119
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2118
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2120
2119
|
font-family: "Georgia";
|
|
2121
2120
|
}
|
|
2122
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2121
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2123
2122
|
font-family: "Helvetica";
|
|
2124
2123
|
}
|
|
2125
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2124
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2126
2125
|
font-family: "Helvetica New";
|
|
2127
2126
|
}
|
|
2128
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2127
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2129
2128
|
font-family: "Roboto";
|
|
2130
2129
|
}
|
|
2131
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2130
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2132
2131
|
font-family: "Tahoma";
|
|
2133
2132
|
}
|
|
2134
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2133
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2135
2134
|
font-family: "Times New Roman";
|
|
2136
2135
|
}
|
|
2137
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2136
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2138
2137
|
font-family: "Verdana";
|
|
2139
2138
|
}
|
|
2140
2139
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3008,15 +3007,6 @@
|
|
|
3008
3007
|
.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 {
|
|
3009
3008
|
border-left-color: #767676;
|
|
3010
3009
|
}
|
|
3011
|
-
.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 {
|
|
3012
|
-
border-left-color: transparent;
|
|
3013
|
-
}
|
|
3014
|
-
.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 {
|
|
3015
|
-
border-left-color: #767676;
|
|
3016
|
-
}
|
|
3017
|
-
.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 {
|
|
3018
|
-
border-right-color: #767676;
|
|
3019
|
-
}
|
|
3020
3010
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3021
3011
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3022
3012
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import '../ribbon/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/bootstrap-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/bootstrap-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/bootstrap-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/bootstrap-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/bootstrap-dark-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap-dark-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-dark-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap-dark-definition.scss';
|
|
21
|
+
@import 'bootstrap-dark-definition.scss';
|
|
22
|
+
@import 'icons/bootstrap-dark.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -689,6 +689,9 @@
|
|
|
689
689
|
display: inline-table;
|
|
690
690
|
padding-top: 3px;
|
|
691
691
|
}
|
|
692
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
693
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
694
|
+
}
|
|
692
695
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
693
696
|
font-size: 18px;
|
|
694
697
|
line-height: 21px;
|
|
@@ -705,6 +708,9 @@
|
|
|
705
708
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
706
709
|
margin-top: 10px;
|
|
707
710
|
}
|
|
711
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
712
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
713
|
+
}
|
|
708
714
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
709
715
|
font-size: 18px;
|
|
710
716
|
line-height: 21px;
|
|
@@ -1678,19 +1684,6 @@
|
|
|
1678
1684
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1679
1685
|
right: 0;
|
|
1680
1686
|
}
|
|
1681
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1682
|
-
border-left-color: transparent;
|
|
1683
|
-
}
|
|
1684
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1685
|
-
border-left: 1px solid #e6e6e6;
|
|
1686
|
-
border-right: none;
|
|
1687
|
-
left: 0.5px;
|
|
1688
|
-
}
|
|
1689
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1690
|
-
border-left: none;
|
|
1691
|
-
border-right: 1px solid #e6e6e6;
|
|
1692
|
-
right: 0.5px;
|
|
1693
|
-
}
|
|
1694
1687
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1695
1688
|
position: relative;
|
|
1696
1689
|
}
|
|
@@ -1988,6 +1981,9 @@
|
|
|
1988
1981
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
1989
1982
|
text-align: left;
|
|
1990
1983
|
}
|
|
1984
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
1985
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
1986
|
+
}
|
|
1991
1987
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
1992
1988
|
font-size: 18px;
|
|
1993
1989
|
line-height: 31px;
|
|
@@ -2005,6 +2001,9 @@
|
|
|
2005
2001
|
line-height: 24px;
|
|
2006
2002
|
margin-bottom: 4px;
|
|
2007
2003
|
}
|
|
2004
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2005
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2006
|
+
}
|
|
2008
2007
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2009
2008
|
font-size: 18px;
|
|
2010
2009
|
line-height: 21px;
|
|
@@ -2021,6 +2020,9 @@
|
|
|
2021
2020
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2022
2021
|
margin-top: 10px;
|
|
2023
2022
|
}
|
|
2023
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2024
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2025
|
+
}
|
|
2024
2026
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2025
2027
|
font-size: 18px;
|
|
2026
2028
|
line-height: 21px;
|
|
@@ -2130,36 +2132,33 @@
|
|
|
2130
2132
|
font-family: "Calibri";
|
|
2131
2133
|
}
|
|
2132
2134
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2133
|
-
font-family: "Comic Sans MS";
|
|
2134
|
-
}
|
|
2135
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2136
2135
|
font-family: "Courier";
|
|
2137
2136
|
}
|
|
2138
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2137
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2139
2138
|
font-family: "Courier New";
|
|
2140
2139
|
}
|
|
2141
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2140
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2142
2141
|
font-family: "Din Condensed";
|
|
2143
2142
|
}
|
|
2144
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2143
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2145
2144
|
font-family: "Georgia";
|
|
2146
2145
|
}
|
|
2147
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2146
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2148
2147
|
font-family: "Helvetica";
|
|
2149
2148
|
}
|
|
2150
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2149
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2151
2150
|
font-family: "Helvetica New";
|
|
2152
2151
|
}
|
|
2153
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2152
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2154
2153
|
font-family: "Roboto";
|
|
2155
2154
|
}
|
|
2156
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2155
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2157
2156
|
font-family: "Tahoma";
|
|
2158
2157
|
}
|
|
2159
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2158
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2160
2159
|
font-family: "Times New Roman";
|
|
2161
2160
|
}
|
|
2162
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2161
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2163
2162
|
font-family: "Verdana";
|
|
2164
2163
|
}
|
|
2165
2164
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3047,15 +3046,6 @@
|
|
|
3047
3046
|
.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 {
|
|
3048
3047
|
border-left-color: #ccc;
|
|
3049
3048
|
}
|
|
3050
|
-
.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 {
|
|
3051
|
-
border-left-color: transparent;
|
|
3052
|
-
}
|
|
3053
|
-
.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 {
|
|
3054
|
-
border-left-color: #ccc;
|
|
3055
|
-
}
|
|
3056
|
-
.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 {
|
|
3057
|
-
border-right-color: #ccc;
|
|
3058
|
-
}
|
|
3059
3049
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3060
3050
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3061
3051
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -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';
|
|
@@ -732,6 +732,9 @@
|
|
|
732
732
|
display: inline-table;
|
|
733
733
|
padding-top: 3px;
|
|
734
734
|
}
|
|
735
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
736
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
737
|
+
}
|
|
735
738
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
736
739
|
font-size: 18px;
|
|
737
740
|
line-height: 21px;
|
|
@@ -748,6 +751,9 @@
|
|
|
748
751
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
749
752
|
margin-top: 10px;
|
|
750
753
|
}
|
|
754
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
755
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
756
|
+
}
|
|
751
757
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
752
758
|
font-size: 18px;
|
|
753
759
|
line-height: 21px;
|
|
@@ -1722,19 +1728,6 @@
|
|
|
1722
1728
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1723
1729
|
right: 0;
|
|
1724
1730
|
}
|
|
1725
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1726
|
-
border-left-color: transparent;
|
|
1727
|
-
}
|
|
1728
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1729
|
-
border-left: 1px solid #dee2e6;
|
|
1730
|
-
border-right: none;
|
|
1731
|
-
left: 0.5px;
|
|
1732
|
-
}
|
|
1733
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1734
|
-
border-left: none;
|
|
1735
|
-
border-right: 1px solid #dee2e6;
|
|
1736
|
-
right: 0.5px;
|
|
1737
|
-
}
|
|
1738
1731
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1739
1732
|
position: relative;
|
|
1740
1733
|
}
|
|
@@ -2036,6 +2029,9 @@
|
|
|
2036
2029
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
2037
2030
|
text-align: left;
|
|
2038
2031
|
}
|
|
2032
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
2033
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2034
|
+
}
|
|
2039
2035
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2040
2036
|
font-size: 18px;
|
|
2041
2037
|
line-height: 31px;
|
|
@@ -2053,6 +2049,9 @@
|
|
|
2053
2049
|
line-height: 24px;
|
|
2054
2050
|
margin-bottom: 4px;
|
|
2055
2051
|
}
|
|
2052
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2053
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2054
|
+
}
|
|
2056
2055
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2057
2056
|
font-size: 18px;
|
|
2058
2057
|
line-height: 21px;
|
|
@@ -2069,6 +2068,9 @@
|
|
|
2069
2068
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2070
2069
|
margin-top: 10px;
|
|
2071
2070
|
}
|
|
2071
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2072
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2073
|
+
}
|
|
2072
2074
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2073
2075
|
font-size: 18px;
|
|
2074
2076
|
line-height: 21px;
|
|
@@ -2178,36 +2180,33 @@
|
|
|
2178
2180
|
font-family: "Calibri";
|
|
2179
2181
|
}
|
|
2180
2182
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2181
|
-
font-family: "Comic Sans MS";
|
|
2182
|
-
}
|
|
2183
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2184
2183
|
font-family: "Courier";
|
|
2185
2184
|
}
|
|
2186
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2185
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2187
2186
|
font-family: "Courier New";
|
|
2188
2187
|
}
|
|
2189
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2188
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
2190
2189
|
font-family: "Din Condensed";
|
|
2191
2190
|
}
|
|
2192
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2191
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2193
2192
|
font-family: "Georgia";
|
|
2194
2193
|
}
|
|
2195
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2194
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2196
2195
|
font-family: "Helvetica";
|
|
2197
2196
|
}
|
|
2198
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2197
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2199
2198
|
font-family: "Helvetica New";
|
|
2200
2199
|
}
|
|
2201
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2200
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2202
2201
|
font-family: "Roboto";
|
|
2203
2202
|
}
|
|
2204
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2203
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2205
2204
|
font-family: "Tahoma";
|
|
2206
2205
|
}
|
|
2207
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2206
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2208
2207
|
font-family: "Times New Roman";
|
|
2209
2208
|
}
|
|
2210
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2209
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2211
2210
|
font-family: "Verdana";
|
|
2212
2211
|
}
|
|
2213
2212
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3114,15 +3113,6 @@
|
|
|
3114
3113
|
.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 {
|
|
3115
3114
|
border-left-color: #adb5bd;
|
|
3116
3115
|
}
|
|
3117
|
-
.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 {
|
|
3118
|
-
border-left-color: transparent;
|
|
3119
|
-
}
|
|
3120
|
-
.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 {
|
|
3121
|
-
border-left-color: #adb5bd;
|
|
3122
|
-
}
|
|
3123
|
-
.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 {
|
|
3124
|
-
border-right-color: #adb5bd;
|
|
3125
|
-
}
|
|
3126
3116
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3127
3117
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3128
3118
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import '../ribbon/bootstrap4-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap4-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap4-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap4-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap4-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap4-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap4-definition.scss';
|
|
21
|
+
@import 'bootstrap4-definition.scss';
|
|
22
|
+
@import 'icons/bootstrap4.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -739,6 +739,9 @@
|
|
|
739
739
|
.e-spreadsheet .e-dlg-header-content {
|
|
740
740
|
padding: 12px;
|
|
741
741
|
}
|
|
742
|
+
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
743
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
744
|
+
}
|
|
742
745
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
743
746
|
font-size: 18px;
|
|
744
747
|
line-height: 21px;
|
|
@@ -755,6 +758,9 @@
|
|
|
755
758
|
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
756
759
|
margin-top: 10px;
|
|
757
760
|
}
|
|
761
|
+
.e-spreadsheet .e-reenterpwd-dlg.e-dialog {
|
|
762
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
763
|
+
}
|
|
758
764
|
.e-spreadsheet .e-reenterpwd-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
759
765
|
font-size: 18px;
|
|
760
766
|
line-height: 21px;
|
|
@@ -1704,19 +1710,6 @@
|
|
|
1704
1710
|
.e-spreadsheet .e-sheet-panel.e-rtl .e-frozen-row {
|
|
1705
1711
|
right: 0;
|
|
1706
1712
|
}
|
|
1707
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start {
|
|
1708
|
-
border-left-color: transparent;
|
|
1709
|
-
}
|
|
1710
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-header-cell.e-hide-start::after {
|
|
1711
|
-
border-left: 1px solid #444c54;
|
|
1712
|
-
border-right: none;
|
|
1713
|
-
left: 0.5px;
|
|
1714
|
-
}
|
|
1715
|
-
.e-spreadsheet .e-sheet-panel.e-rtl .e-column-header .e-table th.e-hide-end.e-header-cell::before {
|
|
1716
|
-
border-left: none;
|
|
1717
|
-
border-right: 1px solid #444c54;
|
|
1718
|
-
right: 0.5px;
|
|
1719
|
-
}
|
|
1720
1713
|
.e-spreadsheet .e-sheet-panel .e-frozen-columns .e-selectall-container {
|
|
1721
1714
|
position: relative;
|
|
1722
1715
|
}
|
|
@@ -2020,6 +2013,9 @@
|
|
|
2020
2013
|
.e-spreadsheet .e-find-dlg.e-dialog .e-footer-content {
|
|
2021
2014
|
text-align: left;
|
|
2022
2015
|
}
|
|
2016
|
+
.e-spreadsheet .e-protectworkbook-dlg.e-dialog {
|
|
2017
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2018
|
+
}
|
|
2023
2019
|
.e-spreadsheet .e-protectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2024
2020
|
font-size: 18px;
|
|
2025
2021
|
line-height: 31px;
|
|
@@ -2037,6 +2033,9 @@
|
|
|
2037
2033
|
line-height: 24px;
|
|
2038
2034
|
margin-bottom: 4px;
|
|
2039
2035
|
}
|
|
2036
|
+
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog {
|
|
2037
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2038
|
+
}
|
|
2040
2039
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2041
2040
|
font-size: 18px;
|
|
2042
2041
|
line-height: 21px;
|
|
@@ -2053,6 +2052,9 @@
|
|
|
2053
2052
|
.e-spreadsheet .e-unprotectworkbook-dlg.e-dialog .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
2054
2053
|
margin-top: 10px;
|
|
2055
2054
|
}
|
|
2055
|
+
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog {
|
|
2056
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2057
|
+
}
|
|
2056
2058
|
.e-spreadsheet .e-importprotectworkbook-dlg.e-dialog .e-dlg-header-content .e-dlg-header {
|
|
2057
2059
|
font-size: 18px;
|
|
2058
2060
|
line-height: 21px;
|
|
@@ -2162,36 +2164,33 @@
|
|
|
2162
2164
|
font-family: "Calibri";
|
|
2163
2165
|
}
|
|
2164
2166
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
2165
|
-
font-family: "Comic Sans MS";
|
|
2166
|
-
}
|
|
2167
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
2168
2167
|
font-family: "Courier";
|
|
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(8) {
|
|
2171
2170
|
font-family: "Courier New";
|
|
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(9) {
|
|
2174
2173
|
font-family: "Din Condensed";
|
|
2175
2174
|
}
|
|
2176
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2175
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
2177
2176
|
font-family: "Georgia";
|
|
2178
2177
|
}
|
|
2179
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2178
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
2180
2179
|
font-family: "Helvetica";
|
|
2181
2180
|
}
|
|
2182
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2181
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
2183
2182
|
font-family: "Helvetica New";
|
|
2184
2183
|
}
|
|
2185
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2184
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
2186
2185
|
font-family: "Roboto";
|
|
2187
2186
|
}
|
|
2188
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2187
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
2189
2188
|
font-family: "Tahoma";
|
|
2190
2189
|
}
|
|
2191
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2190
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
2192
2191
|
font-family: "Times New Roman";
|
|
2193
2192
|
}
|
|
2194
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
2193
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
2195
2194
|
font-family: "Verdana";
|
|
2196
2195
|
}
|
|
2197
2196
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -3117,15 +3116,6 @@
|
|
|
3117
3116
|
.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 {
|
|
3118
3117
|
border-left-color: #32373d;
|
|
3119
3118
|
}
|
|
3120
|
-
.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 {
|
|
3121
|
-
border-left-color: transparent;
|
|
3122
|
-
}
|
|
3123
|
-
.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 {
|
|
3124
|
-
border-left-color: #32373d;
|
|
3125
|
-
}
|
|
3126
|
-
.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 {
|
|
3127
|
-
border-right-color: #32373d;
|
|
3128
|
-
}
|
|
3129
3119
|
.e-spreadsheet .e-copy-indicator div.e-top,
|
|
3130
3120
|
.e-spreadsheet .e-range-indicator div.e-top,
|
|
3131
3121
|
.e-spreadsheet .e-formularef-indicator div.e-top {
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/switch/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/tab/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/menu/bootstrap5-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/treeview/bootstrap5-dark-definition.scss';
|
|
11
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap5-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap5-dark-definition.scss';
|
|
15
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap5-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap5-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap5-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-dark-definition.scss';
|
|
20
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
21
|
+
@import 'icons/bootstrap5-dark.scss';
|
|
22
|
+
@import 'all.scss';
|