@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
|
@@ -83,62 +83,55 @@
|
|
|
83
83
|
-ms-user-select: none;
|
|
84
84
|
user-select: none;
|
|
85
85
|
}
|
|
86
|
-
.e-spreadsheet .e-protect-dlg
|
|
86
|
+
.e-spreadsheet .e-protect-dlg {
|
|
87
87
|
height: 405px;
|
|
88
88
|
width: 302px;
|
|
89
89
|
}
|
|
90
|
-
.e-spreadsheet .e-protect-dlg
|
|
90
|
+
.e-spreadsheet .e-protect-dlg .e-sheet-password-content .e-header {
|
|
91
91
|
font-size: 14px;
|
|
92
92
|
line-height: 28px;
|
|
93
93
|
margin-bottom: 4px;
|
|
94
94
|
}
|
|
95
|
-
.e-spreadsheet .e-custom-format-dlg
|
|
95
|
+
.e-spreadsheet .e-custom-format-dlg {
|
|
96
96
|
height: 510px !important;
|
|
97
97
|
width: 530px !important;
|
|
98
98
|
}
|
|
99
|
-
.e-spreadsheet .e-
|
|
100
|
-
padding: 0;
|
|
101
|
-
}
|
|
102
|
-
.e-spreadsheet .e-custom-format-dlg.e-dialog .e-dlg-content {
|
|
103
|
-
display: inline-table;
|
|
104
|
-
padding-top: 3px;
|
|
105
|
-
}
|
|
106
|
-
.e-spreadsheet .e-unprotectworksheet-dlg.e-dialog {
|
|
99
|
+
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
107
100
|
left: 0 !important;
|
|
108
101
|
}
|
|
109
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
102
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-header-content .e-dlg-header {
|
|
110
103
|
font-size: 18px;
|
|
111
104
|
line-height: 21px;
|
|
112
105
|
}
|
|
113
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
106
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-alert-span {
|
|
114
107
|
color: #dd2c2c;
|
|
115
108
|
font-size: 12px;
|
|
116
109
|
padding-top: 7px;
|
|
117
110
|
}
|
|
118
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
111
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-header {
|
|
119
112
|
font-size: 14px;
|
|
120
113
|
line-height: 16px;
|
|
121
114
|
}
|
|
122
|
-
.e-spreadsheet .e-unprotectworksheet-dlg
|
|
115
|
+
.e-spreadsheet .e-unprotectworksheet-dlg .e-dlg-content .e-unprotectsheetpwd-content .e-input {
|
|
123
116
|
margin-top: 10px;
|
|
124
117
|
}
|
|
125
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
118
|
+
.e-spreadsheet .e-reenterpwd-dlg {
|
|
126
119
|
left: 0 !important;
|
|
127
120
|
}
|
|
128
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
121
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-header-content .e-dlg-header {
|
|
129
122
|
font-size: 18px;
|
|
130
123
|
line-height: 21px;
|
|
131
124
|
}
|
|
132
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
125
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-alert-span {
|
|
133
126
|
color: #dd2c2c;
|
|
134
127
|
font-size: 12px;
|
|
135
128
|
padding-top: 7px;
|
|
136
129
|
}
|
|
137
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
130
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-header {
|
|
138
131
|
font-size: 14px;
|
|
139
132
|
line-height: 16px;
|
|
140
133
|
}
|
|
141
|
-
.e-spreadsheet .e-reenterpwd-dlg
|
|
134
|
+
.e-spreadsheet .e-reenterpwd-dlg .e-dlg-content .e-reenterpwd-content .e-input {
|
|
142
135
|
margin-top: 10px;
|
|
143
136
|
}
|
|
144
137
|
.e-spreadsheet .e-goto-dlg {
|
|
@@ -189,6 +182,13 @@
|
|
|
189
182
|
margin-right: 2.8%;
|
|
190
183
|
width: 80%;
|
|
191
184
|
}
|
|
185
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
186
|
+
padding: 0;
|
|
187
|
+
}
|
|
188
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
189
|
+
display: inline-table;
|
|
190
|
+
padding-top: 3px;
|
|
191
|
+
}
|
|
192
192
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
193
193
|
margin: 10px 10px 10px 0;
|
|
194
194
|
}
|
|
@@ -523,8 +523,8 @@
|
|
|
523
523
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
524
524
|
background-color: #400074;
|
|
525
525
|
cursor: ns-resize;
|
|
526
|
-
left: 50%;
|
|
527
526
|
position: absolute;
|
|
527
|
+
right: 50%;
|
|
528
528
|
top: 0;
|
|
529
529
|
transform: translate(-50%, -50%);
|
|
530
530
|
}
|
|
@@ -539,8 +539,8 @@
|
|
|
539
539
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
540
540
|
background-color: #400074;
|
|
541
541
|
cursor: ns-resize;
|
|
542
|
-
left: 50%;
|
|
543
542
|
position: absolute;
|
|
543
|
+
right: 50%;
|
|
544
544
|
top: 100%;
|
|
545
545
|
transform: translate(-50%, -50%);
|
|
546
546
|
}
|
|
@@ -1131,18 +1131,18 @@
|
|
|
1131
1131
|
direction: ltr;
|
|
1132
1132
|
text-align: left;
|
|
1133
1133
|
}
|
|
1134
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1134
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
1135
1135
|
padding-bottom: 0;
|
|
1136
1136
|
padding-left: 0;
|
|
1137
1137
|
padding-right: 0;
|
|
1138
1138
|
}
|
|
1139
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1139
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection {
|
|
1140
1140
|
padding-top: 18px;
|
|
1141
1141
|
}
|
|
1142
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1142
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-content .e-sort-listsection .e-input-group {
|
|
1143
1143
|
min-width: 220px;
|
|
1144
1144
|
}
|
|
1145
|
-
.e-spreadsheet .e-customsort-dlg
|
|
1145
|
+
.e-spreadsheet .e-customsort-dlg .e-footer-content .e-sort-addbtn {
|
|
1146
1146
|
float: left;
|
|
1147
1147
|
margin-left: 0;
|
|
1148
1148
|
}
|
|
@@ -1266,84 +1266,84 @@
|
|
|
1266
1266
|
font-size: 14px;
|
|
1267
1267
|
line-height: 28px;
|
|
1268
1268
|
}
|
|
1269
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1270
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1269
|
+
.e-spreadsheet .e-hyperlink-dlg,
|
|
1270
|
+
.e-spreadsheet .e-edithyperlink-dlg {
|
|
1271
1271
|
max-height: 640px !important;
|
|
1272
1272
|
}
|
|
1273
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1274
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1273
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content,
|
|
1274
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content {
|
|
1275
1275
|
padding: 24px 24px 16px;
|
|
1276
1276
|
}
|
|
1277
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1278
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1277
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-header-content .e-dlg-header,
|
|
1278
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-header-content .e-dlg-header {
|
|
1279
1279
|
font-size: 18px;
|
|
1280
1280
|
line-height: 21px;
|
|
1281
1281
|
}
|
|
1282
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1283
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1282
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content,
|
|
1283
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content {
|
|
1284
1284
|
padding-bottom: 0;
|
|
1285
1285
|
padding-left: 0;
|
|
1286
1286
|
padding-right: 0;
|
|
1287
1287
|
}
|
|
1288
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1289
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1288
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
1289
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
1290
1290
|
padding: 0 24px 0 25px;
|
|
1291
1291
|
}
|
|
1292
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1293
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1292
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
1293
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items {
|
|
1294
1294
|
height: 100%;
|
|
1295
1295
|
}
|
|
1296
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1297
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1296
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item,
|
|
1297
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item {
|
|
1298
1298
|
text-align: center;
|
|
1299
1299
|
width: 136px;
|
|
1300
1300
|
}
|
|
1301
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1302
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1301
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text,
|
|
1302
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-item .e-tab-text {
|
|
1303
1303
|
font-size: 13px;
|
|
1304
1304
|
line-height: 15px;
|
|
1305
1305
|
}
|
|
1306
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1307
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1306
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
1307
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
1308
1308
|
padding-top: 24px;
|
|
1309
1309
|
}
|
|
1310
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1311
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1310
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
1311
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
1312
1312
|
margin: 0 0 15.5px 24px;
|
|
1313
1313
|
}
|
|
1314
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1315
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1314
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
1315
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header {
|
|
1316
1316
|
font-size: 14px;
|
|
1317
1317
|
line-height: 16px;
|
|
1318
1318
|
}
|
|
1319
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1320
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1319
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text,
|
|
1320
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text {
|
|
1321
1321
|
margin-top: 8px;
|
|
1322
1322
|
font-size: 14px;
|
|
1323
1323
|
height: 32px;
|
|
1324
1324
|
line-height: 16px;
|
|
1325
1325
|
width: 275px;
|
|
1326
1326
|
}
|
|
1327
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1328
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1327
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled,
|
|
1328
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-text.e-disabled {
|
|
1329
1329
|
border-bottom-width: 2px;
|
|
1330
1330
|
}
|
|
1331
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1332
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1331
|
+
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont,
|
|
1332
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-refcont {
|
|
1333
1333
|
border: 1px solid #c8c8c8;
|
|
1334
1334
|
height: 165px;
|
|
1335
1335
|
margin: 8px 24px 0 0;
|
|
1336
1336
|
overflow: auto;
|
|
1337
1337
|
width: 273px;
|
|
1338
1338
|
}
|
|
1339
|
-
.e-spreadsheet .e-hyperlink-dlg
|
|
1340
|
-
.e-spreadsheet .e-edithyperlink-dlg
|
|
1339
|
+
.e-spreadsheet .e-hyperlink-dlg .e-footer-content,
|
|
1340
|
+
.e-spreadsheet .e-edithyperlink-dlg .e-footer-content {
|
|
1341
1341
|
margin: 4px 0;
|
|
1342
1342
|
}
|
|
1343
|
-
.e-spreadsheet .e-open-dlg
|
|
1343
|
+
.e-spreadsheet .e-open-dlg {
|
|
1344
1344
|
width: 340px;
|
|
1345
1345
|
}
|
|
1346
|
-
.e-spreadsheet .e-open-dlg
|
|
1346
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
1347
1347
|
color: #dd2c2c;
|
|
1348
1348
|
font-size: 12px;
|
|
1349
1349
|
padding-top: 7px;
|
|
@@ -1362,12 +1362,6 @@
|
|
|
1362
1362
|
font-size: 12px;
|
|
1363
1363
|
padding-top: 7px;
|
|
1364
1364
|
}
|
|
1365
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1366
|
-
padding-right: 12px;
|
|
1367
|
-
}
|
|
1368
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1369
|
-
padding: 12px 0;
|
|
1370
|
-
}
|
|
1371
1365
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1372
1366
|
margin: 0;
|
|
1373
1367
|
padding-bottom: 8px;
|
|
@@ -1376,62 +1370,62 @@
|
|
|
1376
1370
|
.e-spreadsheet .e-find-dlg .e-footer-content {
|
|
1377
1371
|
text-align: left;
|
|
1378
1372
|
}
|
|
1379
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1373
|
+
.e-spreadsheet .e-protectworkbook-dlg {
|
|
1380
1374
|
left: 0 !important;
|
|
1381
1375
|
}
|
|
1382
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1376
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1383
1377
|
font-size: 18px;
|
|
1384
1378
|
line-height: 31px;
|
|
1385
1379
|
}
|
|
1386
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1380
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
1387
1381
|
color: #dd2c2c;
|
|
1388
1382
|
font-size: 12px;
|
|
1389
1383
|
padding-top: 12px;
|
|
1390
1384
|
}
|
|
1391
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1385
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
1392
1386
|
padding-top: 12px;
|
|
1393
1387
|
}
|
|
1394
|
-
.e-spreadsheet .e-protectworkbook-dlg
|
|
1388
|
+
.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
1395
1389
|
font-size: 12px;
|
|
1396
1390
|
line-height: 24px;
|
|
1397
1391
|
margin-bottom: 4px;
|
|
1398
1392
|
}
|
|
1399
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1393
|
+
.e-spreadsheet .e-unprotectworkbook-dlg {
|
|
1400
1394
|
left: 0 !important;
|
|
1401
1395
|
}
|
|
1402
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1396
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1403
1397
|
font-size: 18px;
|
|
1404
1398
|
line-height: 21px;
|
|
1405
1399
|
}
|
|
1406
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1400
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-alert-span {
|
|
1407
1401
|
color: #dd2c2c;
|
|
1408
1402
|
font-size: 12px;
|
|
1409
1403
|
padding-top: 7px;
|
|
1410
1404
|
}
|
|
1411
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1405
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-header {
|
|
1412
1406
|
font-size: 14px;
|
|
1413
1407
|
line-height: 16px;
|
|
1414
1408
|
}
|
|
1415
|
-
.e-spreadsheet .e-unprotectworkbook-dlg
|
|
1409
|
+
.e-spreadsheet .e-unprotectworkbook-dlg .e-dlg-content .e-unprotectpwd-content .e-input {
|
|
1416
1410
|
margin-top: 10px;
|
|
1417
1411
|
}
|
|
1418
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1412
|
+
.e-spreadsheet .e-importprotectworkbook-dlg {
|
|
1419
1413
|
left: 0 !important;
|
|
1420
1414
|
}
|
|
1421
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1415
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-header-content .e-dlg-header {
|
|
1422
1416
|
font-size: 18px;
|
|
1423
1417
|
line-height: 21px;
|
|
1424
1418
|
}
|
|
1425
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1419
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-alert-span {
|
|
1426
1420
|
color: #dd2c2c;
|
|
1427
1421
|
font-size: 12px;
|
|
1428
1422
|
padding-top: 7px;
|
|
1429
1423
|
}
|
|
1430
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1424
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-header {
|
|
1431
1425
|
font-size: 14px;
|
|
1432
1426
|
line-height: 16px;
|
|
1433
1427
|
}
|
|
1434
|
-
.e-spreadsheet .e-importprotectworkbook-dlg
|
|
1428
|
+
.e-spreadsheet .e-importprotectworkbook-dlg .e-dlg-content .e-importprotectpwd-content .e-input {
|
|
1435
1429
|
margin-top: 10px;
|
|
1436
1430
|
}
|
|
1437
1431
|
.e-spreadsheet .e-filter-icon {
|
|
@@ -1447,7 +1441,7 @@
|
|
|
1447
1441
|
height: 18px;
|
|
1448
1442
|
margin-right: -1px;
|
|
1449
1443
|
padding: 0;
|
|
1450
|
-
position:
|
|
1444
|
+
position: relative;
|
|
1451
1445
|
right: 0;
|
|
1452
1446
|
width: 20px;
|
|
1453
1447
|
z-index: 2;
|
|
@@ -1473,9 +1467,6 @@
|
|
|
1473
1467
|
cursor: row-resize;
|
|
1474
1468
|
}
|
|
1475
1469
|
|
|
1476
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
1477
|
-
max-width: initial;
|
|
1478
|
-
}
|
|
1479
1470
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
1480
1471
|
font-size: 13px;
|
|
1481
1472
|
max-width: 200px;
|
|
@@ -1527,36 +1518,33 @@
|
|
|
1527
1518
|
font-family: "Calibri";
|
|
1528
1519
|
}
|
|
1529
1520
|
.e-dropdown-popup.e-font-family ul .e-item:nth-child(7) {
|
|
1530
|
-
font-family: "Comic Sans MS";
|
|
1531
|
-
}
|
|
1532
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1533
1521
|
font-family: "Courier";
|
|
1534
1522
|
}
|
|
1535
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1523
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(8) {
|
|
1536
1524
|
font-family: "Courier New";
|
|
1537
1525
|
}
|
|
1538
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1526
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(9) {
|
|
1539
1527
|
font-family: "Din Condensed";
|
|
1540
1528
|
}
|
|
1541
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1529
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(10) {
|
|
1542
1530
|
font-family: "Georgia";
|
|
1543
1531
|
}
|
|
1544
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1532
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(11) {
|
|
1545
1533
|
font-family: "Helvetica";
|
|
1546
1534
|
}
|
|
1547
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1535
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(12) {
|
|
1548
1536
|
font-family: "Helvetica New";
|
|
1549
1537
|
}
|
|
1550
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1538
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(13) {
|
|
1551
1539
|
font-family: "Roboto";
|
|
1552
1540
|
}
|
|
1553
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1541
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(14) {
|
|
1554
1542
|
font-family: "Tahoma";
|
|
1555
1543
|
}
|
|
1556
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1544
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(15) {
|
|
1557
1545
|
font-family: "Times New Roman";
|
|
1558
1546
|
}
|
|
1559
|
-
.e-dropdown-popup.e-font-family ul .e-item:nth-child(
|
|
1547
|
+
.e-dropdown-popup.e-font-family ul .e-item:nth-child(16) {
|
|
1560
1548
|
font-family: "Verdana";
|
|
1561
1549
|
}
|
|
1562
1550
|
.e-dropdown-popup.e-aggregate-list {
|
|
@@ -1828,50 +1816,46 @@
|
|
|
1828
1816
|
width: 100%;
|
|
1829
1817
|
}
|
|
1830
1818
|
|
|
1831
|
-
.e-spreadsheet-function-dlg
|
|
1819
|
+
.e-spreadsheet-function-dlg {
|
|
1832
1820
|
min-height: 510px;
|
|
1833
1821
|
-webkit-user-select: none;
|
|
1834
1822
|
-ms-user-select: none;
|
|
1835
1823
|
user-select: none;
|
|
1836
1824
|
}
|
|
1837
|
-
.e-spreadsheet-function-dlg
|
|
1825
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
1838
1826
|
padding: 18px;
|
|
1839
1827
|
}
|
|
1840
|
-
.e-spreadsheet-function-dlg
|
|
1828
|
+
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
|
1841
1829
|
font-size: 16px;
|
|
1842
1830
|
font-weight: 400;
|
|
1843
1831
|
}
|
|
1844
|
-
.e-spreadsheet-function-dlg
|
|
1832
|
+
.e-spreadsheet-function-dlg .e-dlg-content {
|
|
1845
1833
|
overflow: hidden;
|
|
1846
1834
|
padding-left: 18px;
|
|
1847
1835
|
padding-right: 18px;
|
|
1848
1836
|
}
|
|
1849
|
-
.e-spreadsheet-function-dlg
|
|
1837
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-category-content {
|
|
1850
1838
|
font-size: 12px;
|
|
1851
1839
|
font-weight: 500;
|
|
1852
1840
|
margin-bottom: 5px;
|
|
1853
1841
|
}
|
|
1854
|
-
.e-spreadsheet-function-dlg
|
|
1842
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-description {
|
|
1855
1843
|
margin-left: -4px;
|
|
1856
1844
|
margin-top: 5px;
|
|
1857
1845
|
padding: 4px;
|
|
1858
1846
|
}
|
|
1859
|
-
.e-spreadsheet-function-dlg
|
|
1847
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-description-content {
|
|
1860
1848
|
font-size: 14px;
|
|
1861
1849
|
font-weight: 500;
|
|
1862
1850
|
padding-top: 10px;
|
|
1863
1851
|
}
|
|
1864
|
-
.e-spreadsheet-function-dlg
|
|
1852
|
+
.e-spreadsheet-function-dlg .e-dlg-content .e-formula-list {
|
|
1865
1853
|
border: none;
|
|
1866
1854
|
cursor: default;
|
|
1867
1855
|
margin-top: 6px;
|
|
1868
1856
|
overflow-y: auto;
|
|
1869
1857
|
}
|
|
1870
1858
|
|
|
1871
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
1872
|
-
width: auto;
|
|
1873
|
-
}
|
|
1874
|
-
|
|
1875
1859
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
1876
1860
|
line-height: 25px;
|
|
1877
1861
|
min-height: 25px;
|
|
@@ -1966,11 +1950,6 @@
|
|
|
1966
1950
|
height: auto;
|
|
1967
1951
|
width: auto;
|
|
1968
1952
|
}
|
|
1969
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
1970
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
1971
|
-
height: auto;
|
|
1972
|
-
overflow: hidden;
|
|
1973
|
-
}
|
|
1974
1953
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
1975
1954
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
1976
1955
|
font-size: 20px;
|
|
@@ -2072,8 +2051,8 @@
|
|
|
2072
2051
|
margin-right: 2.8%;
|
|
2073
2052
|
width: 77%;
|
|
2074
2053
|
}
|
|
2075
|
-
.e-bigger .e-spreadsheet .e-customsort-dlg
|
|
2076
|
-
.e-bigger.e-spreadsheet .e-customsort-dlg
|
|
2054
|
+
.e-bigger .e-spreadsheet .e-customsort-dlg,
|
|
2055
|
+
.e-bigger.e-spreadsheet .e-customsort-dlg {
|
|
2077
2056
|
width: 590px !important;
|
|
2078
2057
|
}
|
|
2079
2058
|
.e-bigger .e-spreadsheet .e-sort-dialog .e-sort-template .e-list-item,
|
|
@@ -2103,18 +2082,18 @@
|
|
|
2103
2082
|
.e-bigger.e-spreadsheet .e-goto-dlg .e-btn {
|
|
2104
2083
|
font-size: 12px;
|
|
2105
2084
|
}
|
|
2106
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2107
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2085
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span,
|
|
2086
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-pwd-alert-span {
|
|
2108
2087
|
color: #dd2c2c;
|
|
2109
2088
|
font-size: 14px;
|
|
2110
2089
|
padding-top: 16px;
|
|
2111
2090
|
}
|
|
2112
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2113
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2091
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content,
|
|
2092
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content {
|
|
2114
2093
|
padding-top: 16px;
|
|
2115
2094
|
}
|
|
2116
|
-
.e-bigger .e-spreadsheet .e-protectworkbook-dlg
|
|
2117
|
-
.e-bigger.e-spreadsheet .e-protectworkbook-dlg
|
|
2095
|
+
.e-bigger .e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header,
|
|
2096
|
+
.e-bigger.e-spreadsheet .e-protectworkbook-dlg .e-dlg-content .e-password-content .e-header {
|
|
2118
2097
|
font-size: 14px;
|
|
2119
2098
|
line-height: 28px;
|
|
2120
2099
|
margin-bottom: 4px;
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import '../ribbon/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/highcontrast-light-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/highcontrast-light-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/highcontrast-light-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/highcontrast-light-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/highcontrast-light-definition.scss';
|
|
21
|
+
@import 'highcontrast-light-definition.scss';
|
|
22
|
+
@import 'all.scss';
|