@syncfusion/ej2-angular-spreadsheet 20.2.36-ngcc → 20.2.36
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 +0 -21
- package/styles/bootstrap.css +0 -21
- package/styles/bootstrap4.css +0 -21
- package/styles/bootstrap5-dark.css +0 -25
- package/styles/bootstrap5.css +0 -25
- package/styles/fabric-dark.css +0 -18
- package/styles/fabric.css +0 -18
- package/styles/fluent-dark.css +0 -21
- package/styles/fluent.css +0 -21
- package/styles/highcontrast-light.css +0 -18
- package/styles/highcontrast.css +0 -18
- package/styles/material-dark.css +0 -18
- package/styles/material.css +0 -18
- 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 +0 -21
- package/styles/spreadsheet/bootstrap-dark.scss +23 -1
- package/styles/spreadsheet/bootstrap.css +0 -21
- package/styles/spreadsheet/bootstrap.scss +23 -1
- package/styles/spreadsheet/bootstrap4.css +0 -21
- package/styles/spreadsheet/bootstrap4.scss +23 -1
- package/styles/spreadsheet/bootstrap5-dark.css +0 -25
- package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
- package/styles/spreadsheet/bootstrap5.css +0 -25
- package/styles/spreadsheet/bootstrap5.scss +23 -1
- package/styles/spreadsheet/fabric-dark.css +0 -18
- package/styles/spreadsheet/fabric-dark.scss +23 -1
- package/styles/spreadsheet/fabric.css +0 -18
- package/styles/spreadsheet/fabric.scss +23 -1
- package/styles/spreadsheet/fluent-dark.css +0 -21
- package/styles/spreadsheet/fluent-dark.scss +22 -1
- package/styles/spreadsheet/fluent.css +0 -21
- package/styles/spreadsheet/fluent.scss +23 -1
- package/styles/spreadsheet/highcontrast-light.css +0 -18
- package/styles/spreadsheet/highcontrast-light.scss +22 -1
- package/styles/spreadsheet/highcontrast.css +0 -18
- 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 +0 -18
- package/styles/spreadsheet/material-dark.scss +23 -1
- package/styles/spreadsheet/material.css +0 -18
- package/styles/spreadsheet/material.scss +23 -1
- package/styles/spreadsheet/tailwind-dark.css +0 -17
- package/styles/spreadsheet/tailwind-dark.scss +22 -1
- package/styles/spreadsheet/tailwind.css +0 -17
- package/styles/spreadsheet/tailwind.scss +23 -1
- package/styles/tailwind-dark.css +0 -17
- package/styles/tailwind.css +0 -17
- 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 -1148
- 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
|
@@ -1941,12 +1941,6 @@
|
|
|
1941
1941
|
font-size: 12px;
|
|
1942
1942
|
padding-top: 7px;
|
|
1943
1943
|
}
|
|
1944
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1945
|
-
padding-right: 12px;
|
|
1946
|
-
}
|
|
1947
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1948
|
-
padding: 12px 0;
|
|
1949
|
-
}
|
|
1950
1944
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1951
1945
|
margin: 0;
|
|
1952
1946
|
padding-bottom: 8px;
|
|
@@ -2052,9 +2046,6 @@
|
|
|
2052
2046
|
cursor: row-resize;
|
|
2053
2047
|
}
|
|
2054
2048
|
|
|
2055
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2056
|
-
max-width: initial;
|
|
2057
|
-
}
|
|
2058
2049
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2059
2050
|
font-size: 13px;
|
|
2060
2051
|
max-width: 200px;
|
|
@@ -2291,9 +2282,6 @@
|
|
|
2291
2282
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2292
2283
|
display: block;
|
|
2293
2284
|
}
|
|
2294
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2295
|
-
height: 35px;
|
|
2296
|
-
}
|
|
2297
2285
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2298
2286
|
min-width: 165px;
|
|
2299
2287
|
overflow: visible;
|
|
@@ -2447,10 +2435,6 @@
|
|
|
2447
2435
|
overflow-y: auto;
|
|
2448
2436
|
}
|
|
2449
2437
|
|
|
2450
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2451
|
-
width: auto;
|
|
2452
|
-
}
|
|
2453
|
-
|
|
2454
2438
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2455
2439
|
line-height: 25px;
|
|
2456
2440
|
min-height: 25px;
|
|
@@ -2545,11 +2529,6 @@
|
|
|
2545
2529
|
height: auto;
|
|
2546
2530
|
width: auto;
|
|
2547
2531
|
}
|
|
2548
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2549
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2550
|
-
height: auto;
|
|
2551
|
-
overflow: hidden;
|
|
2552
|
-
}
|
|
2553
2532
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2554
2533
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2555
2534
|
font-size: 20px;
|
|
@@ -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';
|
|
@@ -1966,12 +1966,6 @@
|
|
|
1966
1966
|
font-size: 12px;
|
|
1967
1967
|
padding-top: 7px;
|
|
1968
1968
|
}
|
|
1969
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1970
|
-
padding-right: 12px;
|
|
1971
|
-
}
|
|
1972
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1973
|
-
padding: 12px 0;
|
|
1974
|
-
}
|
|
1975
1969
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1976
1970
|
margin: 0;
|
|
1977
1971
|
padding-bottom: 8px;
|
|
@@ -2077,9 +2071,6 @@
|
|
|
2077
2071
|
cursor: row-resize;
|
|
2078
2072
|
}
|
|
2079
2073
|
|
|
2080
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2081
|
-
max-width: initial;
|
|
2082
|
-
}
|
|
2083
2074
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2084
2075
|
font-size: 13px;
|
|
2085
2076
|
max-width: 200px;
|
|
@@ -2316,9 +2307,6 @@
|
|
|
2316
2307
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2317
2308
|
display: block;
|
|
2318
2309
|
}
|
|
2319
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2320
|
-
height: 35px;
|
|
2321
|
-
}
|
|
2322
2310
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2323
2311
|
min-width: 165px;
|
|
2324
2312
|
overflow: visible;
|
|
@@ -2472,10 +2460,6 @@
|
|
|
2472
2460
|
overflow-y: auto;
|
|
2473
2461
|
}
|
|
2474
2462
|
|
|
2475
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2476
|
-
width: auto;
|
|
2477
|
-
}
|
|
2478
|
-
|
|
2479
2463
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2480
2464
|
line-height: 25px;
|
|
2481
2465
|
min-height: 25px;
|
|
@@ -2570,11 +2554,6 @@
|
|
|
2570
2554
|
height: auto;
|
|
2571
2555
|
width: auto;
|
|
2572
2556
|
}
|
|
2573
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2574
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2575
|
-
height: auto;
|
|
2576
|
-
overflow: hidden;
|
|
2577
|
-
}
|
|
2578
2557
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2579
2558
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2580
2559
|
font-size: 20px;
|
|
@@ -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';
|
|
@@ -2014,12 +2014,6 @@
|
|
|
2014
2014
|
font-size: 12px;
|
|
2015
2015
|
padding-top: 7px;
|
|
2016
2016
|
}
|
|
2017
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
2018
|
-
padding-right: 12px;
|
|
2019
|
-
}
|
|
2020
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2021
|
-
padding: 12px 0;
|
|
2022
|
-
}
|
|
2023
2017
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2024
2018
|
margin: 0;
|
|
2025
2019
|
padding-bottom: 8px;
|
|
@@ -2125,9 +2119,6 @@
|
|
|
2125
2119
|
cursor: row-resize;
|
|
2126
2120
|
}
|
|
2127
2121
|
|
|
2128
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2129
|
-
max-width: initial;
|
|
2130
|
-
}
|
|
2131
2122
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2132
2123
|
font-size: 13px;
|
|
2133
2124
|
max-width: 200px;
|
|
@@ -2364,9 +2355,6 @@
|
|
|
2364
2355
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2365
2356
|
display: block;
|
|
2366
2357
|
}
|
|
2367
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2368
|
-
height: 35px;
|
|
2369
|
-
}
|
|
2370
2358
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2371
2359
|
min-width: 165px;
|
|
2372
2360
|
overflow: visible;
|
|
@@ -2520,10 +2508,6 @@
|
|
|
2520
2508
|
overflow-y: auto;
|
|
2521
2509
|
}
|
|
2522
2510
|
|
|
2523
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2524
|
-
width: auto;
|
|
2525
|
-
}
|
|
2526
|
-
|
|
2527
2511
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2528
2512
|
line-height: 25px;
|
|
2529
2513
|
min-height: 25px;
|
|
@@ -2618,11 +2602,6 @@
|
|
|
2618
2602
|
height: auto;
|
|
2619
2603
|
width: auto;
|
|
2620
2604
|
}
|
|
2621
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2622
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2623
|
-
height: auto;
|
|
2624
|
-
overflow: hidden;
|
|
2625
|
-
}
|
|
2626
2605
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2627
2606
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2628
2607
|
font-size: 20px;
|
|
@@ -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';
|
|
@@ -1995,12 +1995,6 @@
|
|
|
1995
1995
|
font-size: 12px;
|
|
1996
1996
|
padding-top: 7px;
|
|
1997
1997
|
}
|
|
1998
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1999
|
-
padding-right: 12px;
|
|
2000
|
-
}
|
|
2001
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2002
|
-
padding: 12px 0;
|
|
2003
|
-
}
|
|
2004
1998
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2005
1999
|
margin: 0;
|
|
2006
2000
|
padding-bottom: 8px;
|
|
@@ -2106,9 +2100,6 @@
|
|
|
2106
2100
|
cursor: row-resize;
|
|
2107
2101
|
}
|
|
2108
2102
|
|
|
2109
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2110
|
-
max-width: initial;
|
|
2111
|
-
}
|
|
2112
2103
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2113
2104
|
font-size: 13px;
|
|
2114
2105
|
max-width: 200px;
|
|
@@ -2345,9 +2336,6 @@
|
|
|
2345
2336
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2346
2337
|
display: block;
|
|
2347
2338
|
}
|
|
2348
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2349
|
-
height: 35px;
|
|
2350
|
-
}
|
|
2351
2339
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2352
2340
|
min-width: 165px;
|
|
2353
2341
|
overflow: visible;
|
|
@@ -2501,10 +2489,6 @@
|
|
|
2501
2489
|
overflow-y: auto;
|
|
2502
2490
|
}
|
|
2503
2491
|
|
|
2504
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2505
|
-
width: auto;
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
2492
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2509
2493
|
line-height: 25px;
|
|
2510
2494
|
min-height: 25px;
|
|
@@ -2599,11 +2583,6 @@
|
|
|
2599
2583
|
height: auto;
|
|
2600
2584
|
width: auto;
|
|
2601
2585
|
}
|
|
2602
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2603
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2604
|
-
height: auto;
|
|
2605
|
-
overflow: hidden;
|
|
2606
|
-
}
|
|
2607
2586
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2608
2587
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2609
2588
|
font-size: 20px;
|
|
@@ -2960,7 +2939,6 @@
|
|
|
2960
2939
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn:not(:focus):not(.e-tbar-btn).e-active {
|
|
2961
2940
|
background: #5c636a;
|
|
2962
2941
|
border-color: transparent;
|
|
2963
|
-
color: #fff;
|
|
2964
2942
|
}
|
|
2965
2943
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus {
|
|
2966
2944
|
color: #fff;
|
|
@@ -2968,9 +2946,6 @@
|
|
|
2968
2946
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active.e-dropdown-btn .e-tbar-btn-text, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus.e-dropdown-btn .e-tbar-btn-text {
|
|
2969
2947
|
color: inherit;
|
|
2970
2948
|
}
|
|
2971
|
-
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-split-colorpicker {
|
|
2972
|
-
color: #fff;
|
|
2973
|
-
}
|
|
2974
2949
|
.e-spreadsheet .e-formula-bar-panel {
|
|
2975
2950
|
background-color: #212529;
|
|
2976
2951
|
}
|
|
@@ -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';
|
|
@@ -1995,12 +1995,6 @@
|
|
|
1995
1995
|
font-size: 12px;
|
|
1996
1996
|
padding-top: 7px;
|
|
1997
1997
|
}
|
|
1998
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1999
|
-
padding-right: 12px;
|
|
2000
|
-
}
|
|
2001
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
2002
|
-
padding: 12px 0;
|
|
2003
|
-
}
|
|
2004
1998
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
2005
1999
|
margin: 0;
|
|
2006
2000
|
padding-bottom: 8px;
|
|
@@ -2106,9 +2100,6 @@
|
|
|
2106
2100
|
cursor: row-resize;
|
|
2107
2101
|
}
|
|
2108
2102
|
|
|
2109
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2110
|
-
max-width: initial;
|
|
2111
|
-
}
|
|
2112
2103
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2113
2104
|
font-size: 13px;
|
|
2114
2105
|
max-width: 200px;
|
|
@@ -2345,9 +2336,6 @@
|
|
|
2345
2336
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2346
2337
|
display: block;
|
|
2347
2338
|
}
|
|
2348
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2349
|
-
height: 35px;
|
|
2350
|
-
}
|
|
2351
2339
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2352
2340
|
min-width: 165px;
|
|
2353
2341
|
overflow: visible;
|
|
@@ -2501,10 +2489,6 @@
|
|
|
2501
2489
|
overflow-y: auto;
|
|
2502
2490
|
}
|
|
2503
2491
|
|
|
2504
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2505
|
-
width: auto;
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
2492
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2509
2493
|
line-height: 25px;
|
|
2510
2494
|
min-height: 25px;
|
|
@@ -2599,11 +2583,6 @@
|
|
|
2599
2583
|
height: auto;
|
|
2600
2584
|
width: auto;
|
|
2601
2585
|
}
|
|
2602
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2603
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2604
|
-
height: auto;
|
|
2605
|
-
overflow: hidden;
|
|
2606
|
-
}
|
|
2607
2586
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2608
2587
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2609
2588
|
font-size: 20px;
|
|
@@ -2960,7 +2939,6 @@
|
|
|
2960
2939
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn:not(:focus):not(.e-tbar-btn).e-active {
|
|
2961
2940
|
background: #5c636a;
|
|
2962
2941
|
border-color: transparent;
|
|
2963
|
-
color: #fff;
|
|
2964
2942
|
}
|
|
2965
2943
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus {
|
|
2966
2944
|
color: #fff;
|
|
@@ -2968,9 +2946,6 @@
|
|
|
2968
2946
|
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-active.e-dropdown-btn .e-tbar-btn-text, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus .e-icons, .e-spreadsheet .e-ribbon .e-toolbar .e-btn:focus.e-dropdown-btn .e-tbar-btn-text {
|
|
2969
2947
|
color: inherit;
|
|
2970
2948
|
}
|
|
2971
|
-
.e-spreadsheet .e-ribbon .e-toolbar .e-btn.e-split-colorpicker {
|
|
2972
|
-
color: #212529;
|
|
2973
|
-
}
|
|
2974
2949
|
.e-spreadsheet .e-formula-bar-panel {
|
|
2975
2950
|
background-color: #fff;
|
|
2976
2951
|
}
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import '../ribbon/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/bootstrap5-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/bootstrap5-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/bootstrap5-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/bootstrap5-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap5-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5-definition.scss';
|
|
21
|
+
@import 'bootstrap5-definition.scss';
|
|
22
|
+
@import 'icons/bootstrap5.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -1920,12 +1920,6 @@
|
|
|
1920
1920
|
font-size: 12px;
|
|
1921
1921
|
padding-top: 7px;
|
|
1922
1922
|
}
|
|
1923
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1924
|
-
padding-right: 12px;
|
|
1925
|
-
}
|
|
1926
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1927
|
-
padding: 12px 0;
|
|
1928
|
-
}
|
|
1929
1923
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1930
1924
|
margin: 0;
|
|
1931
1925
|
padding-bottom: 8px;
|
|
@@ -2031,9 +2025,6 @@
|
|
|
2031
2025
|
cursor: row-resize;
|
|
2032
2026
|
}
|
|
2033
2027
|
|
|
2034
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2035
|
-
max-width: initial;
|
|
2036
|
-
}
|
|
2037
2028
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2038
2029
|
font-size: 13px;
|
|
2039
2030
|
max-width: 200px;
|
|
@@ -2423,10 +2414,6 @@
|
|
|
2423
2414
|
overflow-y: auto;
|
|
2424
2415
|
}
|
|
2425
2416
|
|
|
2426
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2427
|
-
width: auto;
|
|
2428
|
-
}
|
|
2429
|
-
|
|
2430
2417
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2431
2418
|
line-height: 25px;
|
|
2432
2419
|
min-height: 25px;
|
|
@@ -2525,11 +2512,6 @@
|
|
|
2525
2512
|
height: auto;
|
|
2526
2513
|
width: auto;
|
|
2527
2514
|
}
|
|
2528
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2529
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2530
|
-
height: auto;
|
|
2531
|
-
overflow: hidden;
|
|
2532
|
-
}
|
|
2533
2515
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2534
2516
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2535
2517
|
font-size: 20px;
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import '../ribbon/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/fabric-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/fabric-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fabric-dark-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/fabric-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/fabric-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-dark-definition.scss';
|
|
21
|
+
@import 'fabric-dark-definition.scss';
|
|
22
|
+
@import 'icons/fabric-dark.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -1928,12 +1928,6 @@
|
|
|
1928
1928
|
font-size: 12px;
|
|
1929
1929
|
padding-top: 7px;
|
|
1930
1930
|
}
|
|
1931
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1932
|
-
padding-right: 12px;
|
|
1933
|
-
}
|
|
1934
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1935
|
-
padding: 12px 0;
|
|
1936
|
-
}
|
|
1937
1931
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1938
1932
|
margin: 0;
|
|
1939
1933
|
padding-bottom: 8px;
|
|
@@ -2039,9 +2033,6 @@
|
|
|
2039
2033
|
cursor: row-resize;
|
|
2040
2034
|
}
|
|
2041
2035
|
|
|
2042
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2043
|
-
max-width: initial;
|
|
2044
|
-
}
|
|
2045
2036
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2046
2037
|
font-size: 13px;
|
|
2047
2038
|
max-width: 200px;
|
|
@@ -2431,10 +2422,6 @@
|
|
|
2431
2422
|
overflow-y: auto;
|
|
2432
2423
|
}
|
|
2433
2424
|
|
|
2434
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2435
|
-
width: auto;
|
|
2436
|
-
}
|
|
2437
|
-
|
|
2438
2425
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2439
2426
|
line-height: 25px;
|
|
2440
2427
|
min-height: 25px;
|
|
@@ -2533,11 +2520,6 @@
|
|
|
2533
2520
|
height: auto;
|
|
2534
2521
|
width: auto;
|
|
2535
2522
|
}
|
|
2536
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2537
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2538
|
-
height: auto;
|
|
2539
|
-
overflow: hidden;
|
|
2540
|
-
}
|
|
2541
2523
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2542
2524
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2543
2525
|
font-size: 20px;
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import '../ribbon/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/check-box/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/switch/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/toolbar/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/tab/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/context-menu/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/menu/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-navigations/styles/treeview/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-grids/styles/excel-filter/fabric-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datepicker/fabric-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-definition.scss';
|
|
15
|
+
@import 'ej2-inputs/styles/color-picker/fabric-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fabric-definition.scss';
|
|
17
|
+
@import 'ej2-splitbuttons/styles/split-button/fabric-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/list-box/fabric-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
20
|
+
@import 'ej2-dropdowns/styles/combo-box/fabric-definition.scss';
|
|
21
|
+
@import 'fabric-definition.scss';
|
|
22
|
+
@import 'icons/fabric.scss';
|
|
23
|
+
@import 'all.scss';
|
|
@@ -1975,12 +1975,6 @@
|
|
|
1975
1975
|
font-size: 12px;
|
|
1976
1976
|
padding-top: 7px;
|
|
1977
1977
|
}
|
|
1978
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-casecheckbox {
|
|
1979
|
-
padding-right: 12px;
|
|
1980
|
-
}
|
|
1981
|
-
.e-spreadsheet .e-find-dlg .e-dlg-content .e-findnreplace-exactmatchcheckbox {
|
|
1982
|
-
padding: 12px 0;
|
|
1983
|
-
}
|
|
1984
1978
|
.e-spreadsheet .e-find-dlg p.e-header {
|
|
1985
1979
|
margin: 0;
|
|
1986
1980
|
padding-bottom: 8px;
|
|
@@ -2087,9 +2081,6 @@
|
|
|
2087
2081
|
cursor: row-resize;
|
|
2088
2082
|
}
|
|
2089
2083
|
|
|
2090
|
-
.e-dropdown-popup.e-numformat-ddb ul {
|
|
2091
|
-
max-width: initial;
|
|
2092
|
-
}
|
|
2093
2084
|
.e-dropdown-popup.e-numformat-ddb ul .e-numformat-preview-text {
|
|
2094
2085
|
font-size: 13px;
|
|
2095
2086
|
max-width: 200px;
|
|
@@ -2326,9 +2317,6 @@
|
|
|
2326
2317
|
.e-menu-wrapper.e-popup.e-menu-popup.e-border-color ul .e-menu-item .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
|
|
2327
2318
|
display: block;
|
|
2328
2319
|
}
|
|
2329
|
-
.e-menu-wrapper.e-popup.e-menu-popup.e-addchart-menu ul .e-menu-item {
|
|
2330
|
-
height: 35px;
|
|
2331
|
-
}
|
|
2332
2320
|
.e-menu-wrapper.e-popup.e-menu-popup.e-chart-menu ul, .e-menu-wrapper.e-popup.e-menu-popup.e-chart-type-menu ul {
|
|
2333
2321
|
min-width: 165px;
|
|
2334
2322
|
overflow: visible;
|
|
@@ -2482,10 +2470,6 @@
|
|
|
2482
2470
|
overflow-y: auto;
|
|
2483
2471
|
}
|
|
2484
2472
|
|
|
2485
|
-
.e-xlflmenu .e-xlfl-maindiv .e-xlfl-radiodiv {
|
|
2486
|
-
width: auto;
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
2473
|
.e-name-box .e-dropdownbase .e-list-item {
|
|
2490
2474
|
line-height: 25px;
|
|
2491
2475
|
min-height: 25px;
|
|
@@ -2614,11 +2598,6 @@
|
|
|
2614
2598
|
height: auto;
|
|
2615
2599
|
width: auto;
|
|
2616
2600
|
}
|
|
2617
|
-
.e-bigger .e-spreadsheet .e-ribbon .e-content .e-hscroll-bar,
|
|
2618
|
-
.e-bigger.e-spreadsheet .e-ribbon .e-content .e-hscroll-bar {
|
|
2619
|
-
height: auto;
|
|
2620
|
-
overflow: hidden;
|
|
2621
|
-
}
|
|
2622
2601
|
.e-bigger .e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon,
|
|
2623
2602
|
.e-bigger.e-spreadsheet .e-formula-bar-panel .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
|
|
2624
2603
|
font-size: 20px;
|
|
@@ -1 +1,22 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/check-box/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/switch/fluent-dark-definition.scss';
|
|
6
|
+
@import 'ej2-navigations/styles/toolbar/fluent-dark-definition.scss';
|
|
7
|
+
@import 'ej2-navigations/styles/tab/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/context-menu/fluent-dark-definition.scss';
|
|
9
|
+
@import 'ej2-navigations/styles/menu/fluent-dark-definition.scss';
|
|
10
|
+
@import 'ej2-navigations/styles/treeview/fluent-dark-definition.scss';
|
|
11
|
+
@import 'ej2-grids/styles/excel-filter/fluent-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datepicker/fluent-dark-definition.scss';
|
|
13
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-dark-definition.scss';
|
|
14
|
+
@import 'ej2-inputs/styles/color-picker/fluent-dark-definition.scss';
|
|
15
|
+
@import 'ej2-splitbuttons/styles/drop-down-button/fluent-dark-definition.scss';
|
|
16
|
+
@import 'ej2-splitbuttons/styles/split-button/fluent-dark-definition.scss';
|
|
17
|
+
@import 'ej2-dropdowns/styles/list-box/fluent-dark-definition.scss';
|
|
18
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
|
|
19
|
+
@import 'ej2-dropdowns/styles/combo-box/fluent-dark-definition.scss';
|
|
20
|
+
@import 'fluent-dark-definition.scss';
|
|
21
|
+
@import 'icons/fluent-dark.scss';
|
|
22
|
+
@import 'all.scss';
|