@syncfusion/ej2-angular-grids 20.3.57-ngcc → 20.3.57
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/grid/aggregate-columns.directive.mjs +84 -0
- package/esm2020/src/grid/aggregates.directive.mjs +69 -0
- package/esm2020/src/grid/columns.directive.mjs +100 -0
- package/esm2020/src/grid/grid-all.module.mjs +98 -0
- package/esm2020/src/grid/grid.component.mjs +274 -0
- package/esm2020/src/grid/grid.module.mjs +61 -0
- package/esm2020/src/grid/stacked-column.directive.mjs +100 -0
- package/esm2020/src/index.mjs +12 -0
- package/esm2020/src/pager/pager-all.module.mjs +23 -0
- package/esm2020/src/pager/pager.component.mjs +66 -0
- package/esm2020/src/pager/pager.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-grids.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-grids.mjs +859 -0
- package/fesm2015/syncfusion-ej2-angular-grids.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-grids.mjs +859 -0
- package/fesm2020/syncfusion-ej2-angular-grids.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/grid/aggregate-columns.directive.d.ts +5 -0
- package/src/grid/aggregates.directive.d.ts +5 -0
- package/src/grid/columns.directive.d.ts +5 -0
- package/src/grid/grid-all.module.d.ts +6 -0
- package/src/grid/grid.component.d.ts +3 -0
- package/src/grid/grid.module.d.ts +10 -0
- package/src/grid/stacked-column.directive.d.ts +5 -0
- package/src/pager/pager-all.module.d.ts +6 -0
- package/src/pager/pager.component.d.ts +3 -0
- package/src/pager/pager.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +12 -23
- package/styles/bootstrap.css +12 -23
- package/styles/bootstrap4.css +12 -23
- package/styles/bootstrap5-dark.css +12 -23
- package/styles/bootstrap5.css +12 -23
- package/styles/excel-filter/_all.scss +2 -0
- package/styles/excel-filter/_bootstrap-dark-definition.scss +59 -0
- package/styles/excel-filter/_bootstrap-definition.scss +64 -0
- package/styles/excel-filter/_bootstrap4-definition.scss +69 -0
- package/styles/excel-filter/_bootstrap5-dark-definition.scss +1 -0
- package/styles/excel-filter/_bootstrap5-definition.scss +70 -0
- package/styles/excel-filter/_fabric-dark-definition.scss +59 -0
- package/styles/excel-filter/_fabric-definition.scss +64 -0
- package/styles/excel-filter/_fluent-dark-definition.scss +1 -0
- package/styles/excel-filter/_fluent-definition.scss +70 -0
- package/styles/excel-filter/_fusionnew-definition.scss +70 -0
- package/styles/excel-filter/_highcontrast-definition.scss +59 -0
- package/styles/excel-filter/_highcontrast-light-definition.scss +57 -0
- package/styles/excel-filter/_layout.scss +417 -0
- package/styles/excel-filter/_material-dark-definition.scss +61 -0
- package/styles/excel-filter/_material-definition.scss +62 -0
- package/styles/excel-filter/_material3-definition.scss +70 -0
- package/styles/excel-filter/_office-365-definition.scss +1 -0
- package/styles/excel-filter/_tailwind-dark-definition.scss +1 -0
- package/styles/excel-filter/_tailwind-definition.scss +69 -0
- package/styles/excel-filter/_theme.scss +28 -0
- package/styles/excel-filter/bootstrap-dark.css +1 -2
- package/styles/excel-filter/bootstrap-dark.scss +17 -1
- package/styles/excel-filter/bootstrap.css +1 -2
- package/styles/excel-filter/bootstrap.scss +17 -1
- package/styles/excel-filter/bootstrap4.css +1 -2
- package/styles/excel-filter/bootstrap4.scss +17 -1
- package/styles/excel-filter/bootstrap5-dark.css +1 -2
- package/styles/excel-filter/bootstrap5-dark.scss +17 -1
- package/styles/excel-filter/bootstrap5.css +1 -2
- package/styles/excel-filter/bootstrap5.scss +17 -1
- package/styles/excel-filter/fabric-dark.css +1 -2
- package/styles/excel-filter/fabric-dark.scss +17 -1
- package/styles/excel-filter/fabric.css +1 -2
- package/styles/excel-filter/fabric.scss +17 -1
- package/styles/excel-filter/fluent-dark.css +1 -2
- package/styles/excel-filter/fluent-dark.scss +17 -1
- package/styles/excel-filter/fluent.css +1 -2
- package/styles/excel-filter/fluent.scss +17 -1
- package/styles/excel-filter/highcontrast-light.css +1 -2
- package/styles/excel-filter/highcontrast-light.scss +17 -1
- package/styles/excel-filter/highcontrast.css +1 -2
- package/styles/excel-filter/highcontrast.scss +17 -1
- package/styles/excel-filter/icons/_bootstrap-dark.scss +38 -0
- package/styles/excel-filter/icons/_bootstrap.scss +38 -0
- package/styles/excel-filter/icons/_bootstrap4.scss +42 -0
- package/styles/excel-filter/icons/_bootstrap5-dark.scss +1 -0
- package/styles/excel-filter/icons/_bootstrap5.scss +42 -0
- package/styles/excel-filter/icons/_fabric-dark.scss +38 -0
- package/styles/excel-filter/icons/_fabric.scss +38 -0
- package/styles/excel-filter/icons/_fluent-dark.scss +1 -0
- package/styles/excel-filter/icons/_fluent.scss +42 -0
- package/styles/excel-filter/icons/_fusionnew.scss +42 -0
- package/styles/excel-filter/icons/_highcontrast-light.scss +38 -0
- package/styles/excel-filter/icons/_highcontrast.scss +38 -0
- package/styles/excel-filter/icons/_material-dark.scss +38 -0
- package/styles/excel-filter/icons/_material.scss +38 -0
- package/styles/excel-filter/icons/_material3.scss +42 -0
- package/styles/excel-filter/icons/_tailwind-dark.scss +1 -0
- package/styles/excel-filter/icons/_tailwind.scss +42 -0
- package/styles/excel-filter/material-dark.css +1 -2
- package/styles/excel-filter/material-dark.scss +17 -1
- package/styles/excel-filter/material.css +1 -2
- package/styles/excel-filter/material.scss +17 -1
- package/styles/excel-filter/tailwind-dark.css +1 -2
- package/styles/excel-filter/tailwind-dark.scss +17 -1
- package/styles/excel-filter/tailwind.css +1 -2
- package/styles/excel-filter/tailwind.scss +17 -1
- package/styles/fabric-dark.css +12 -23
- package/styles/fabric.css +12 -23
- package/styles/fluent-dark.css +12 -23
- package/styles/fluent.css +12 -23
- package/styles/grid/_all.scss +2 -0
- package/styles/grid/_bootstrap-dark-definition.scss +597 -0
- package/styles/grid/_bootstrap-definition.scss +599 -0
- package/styles/grid/_bootstrap4-definition.scss +603 -0
- package/styles/grid/_bootstrap5-dark-definition.scss +1 -0
- package/styles/grid/_bootstrap5-definition.scss +598 -0
- package/styles/grid/_fabric-dark-definition.scss +595 -0
- package/styles/grid/_fabric-definition.scss +595 -0
- package/styles/grid/_fluent-dark-definition.scss +1 -0
- package/styles/grid/_fluent-definition.scss +590 -0
- package/styles/grid/_fusionnew-definition.scss +575 -0
- package/styles/grid/_highcontrast-definition.scss +595 -0
- package/styles/grid/_highcontrast-light-definition.scss +591 -0
- package/styles/grid/_layout.scss +4352 -0
- package/styles/grid/_material-dark-definition.scss +595 -0
- package/styles/grid/_material-definition.scss +593 -0
- package/styles/grid/_material3-definition.scss +599 -0
- package/styles/grid/_office-365-definition.scss +1 -0
- package/styles/grid/_tailwind-dark-definition.scss +1 -0
- package/styles/grid/_tailwind-definition.scss +604 -0
- package/styles/grid/_theme.scss +603 -0
- package/styles/grid/bootstrap-dark.css +11 -21
- package/styles/grid/bootstrap-dark.scss +21 -1
- package/styles/grid/bootstrap.css +11 -21
- package/styles/grid/bootstrap.scss +21 -1
- package/styles/grid/bootstrap4.css +11 -21
- package/styles/grid/bootstrap4.scss +21 -1
- package/styles/grid/bootstrap5-dark.css +11 -21
- package/styles/grid/bootstrap5-dark.scss +21 -1
- package/styles/grid/bootstrap5.css +11 -21
- package/styles/grid/bootstrap5.scss +21 -1
- package/styles/grid/fabric-dark.css +11 -21
- package/styles/grid/fabric-dark.scss +21 -1
- package/styles/grid/fabric.css +11 -21
- package/styles/grid/fabric.scss +21 -1
- package/styles/grid/fluent-dark.css +11 -21
- package/styles/grid/fluent-dark.scss +21 -1
- package/styles/grid/fluent.css +11 -21
- package/styles/grid/fluent.scss +21 -1
- package/styles/grid/highcontrast-light.css +11 -21
- package/styles/grid/highcontrast-light.scss +21 -1
- package/styles/grid/highcontrast.css +11 -21
- package/styles/grid/highcontrast.scss +21 -1
- package/styles/grid/icons/_bootstrap-dark.scss +226 -0
- package/styles/grid/icons/_bootstrap.scss +226 -0
- package/styles/grid/icons/_bootstrap4.scss +225 -0
- package/styles/grid/icons/_bootstrap5-dark.scss +1 -0
- package/styles/grid/icons/_bootstrap5.scss +246 -0
- package/styles/grid/icons/_fabric-dark.scss +225 -0
- package/styles/grid/icons/_fabric.scss +225 -0
- package/styles/grid/icons/_fluent-dark.scss +1 -0
- package/styles/grid/icons/_fluent.scss +246 -0
- package/styles/grid/icons/_fusionnew.scss +246 -0
- package/styles/grid/icons/_highcontrast-light.scss +225 -0
- package/styles/grid/icons/_highcontrast.scss +225 -0
- package/styles/grid/icons/_material-dark.scss +225 -0
- package/styles/grid/icons/_material.scss +225 -0
- package/styles/grid/icons/_material3.scss +246 -0
- package/styles/grid/icons/_tailwind-dark.scss +1 -0
- package/styles/grid/icons/_tailwind.scss +246 -0
- package/styles/grid/material-dark.css +11 -21
- package/styles/grid/material-dark.scss +21 -1
- package/styles/grid/material.css +11 -21
- package/styles/grid/material.scss +21 -1
- package/styles/grid/tailwind-dark.css +11 -21
- package/styles/grid/tailwind-dark.scss +21 -1
- package/styles/grid/tailwind.css +11 -21
- package/styles/grid/tailwind.scss +21 -1
- package/styles/highcontrast-light.css +12 -23
- package/styles/highcontrast.css +12 -23
- package/styles/material-dark.css +12 -23
- package/styles/material.css +12 -23
- package/styles/tailwind-dark.css +12 -23
- package/styles/tailwind.css +12 -23
- package/syncfusion-ej2-angular-grids.d.ts +5 -0
- package/@syncfusion/ej2-angular-grids.es5.js +0 -988
- package/@syncfusion/ej2-angular-grids.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-grids.js +0 -927
- package/@syncfusion/ej2-angular-grids.js.map +0 -1
- package/CHANGELOG.md +0 -2729
- package/dist/ej2-angular-grids.umd.js +0 -1600
- package/dist/ej2-angular-grids.umd.js.map +0 -1
- package/dist/ej2-angular-grids.umd.min.js +0 -11
- package/dist/ej2-angular-grids.umd.min.js.map +0 -1
- package/ej2-angular-grids.d.ts +0 -6
- package/ej2-angular-grids.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -1631,7 +1631,7 @@
|
|
|
1631
1631
|
text-overflow: ellipsis;
|
|
1632
1632
|
white-space: nowrap;
|
|
1633
1633
|
}
|
|
1634
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1634
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1635
1635
|
text-overflow: clip;
|
|
1636
1636
|
}
|
|
1637
1637
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1923,8 +1923,7 @@
|
|
|
1923
1923
|
padding-left: 8px;
|
|
1924
1924
|
}
|
|
1925
1925
|
.e-grid .e-chk-hidden {
|
|
1926
|
-
-moz-appearance: none;
|
|
1927
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1926
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1928
1927
|
height: 1px;
|
|
1929
1928
|
opacity: 0;
|
|
1930
1929
|
width: 1px;
|
|
@@ -1938,8 +1937,7 @@
|
|
|
1938
1937
|
}
|
|
1939
1938
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
1940
1939
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
1941
|
-
-webkit-user-select: auto;
|
|
1942
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1940
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1943
1941
|
height: 20px;
|
|
1944
1942
|
line-height: 20px;
|
|
1945
1943
|
position: relative;
|
|
@@ -2135,8 +2133,7 @@
|
|
|
2135
2133
|
padding: 2px;
|
|
2136
2134
|
}
|
|
2137
2135
|
.e-grid .e-content {
|
|
2138
|
-
-webkit-overflow-scrolling: touch;
|
|
2139
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2136
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2140
2137
|
overflow-x: auto;
|
|
2141
2138
|
overflow-y: scroll;
|
|
2142
2139
|
position: relative;
|
|
@@ -2551,12 +2548,10 @@
|
|
|
2551
2548
|
overflow: hidden;
|
|
2552
2549
|
}
|
|
2553
2550
|
.e-grid .e-frozenhdrcont {
|
|
2554
|
-
-ms-touch-action: none;
|
|
2555
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2551
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2556
2552
|
}
|
|
2557
2553
|
.e-grid .e-frozencontent {
|
|
2558
|
-
-ms-touch-action: none;
|
|
2559
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2554
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2560
2555
|
border-bottom-width: 1px;
|
|
2561
2556
|
float: left;
|
|
2562
2557
|
width: min-content;
|
|
@@ -2565,23 +2560,19 @@
|
|
|
2565
2560
|
float: right;
|
|
2566
2561
|
}
|
|
2567
2562
|
.e-grid .e-movablecontent {
|
|
2568
|
-
-ms-overflow-style: none;
|
|
2569
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2563
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2570
2564
|
-ms-flex: 1;
|
|
2571
2565
|
flex: 1;
|
|
2572
2566
|
overflow-x: auto;
|
|
2573
2567
|
overflow-y: hidden;
|
|
2574
2568
|
}
|
|
2575
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2576
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2569
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2577
2570
|
display: none;
|
|
2578
2571
|
}
|
|
2579
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2580
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2572
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2581
2573
|
width: 7px;
|
|
2582
2574
|
}
|
|
2583
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2584
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2575
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2585
2576
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2586
2577
|
border-radius: 4px;
|
|
2587
2578
|
}
|
|
@@ -3598,8 +3589,7 @@
|
|
|
3598
3589
|
}
|
|
3599
3590
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3600
3591
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3601
|
-
-moz-appearance: none;
|
|
3602
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3592
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3603
3593
|
height: 1px;
|
|
3604
3594
|
opacity: 0;
|
|
3605
3595
|
width: 1px;
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/pager/bootstrap-definition.scss';
|
|
3
|
+
@import '../excel-filter/bootstrap-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bootstrap-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/button/bootstrap-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/check-box/bootstrap-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/dialog/bootstrap-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
|
|
13
|
+
@import 'ej2-popups/styles/tooltip/bootstrap-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap-definition.scss';
|
|
16
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap-definition.scss';
|
|
17
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap-definition.scss';
|
|
18
|
+
@import 'ej2-notifications/styles/skeleton/bootstrap-definition.scss';
|
|
19
|
+
@import 'bootstrap-definition.scss';
|
|
20
|
+
@import 'icons/bootstrap.scss';
|
|
21
|
+
@import 'all.scss';
|
|
@@ -1676,7 +1676,7 @@
|
|
|
1676
1676
|
text-overflow: ellipsis;
|
|
1677
1677
|
white-space: nowrap;
|
|
1678
1678
|
}
|
|
1679
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1679
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1680
1680
|
text-overflow: clip;
|
|
1681
1681
|
}
|
|
1682
1682
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1968,8 +1968,7 @@
|
|
|
1968
1968
|
padding-left: 8px;
|
|
1969
1969
|
}
|
|
1970
1970
|
.e-grid .e-chk-hidden {
|
|
1971
|
-
-moz-appearance: none;
|
|
1972
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1971
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1973
1972
|
height: 1px;
|
|
1974
1973
|
opacity: 0;
|
|
1975
1974
|
width: 1px;
|
|
@@ -1983,8 +1982,7 @@
|
|
|
1983
1982
|
}
|
|
1984
1983
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
1985
1984
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
1986
|
-
-webkit-user-select: auto;
|
|
1987
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1985
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1988
1986
|
height: 20px;
|
|
1989
1987
|
line-height: 20px;
|
|
1990
1988
|
position: relative;
|
|
@@ -2180,8 +2178,7 @@
|
|
|
2180
2178
|
padding: 2px;
|
|
2181
2179
|
}
|
|
2182
2180
|
.e-grid .e-content {
|
|
2183
|
-
-webkit-overflow-scrolling: touch;
|
|
2184
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2181
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2185
2182
|
overflow-x: auto;
|
|
2186
2183
|
overflow-y: scroll;
|
|
2187
2184
|
position: relative;
|
|
@@ -2598,12 +2595,10 @@
|
|
|
2598
2595
|
overflow: hidden;
|
|
2599
2596
|
}
|
|
2600
2597
|
.e-grid .e-frozenhdrcont {
|
|
2601
|
-
-ms-touch-action: none;
|
|
2602
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2598
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2603
2599
|
}
|
|
2604
2600
|
.e-grid .e-frozencontent {
|
|
2605
|
-
-ms-touch-action: none;
|
|
2606
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2601
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2607
2602
|
border-bottom-width: 1px;
|
|
2608
2603
|
float: left;
|
|
2609
2604
|
width: min-content;
|
|
@@ -2612,23 +2607,19 @@
|
|
|
2612
2607
|
float: right;
|
|
2613
2608
|
}
|
|
2614
2609
|
.e-grid .e-movablecontent {
|
|
2615
|
-
-ms-overflow-style: none;
|
|
2616
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2610
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2617
2611
|
-ms-flex: 1;
|
|
2618
2612
|
flex: 1;
|
|
2619
2613
|
overflow-x: auto;
|
|
2620
2614
|
overflow-y: hidden;
|
|
2621
2615
|
}
|
|
2622
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2623
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2616
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2624
2617
|
display: none;
|
|
2625
2618
|
}
|
|
2626
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2627
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2619
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2628
2620
|
width: 7px;
|
|
2629
2621
|
}
|
|
2630
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2631
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2622
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2632
2623
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2633
2624
|
border-radius: 4px;
|
|
2634
2625
|
}
|
|
@@ -3646,8 +3637,7 @@
|
|
|
3646
3637
|
}
|
|
3647
3638
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3648
3639
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3649
|
-
-moz-appearance: none;
|
|
3650
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3640
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3651
3641
|
height: 1px;
|
|
3652
3642
|
opacity: 0;
|
|
3653
3643
|
width: 1px;
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap4-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/pager/bootstrap4-definition.scss';
|
|
3
|
+
@import '../excel-filter/bootstrap4-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bootstrap4-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap4-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap4-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/check-box/bootstrap4-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap4-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap4-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/dialog/bootstrap4-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
|
|
13
|
+
@import 'ej2-popups/styles/tooltip/bootstrap4-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap4-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap4-definition.scss';
|
|
16
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap4-definition.scss';
|
|
17
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap4-definition.scss';
|
|
18
|
+
@import 'ej2-notifications/styles/skeleton/bootstrap4-definition.scss';
|
|
19
|
+
@import 'bootstrap4-definition.scss';
|
|
20
|
+
@import 'icons/bootstrap4.scss';
|
|
21
|
+
@import 'all.scss';
|
|
@@ -1691,7 +1691,7 @@
|
|
|
1691
1691
|
text-overflow: ellipsis;
|
|
1692
1692
|
white-space: nowrap;
|
|
1693
1693
|
}
|
|
1694
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1694
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1695
1695
|
text-overflow: clip;
|
|
1696
1696
|
}
|
|
1697
1697
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1983,8 +1983,7 @@
|
|
|
1983
1983
|
padding-left: 8px;
|
|
1984
1984
|
}
|
|
1985
1985
|
.e-grid .e-chk-hidden {
|
|
1986
|
-
-moz-appearance: none;
|
|
1987
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1986
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1988
1987
|
height: 1px;
|
|
1989
1988
|
opacity: 0;
|
|
1990
1989
|
width: 1px;
|
|
@@ -1998,8 +1997,7 @@
|
|
|
1998
1997
|
}
|
|
1999
1998
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2000
1999
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2001
|
-
-webkit-user-select: auto;
|
|
2002
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2000
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2003
2001
|
height: 20px;
|
|
2004
2002
|
line-height: 20px;
|
|
2005
2003
|
position: relative;
|
|
@@ -2195,8 +2193,7 @@
|
|
|
2195
2193
|
padding: 2px;
|
|
2196
2194
|
}
|
|
2197
2195
|
.e-grid .e-content {
|
|
2198
|
-
-webkit-overflow-scrolling: touch;
|
|
2199
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2196
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2200
2197
|
overflow-x: auto;
|
|
2201
2198
|
overflow-y: scroll;
|
|
2202
2199
|
position: relative;
|
|
@@ -2611,12 +2608,10 @@
|
|
|
2611
2608
|
overflow: hidden;
|
|
2612
2609
|
}
|
|
2613
2610
|
.e-grid .e-frozenhdrcont {
|
|
2614
|
-
-ms-touch-action: none;
|
|
2615
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2611
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2616
2612
|
}
|
|
2617
2613
|
.e-grid .e-frozencontent {
|
|
2618
|
-
-ms-touch-action: none;
|
|
2619
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2614
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2620
2615
|
border-bottom-width: 1px;
|
|
2621
2616
|
float: left;
|
|
2622
2617
|
width: min-content;
|
|
@@ -2625,23 +2620,19 @@
|
|
|
2625
2620
|
float: right;
|
|
2626
2621
|
}
|
|
2627
2622
|
.e-grid .e-movablecontent {
|
|
2628
|
-
-ms-overflow-style: none;
|
|
2629
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2623
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2630
2624
|
-ms-flex: 1;
|
|
2631
2625
|
flex: 1;
|
|
2632
2626
|
overflow-x: auto;
|
|
2633
2627
|
overflow-y: hidden;
|
|
2634
2628
|
}
|
|
2635
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2636
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2629
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2637
2630
|
display: none;
|
|
2638
2631
|
}
|
|
2639
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2640
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2632
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2641
2633
|
width: 7px;
|
|
2642
2634
|
}
|
|
2643
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2644
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2635
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2645
2636
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2646
2637
|
border-radius: 4px;
|
|
2647
2638
|
}
|
|
@@ -3668,8 +3659,7 @@
|
|
|
3668
3659
|
}
|
|
3669
3660
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3670
3661
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3671
|
-
-moz-appearance: none;
|
|
3672
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3662
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3673
3663
|
height: 1px;
|
|
3674
3664
|
opacity: 0;
|
|
3675
3665
|
width: 1px;
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-dark-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/pager/bootstrap5-dark-definition.scss';
|
|
3
|
+
@import '../excel-filter/bootstrap5-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bootstrap5-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap5-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
|
|
13
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-dark-definition.scss';
|
|
16
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-dark-definition.scss';
|
|
17
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-dark-definition.scss';
|
|
18
|
+
@import 'ej2-notifications/styles/skeleton/bootstrap5-dark-definition.scss';
|
|
19
|
+
@import 'bootstrap5-dark-definition.scss';
|
|
20
|
+
@import 'icons/bootstrap5-dark.scss';
|
|
21
|
+
@import 'all.scss';
|
|
@@ -1691,7 +1691,7 @@
|
|
|
1691
1691
|
text-overflow: ellipsis;
|
|
1692
1692
|
white-space: nowrap;
|
|
1693
1693
|
}
|
|
1694
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1694
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1695
1695
|
text-overflow: clip;
|
|
1696
1696
|
}
|
|
1697
1697
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1983,8 +1983,7 @@
|
|
|
1983
1983
|
padding-left: 8px;
|
|
1984
1984
|
}
|
|
1985
1985
|
.e-grid .e-chk-hidden {
|
|
1986
|
-
-moz-appearance: none;
|
|
1987
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1986
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1988
1987
|
height: 1px;
|
|
1989
1988
|
opacity: 0;
|
|
1990
1989
|
width: 1px;
|
|
@@ -1998,8 +1997,7 @@
|
|
|
1998
1997
|
}
|
|
1999
1998
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2000
1999
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2001
|
-
-webkit-user-select: auto;
|
|
2002
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2000
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2003
2001
|
height: 20px;
|
|
2004
2002
|
line-height: 20px;
|
|
2005
2003
|
position: relative;
|
|
@@ -2195,8 +2193,7 @@
|
|
|
2195
2193
|
padding: 2px;
|
|
2196
2194
|
}
|
|
2197
2195
|
.e-grid .e-content {
|
|
2198
|
-
-webkit-overflow-scrolling: touch;
|
|
2199
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2196
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2200
2197
|
overflow-x: auto;
|
|
2201
2198
|
overflow-y: scroll;
|
|
2202
2199
|
position: relative;
|
|
@@ -2611,12 +2608,10 @@
|
|
|
2611
2608
|
overflow: hidden;
|
|
2612
2609
|
}
|
|
2613
2610
|
.e-grid .e-frozenhdrcont {
|
|
2614
|
-
-ms-touch-action: none;
|
|
2615
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2611
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2616
2612
|
}
|
|
2617
2613
|
.e-grid .e-frozencontent {
|
|
2618
|
-
-ms-touch-action: none;
|
|
2619
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2614
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2620
2615
|
border-bottom-width: 1px;
|
|
2621
2616
|
float: left;
|
|
2622
2617
|
width: min-content;
|
|
@@ -2625,23 +2620,19 @@
|
|
|
2625
2620
|
float: right;
|
|
2626
2621
|
}
|
|
2627
2622
|
.e-grid .e-movablecontent {
|
|
2628
|
-
-ms-overflow-style: none;
|
|
2629
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2623
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2630
2624
|
-ms-flex: 1;
|
|
2631
2625
|
flex: 1;
|
|
2632
2626
|
overflow-x: auto;
|
|
2633
2627
|
overflow-y: hidden;
|
|
2634
2628
|
}
|
|
2635
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2636
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2629
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2637
2630
|
display: none;
|
|
2638
2631
|
}
|
|
2639
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2640
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2632
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2641
2633
|
width: 7px;
|
|
2642
2634
|
}
|
|
2643
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2644
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2635
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2645
2636
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2646
2637
|
border-radius: 4px;
|
|
2647
2638
|
}
|
|
@@ -3668,8 +3659,7 @@
|
|
|
3668
3659
|
}
|
|
3669
3660
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3670
3661
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3671
|
-
-moz-appearance: none;
|
|
3672
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3662
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3673
3663
|
height: 1px;
|
|
3674
3664
|
opacity: 0;
|
|
3675
3665
|
width: 1px;
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/pager/bootstrap5-definition.scss';
|
|
3
|
+
@import '../excel-filter/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/radio-button/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/dialog/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
|
|
13
|
+
@import 'ej2-popups/styles/tooltip/bootstrap5-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
|
|
16
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
17
|
+
@import 'ej2-navigations/styles/context-menu/bootstrap5-definition.scss';
|
|
18
|
+
@import 'ej2-notifications/styles/skeleton/bootstrap5-definition.scss';
|
|
19
|
+
@import 'bootstrap5-definition.scss';
|
|
20
|
+
@import 'icons/bootstrap5.scss';
|
|
21
|
+
@import 'all.scss';
|
|
@@ -1604,7 +1604,7 @@
|
|
|
1604
1604
|
text-overflow: ellipsis;
|
|
1605
1605
|
white-space: nowrap;
|
|
1606
1606
|
}
|
|
1607
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1607
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1608
1608
|
text-overflow: clip;
|
|
1609
1609
|
}
|
|
1610
1610
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1896,8 +1896,7 @@
|
|
|
1896
1896
|
padding-left: 7px;
|
|
1897
1897
|
}
|
|
1898
1898
|
.e-grid .e-chk-hidden {
|
|
1899
|
-
-moz-appearance: none;
|
|
1900
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1899
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1901
1900
|
height: 1px;
|
|
1902
1901
|
opacity: 0;
|
|
1903
1902
|
width: 1px;
|
|
@@ -1911,8 +1910,7 @@
|
|
|
1911
1910
|
}
|
|
1912
1911
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
1913
1912
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
1914
|
-
-webkit-user-select: auto;
|
|
1915
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1913
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1916
1914
|
height: 20px;
|
|
1917
1915
|
line-height: 21px;
|
|
1918
1916
|
position: relative;
|
|
@@ -2108,8 +2106,7 @@
|
|
|
2108
2106
|
padding: 2px;
|
|
2109
2107
|
}
|
|
2110
2108
|
.e-grid .e-content {
|
|
2111
|
-
-webkit-overflow-scrolling: touch;
|
|
2112
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2109
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2113
2110
|
overflow-x: auto;
|
|
2114
2111
|
overflow-y: scroll;
|
|
2115
2112
|
position: relative;
|
|
@@ -2524,12 +2521,10 @@
|
|
|
2524
2521
|
overflow: hidden;
|
|
2525
2522
|
}
|
|
2526
2523
|
.e-grid .e-frozenhdrcont {
|
|
2527
|
-
-ms-touch-action: none;
|
|
2528
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2524
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2529
2525
|
}
|
|
2530
2526
|
.e-grid .e-frozencontent {
|
|
2531
|
-
-ms-touch-action: none;
|
|
2532
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2527
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2533
2528
|
border-bottom-width: 1px;
|
|
2534
2529
|
float: left;
|
|
2535
2530
|
width: min-content;
|
|
@@ -2538,23 +2533,19 @@
|
|
|
2538
2533
|
float: right;
|
|
2539
2534
|
}
|
|
2540
2535
|
.e-grid .e-movablecontent {
|
|
2541
|
-
-ms-overflow-style: none;
|
|
2542
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2536
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2543
2537
|
-ms-flex: 1;
|
|
2544
2538
|
flex: 1;
|
|
2545
2539
|
overflow-x: auto;
|
|
2546
2540
|
overflow-y: hidden;
|
|
2547
2541
|
}
|
|
2548
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2549
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2542
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2550
2543
|
display: none;
|
|
2551
2544
|
}
|
|
2552
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2553
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2545
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2554
2546
|
width: 7px;
|
|
2555
2547
|
}
|
|
2556
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2557
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2548
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2558
2549
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2559
2550
|
border-radius: 4px;
|
|
2560
2551
|
}
|
|
@@ -3571,8 +3562,7 @@
|
|
|
3571
3562
|
}
|
|
3572
3563
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3573
3564
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3574
|
-
-moz-appearance: none;
|
|
3575
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3565
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3576
3566
|
height: 1px;
|
|
3577
3567
|
opacity: 0;
|
|
3578
3568
|
width: 1px;
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/pager/fabric-dark-definition.scss';
|
|
3
|
+
@import '../excel-filter/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-buttons/styles/radio-button/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/auto-complete/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/dialog/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
13
|
+
@import 'ej2-popups/styles/tooltip/fabric-dark-definition.scss';
|
|
14
|
+
@import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
|
|
15
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
|
|
16
|
+
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
17
|
+
@import 'ej2-navigations/styles/context-menu/fabric-dark-definition.scss';
|
|
18
|
+
@import 'ej2-notifications/styles/skeleton/fabric-dark-definition.scss';
|
|
19
|
+
@import 'fabric-dark-definition.scss';
|
|
20
|
+
@import 'icons/fabric-dark.scss';
|
|
21
|
+
@import 'all.scss';
|
package/styles/grid/fabric.css
CHANGED
|
@@ -1597,7 +1597,7 @@
|
|
|
1597
1597
|
text-overflow: ellipsis;
|
|
1598
1598
|
white-space: nowrap;
|
|
1599
1599
|
}
|
|
1600
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
1600
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
1601
1601
|
text-overflow: clip;
|
|
1602
1602
|
}
|
|
1603
1603
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -1889,8 +1889,7 @@
|
|
|
1889
1889
|
padding-left: 7px;
|
|
1890
1890
|
}
|
|
1891
1891
|
.e-grid .e-chk-hidden {
|
|
1892
|
-
-moz-appearance: none;
|
|
1893
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1892
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1894
1893
|
height: 1px;
|
|
1895
1894
|
opacity: 0;
|
|
1896
1895
|
width: 1px;
|
|
@@ -1904,8 +1903,7 @@
|
|
|
1904
1903
|
}
|
|
1905
1904
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
1906
1905
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
1907
|
-
-webkit-user-select: auto;
|
|
1908
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
1906
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
1909
1907
|
height: 20px;
|
|
1910
1908
|
line-height: 21px;
|
|
1911
1909
|
position: relative;
|
|
@@ -2101,8 +2099,7 @@
|
|
|
2101
2099
|
padding: 2px;
|
|
2102
2100
|
}
|
|
2103
2101
|
.e-grid .e-content {
|
|
2104
|
-
-webkit-overflow-scrolling: touch;
|
|
2105
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2102
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2106
2103
|
overflow-x: auto;
|
|
2107
2104
|
overflow-y: scroll;
|
|
2108
2105
|
position: relative;
|
|
@@ -2517,12 +2514,10 @@
|
|
|
2517
2514
|
overflow: hidden;
|
|
2518
2515
|
}
|
|
2519
2516
|
.e-grid .e-frozenhdrcont {
|
|
2520
|
-
-ms-touch-action: none;
|
|
2521
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2517
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2522
2518
|
}
|
|
2523
2519
|
.e-grid .e-frozencontent {
|
|
2524
|
-
-ms-touch-action: none;
|
|
2525
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2520
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2526
2521
|
border-bottom-width: 1px;
|
|
2527
2522
|
float: left;
|
|
2528
2523
|
width: min-content;
|
|
@@ -2531,23 +2526,19 @@
|
|
|
2531
2526
|
float: right;
|
|
2532
2527
|
}
|
|
2533
2528
|
.e-grid .e-movablecontent {
|
|
2534
|
-
-ms-overflow-style: none;
|
|
2535
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2529
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2536
2530
|
-ms-flex: 1;
|
|
2537
2531
|
flex: 1;
|
|
2538
2532
|
overflow-x: auto;
|
|
2539
2533
|
overflow-y: hidden;
|
|
2540
2534
|
}
|
|
2541
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2542
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2535
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2543
2536
|
display: none;
|
|
2544
2537
|
}
|
|
2545
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2546
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2538
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2547
2539
|
width: 7px;
|
|
2548
2540
|
}
|
|
2549
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2550
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2541
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2551
2542
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2552
2543
|
border-radius: 4px;
|
|
2553
2544
|
}
|
|
@@ -3564,8 +3555,7 @@
|
|
|
3564
3555
|
}
|
|
3565
3556
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3566
3557
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3567
|
-
-moz-appearance: none;
|
|
3568
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3558
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3569
3559
|
height: 1px;
|
|
3570
3560
|
opacity: 0;
|
|
3571
3561
|
width: 1px;
|