@syncfusion/ej2-angular-grids 20.4.42-ngcc → 20.4.43-ngcc
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/@syncfusion/ej2-angular-grids.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-grids.js.map +1 -1
- package/CHANGELOG.md +16 -1
- package/dist/ej2-angular-grids.umd.js +1 -1
- package/dist/ej2-angular-grids.umd.min.js +1 -1
- package/package.json +6 -6
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +10 -3
- package/styles/bootstrap.css +10 -3
- package/styles/bootstrap4.css +10 -3
- package/styles/bootstrap5-dark.css +10 -3
- package/styles/bootstrap5.css +10 -3
- package/styles/fabric-dark.css +10 -3
- package/styles/fabric.css +10 -3
- package/styles/fluent-dark.css +10 -3
- package/styles/fluent.css +10 -3
- package/styles/grid/bootstrap-dark.css +10 -3
- package/styles/grid/bootstrap.css +10 -3
- package/styles/grid/bootstrap4.css +10 -3
- package/styles/grid/bootstrap5-dark.css +10 -3
- package/styles/grid/bootstrap5.css +10 -3
- package/styles/grid/fabric-dark.css +10 -3
- package/styles/grid/fabric.css +10 -3
- package/styles/grid/fluent-dark.css +10 -3
- package/styles/grid/fluent.css +10 -3
- package/styles/grid/highcontrast-light.css +10 -3
- package/styles/grid/highcontrast.css +10 -3
- package/styles/grid/material-dark.css +10 -3
- package/styles/grid/material.css +10 -3
- package/styles/grid/tailwind-dark.css +10 -3
- package/styles/grid/tailwind.css +10 -3
- package/styles/highcontrast-light.css +10 -3
- package/styles/highcontrast.css +10 -3
- package/styles/material-dark.css +10 -3
- package/styles/material.css +10 -3
- package/styles/tailwind-dark.css +10 -3
- package/styles/tailwind.css +10 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,26 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I425228` - Exception is thrown when exporting the grid with custom aggregate issue has been fixed.
|
|
10
|
+
- `#F179549` - `colSpan` is not working with Frozen Grid issue has been fixed.
|
|
11
|
+
- `#I428130` - Group indent cell width is not properly set has been fixed.
|
|
12
|
+
- `#I422144`, `#F177682` - Validation message misalignment issue has been fixed.
|
|
13
|
+
- `#I425048` - The last row bottom border issue in grouping has been fixed.
|
|
14
|
+
- `#I424343`, `#I424671` - Issue with dynamically changing pager `pageSize` property has been resolved.
|
|
15
|
+
- `#I367619` - Added `pageSize` argument for paging action in `actionBegin` and `actionComplete` event.
|
|
16
|
+
- `#I414874` - Checkbox state is now reading properly by JAWS screen reader, when select all checkbox is clicked.
|
|
17
|
+
- `#I426392` - Grid Column Menu is misplaced in mobile device has been fixed.
|
|
18
|
+
|
|
19
|
+
## 20.4.42 (2023-01-04)
|
|
20
|
+
|
|
21
|
+
### Grid
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
9
25
|
- `#I422739` - New record ID undefined on Infinite Scroll Grid issue has been fixed.
|
|
10
26
|
- `#I423348` - `autoFitColumns` does not work with Frozen Grid issue has been fixed.
|
|
11
27
|
- `#I423530` - Row deselection is not working in Virtualization with checkbox column issue has been fixed.
|
|
12
28
|
- `#I419838` - Custom filter dialog throws script error when we render filter template issue has been fixed.
|
|
13
|
-
- `#I425048` - The last row bottom border issue in grouping has been fixed.
|
|
14
29
|
- `#I425422` - `Persistence` is not working on `ForeignKeyColumn` filter is fixed.
|
|
15
30
|
|
|
16
31
|
## 20.4.40 (2022-12-28)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.js
|
|
3
|
-
* version : 20.4.
|
|
3
|
+
* version : 20.4.43
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.min.js
|
|
3
|
-
* version : 20.4.
|
|
3
|
+
* version : 20.4.43
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-grids@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-grids@20.4.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-grids@20.4.42",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-O4LoBUP3+Q67Zv3kcUxoer/Nwa0h7VMpqRJPsycuBV3i2zSMiEkvgbUeyQZw8hlC/7iMekJ3u8tYnbNjcjBC/A==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-grids",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-20.4.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-grids/-/ej2-angular-grids-20.4.42.tgz",
|
|
23
|
+
"_shasum": "365626b933be6fdd1e2d9aaf3e7a9f5462eb8a6b",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-grids@*",
|
|
25
25
|
"_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@syncfusion/ej2-angular-base": "~20.4.42",
|
|
35
35
|
"@syncfusion/ej2-base": "~20.4.42",
|
|
36
|
-
"@syncfusion/ej2-grids": "20.4.
|
|
36
|
+
"@syncfusion/ej2-grids": "20.4.43"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"schematics": "./schematics/collection.json",
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"typings": "ej2-angular-grids.d.ts",
|
|
61
|
-
"version": "20.4.
|
|
61
|
+
"version": "20.4.43-ngcc"
|
|
62
62
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-grids";
|
|
2
|
-
export declare const pkgVer = "^20.4.
|
|
2
|
+
export declare const pkgVer = "^20.4.42";
|
|
3
3
|
export declare const moduleName = "GridModule, PagerModule";
|
|
4
|
-
export declare const themeVer = "~20.4.
|
|
4
|
+
export declare const themeVer = "~20.4.42";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-grids';
|
|
4
|
-
exports.pkgVer = '^20.4.
|
|
4
|
+
exports.pkgVer = '^20.4.43';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~20.4.
|
|
6
|
+
exports.themeVer = '~20.4.43';
|
|
@@ -1517,7 +1517,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1517
1517
|
border-width: 1px 0 0 0;
|
|
1518
1518
|
border-color: #484848;
|
|
1519
1519
|
}
|
|
1520
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1520
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1521
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1522
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1523
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1521
1524
|
border-bottom-width: 1px;
|
|
1522
1525
|
}
|
|
1523
1526
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2081,7 +2084,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2081
2084
|
border-left-style: solid;
|
|
2082
2085
|
border-left-width: 1px;
|
|
2083
2086
|
}
|
|
2084
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2087
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2085
2088
|
border-left-width: 0;
|
|
2086
2089
|
}
|
|
2087
2090
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3498,7 +3501,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3498
3501
|
}
|
|
3499
3502
|
.e-grid.sf-grid .e-movablecontent {
|
|
3500
3503
|
height: inherit;
|
|
3501
|
-
overflow:
|
|
3504
|
+
overflow-x: auto;
|
|
3505
|
+
scrollbar-width: none; /* firefox */
|
|
3506
|
+
}
|
|
3507
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3508
|
+
display: none; /* safari, chrome and edge */
|
|
3502
3509
|
}
|
|
3503
3510
|
.e-grid.sf-grid .e-frozencontent {
|
|
3504
3511
|
border-bottom-style: solid;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1518,7 +1518,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1518
1518
|
border-width: 1px 0 0 0;
|
|
1519
1519
|
border-color: #ddd;
|
|
1520
1520
|
}
|
|
1521
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1521
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1522
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1523
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1524
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1522
1525
|
border-bottom-width: 1px;
|
|
1523
1526
|
}
|
|
1524
1527
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2082,7 +2085,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2082
2085
|
border-left-style: solid;
|
|
2083
2086
|
border-left-width: 1px;
|
|
2084
2087
|
}
|
|
2085
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2088
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2086
2089
|
border-left-width: 0;
|
|
2087
2090
|
}
|
|
2088
2091
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3499,7 +3502,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3499
3502
|
}
|
|
3500
3503
|
.e-grid.sf-grid .e-movablecontent {
|
|
3501
3504
|
height: inherit;
|
|
3502
|
-
overflow:
|
|
3505
|
+
overflow-x: auto;
|
|
3506
|
+
scrollbar-width: none; /* firefox */
|
|
3507
|
+
}
|
|
3508
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3509
|
+
display: none; /* safari, chrome and edge */
|
|
3503
3510
|
}
|
|
3504
3511
|
.e-grid.sf-grid .e-frozencontent {
|
|
3505
3512
|
border-bottom-style: solid;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1574,7 +1574,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1574
1574
|
border-width: 1px 0 0 0;
|
|
1575
1575
|
border-color: #ddd;
|
|
1576
1576
|
}
|
|
1577
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1577
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1578
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1579
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1580
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1578
1581
|
border-bottom-width: 1px;
|
|
1579
1582
|
}
|
|
1580
1583
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2141,7 +2144,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2141
2144
|
border-left-style: solid;
|
|
2142
2145
|
border-left-width: 1px;
|
|
2143
2146
|
}
|
|
2144
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2147
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2145
2148
|
border-left-width: 0;
|
|
2146
2149
|
}
|
|
2147
2150
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3561,7 +3564,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3561
3564
|
}
|
|
3562
3565
|
.e-grid.sf-grid .e-movablecontent {
|
|
3563
3566
|
height: inherit;
|
|
3564
|
-
overflow:
|
|
3567
|
+
overflow-x: auto;
|
|
3568
|
+
scrollbar-width: none; /* firefox */
|
|
3569
|
+
}
|
|
3570
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3571
|
+
display: none; /* safari, chrome and edge */
|
|
3565
3572
|
}
|
|
3566
3573
|
.e-grid.sf-grid .e-frozencontent {
|
|
3567
3574
|
border-bottom-style: solid;
|
|
@@ -1580,7 +1580,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1580
1580
|
border-width: 1px 0 0 0;
|
|
1581
1581
|
border-color: #444c54;
|
|
1582
1582
|
}
|
|
1583
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1583
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1584
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1585
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1586
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1584
1587
|
border-bottom-width: 1px;
|
|
1585
1588
|
}
|
|
1586
1589
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2148,7 +2151,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2148
2151
|
border-left-style: solid;
|
|
2149
2152
|
border-left-width: 1px;
|
|
2150
2153
|
}
|
|
2151
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2154
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2152
2155
|
border-left-width: 0;
|
|
2153
2156
|
}
|
|
2154
2157
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3565,7 +3568,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3565
3568
|
}
|
|
3566
3569
|
.e-grid.sf-grid .e-movablecontent {
|
|
3567
3570
|
height: inherit;
|
|
3568
|
-
overflow:
|
|
3571
|
+
overflow-x: auto;
|
|
3572
|
+
scrollbar-width: none; /* firefox */
|
|
3573
|
+
}
|
|
3574
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3575
|
+
display: none; /* safari, chrome and edge */
|
|
3569
3576
|
}
|
|
3570
3577
|
.e-grid.sf-grid .e-frozencontent {
|
|
3571
3578
|
border-bottom-style: solid;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1580,7 +1580,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1580
1580
|
border-width: 1px 0 0 0;
|
|
1581
1581
|
border-color: #dee2e6;
|
|
1582
1582
|
}
|
|
1583
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1583
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1584
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1585
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1586
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1584
1587
|
border-bottom-width: 1px;
|
|
1585
1588
|
}
|
|
1586
1589
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2148,7 +2151,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2148
2151
|
border-left-style: solid;
|
|
2149
2152
|
border-left-width: 1px;
|
|
2150
2153
|
}
|
|
2151
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2154
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2152
2155
|
border-left-width: 0;
|
|
2153
2156
|
}
|
|
2154
2157
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3565,7 +3568,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3565
3568
|
}
|
|
3566
3569
|
.e-grid.sf-grid .e-movablecontent {
|
|
3567
3570
|
height: inherit;
|
|
3568
|
-
overflow:
|
|
3571
|
+
overflow-x: auto;
|
|
3572
|
+
scrollbar-width: none; /* firefox */
|
|
3573
|
+
}
|
|
3574
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3575
|
+
display: none; /* safari, chrome and edge */
|
|
3569
3576
|
}
|
|
3570
3577
|
.e-grid.sf-grid .e-frozencontent {
|
|
3571
3578
|
border-bottom-style: solid;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1491,7 +1491,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1491
1491
|
border-width: 1px 0 0 0;
|
|
1492
1492
|
border-color: #414040;
|
|
1493
1493
|
}
|
|
1494
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1494
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1495
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1496
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1497
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1495
1498
|
border-bottom-width: 1px;
|
|
1496
1499
|
}
|
|
1497
1500
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2055,7 +2058,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2055
2058
|
border-left-style: solid;
|
|
2056
2059
|
border-left-width: 1px;
|
|
2057
2060
|
}
|
|
2058
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2061
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2059
2062
|
border-left-width: 0;
|
|
2060
2063
|
}
|
|
2061
2064
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3472,7 +3475,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3472
3475
|
}
|
|
3473
3476
|
.e-grid.sf-grid .e-movablecontent {
|
|
3474
3477
|
height: inherit;
|
|
3475
|
-
overflow:
|
|
3478
|
+
overflow-x: auto;
|
|
3479
|
+
scrollbar-width: none; /* firefox */
|
|
3480
|
+
}
|
|
3481
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3482
|
+
display: none; /* safari, chrome and edge */
|
|
3476
3483
|
}
|
|
3477
3484
|
.e-grid.sf-grid .e-frozencontent {
|
|
3478
3485
|
border-bottom-style: solid;
|
package/styles/fabric.css
CHANGED
|
@@ -1484,7 +1484,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1484
1484
|
border-width: 1px 0 0 0;
|
|
1485
1485
|
border-color: #eaeaea;
|
|
1486
1486
|
}
|
|
1487
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1487
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1488
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1489
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1490
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1488
1491
|
border-bottom-width: 1px;
|
|
1489
1492
|
}
|
|
1490
1493
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2048,7 +2051,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2048
2051
|
border-left-style: solid;
|
|
2049
2052
|
border-left-width: 1px;
|
|
2050
2053
|
}
|
|
2051
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2054
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2052
2055
|
border-left-width: 0;
|
|
2053
2056
|
}
|
|
2054
2057
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3465,7 +3468,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3465
3468
|
}
|
|
3466
3469
|
.e-grid.sf-grid .e-movablecontent {
|
|
3467
3470
|
height: inherit;
|
|
3468
|
-
overflow:
|
|
3471
|
+
overflow-x: auto;
|
|
3472
|
+
scrollbar-width: none; /* firefox */
|
|
3473
|
+
}
|
|
3474
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3475
|
+
display: none; /* safari, chrome and edge */
|
|
3469
3476
|
}
|
|
3470
3477
|
.e-grid.sf-grid .e-frozencontent {
|
|
3471
3478
|
border-bottom-style: solid;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -1582,7 +1582,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1582
1582
|
border-width: 1px 0 0 0;
|
|
1583
1583
|
border-color: #292827;
|
|
1584
1584
|
}
|
|
1585
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1585
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1586
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1587
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1588
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1586
1589
|
border-bottom-width: 1px;
|
|
1587
1590
|
}
|
|
1588
1591
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2149,7 +2152,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2149
2152
|
border-left-style: solid;
|
|
2150
2153
|
border-left-width: 1px;
|
|
2151
2154
|
}
|
|
2152
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2155
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2153
2156
|
border-left-width: 0;
|
|
2154
2157
|
}
|
|
2155
2158
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3578,7 +3581,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3578
3581
|
}
|
|
3579
3582
|
.e-grid.sf-grid .e-movablecontent {
|
|
3580
3583
|
height: inherit;
|
|
3581
|
-
overflow:
|
|
3584
|
+
overflow-x: auto;
|
|
3585
|
+
scrollbar-width: none; /* firefox */
|
|
3586
|
+
}
|
|
3587
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3588
|
+
display: none; /* safari, chrome and edge */
|
|
3582
3589
|
}
|
|
3583
3590
|
.e-grid.sf-grid .e-frozencontent {
|
|
3584
3591
|
border-bottom-style: solid;
|
package/styles/fluent.css
CHANGED
|
@@ -1582,7 +1582,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
1582
1582
|
border-width: 1px 0 0 0;
|
|
1583
1583
|
border-color: #edebe9;
|
|
1584
1584
|
}
|
|
1585
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1585
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1586
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1587
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1588
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1586
1589
|
border-bottom-width: 1px;
|
|
1587
1590
|
}
|
|
1588
1591
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -2149,7 +2152,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2149
2152
|
border-left-style: solid;
|
|
2150
2153
|
border-left-width: 1px;
|
|
2151
2154
|
}
|
|
2152
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2155
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
2153
2156
|
border-left-width: 0;
|
|
2154
2157
|
}
|
|
2155
2158
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3578,7 +3581,11 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3578
3581
|
}
|
|
3579
3582
|
.e-grid.sf-grid .e-movablecontent {
|
|
3580
3583
|
height: inherit;
|
|
3581
|
-
overflow:
|
|
3584
|
+
overflow-x: auto;
|
|
3585
|
+
scrollbar-width: none; /* firefox */
|
|
3586
|
+
}
|
|
3587
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3588
|
+
display: none; /* safari, chrome and edge */
|
|
3582
3589
|
}
|
|
3583
3590
|
.e-grid.sf-grid .e-frozencontent {
|
|
3584
3591
|
border-bottom-style: solid;
|
|
@@ -1105,7 +1105,10 @@
|
|
|
1105
1105
|
border-width: 1px 0 0 0;
|
|
1106
1106
|
border-color: #484848;
|
|
1107
1107
|
}
|
|
1108
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1108
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1109
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1110
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1111
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1109
1112
|
border-bottom-width: 1px;
|
|
1110
1113
|
}
|
|
1111
1114
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1669,7 +1672,7 @@
|
|
|
1669
1672
|
border-left-style: solid;
|
|
1670
1673
|
border-left-width: 1px;
|
|
1671
1674
|
}
|
|
1672
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1675
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1673
1676
|
border-left-width: 0;
|
|
1674
1677
|
}
|
|
1675
1678
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3086,7 +3089,11 @@
|
|
|
3086
3089
|
}
|
|
3087
3090
|
.e-grid.sf-grid .e-movablecontent {
|
|
3088
3091
|
height: inherit;
|
|
3089
|
-
overflow:
|
|
3092
|
+
overflow-x: auto;
|
|
3093
|
+
scrollbar-width: none; /* firefox */
|
|
3094
|
+
}
|
|
3095
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3096
|
+
display: none; /* safari, chrome and edge */
|
|
3090
3097
|
}
|
|
3091
3098
|
.e-grid.sf-grid .e-frozencontent {
|
|
3092
3099
|
border-bottom-style: solid;
|
|
@@ -1106,7 +1106,10 @@
|
|
|
1106
1106
|
border-width: 1px 0 0 0;
|
|
1107
1107
|
border-color: #ddd;
|
|
1108
1108
|
}
|
|
1109
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1109
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1110
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1111
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1112
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1110
1113
|
border-bottom-width: 1px;
|
|
1111
1114
|
}
|
|
1112
1115
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1670,7 +1673,7 @@
|
|
|
1670
1673
|
border-left-style: solid;
|
|
1671
1674
|
border-left-width: 1px;
|
|
1672
1675
|
}
|
|
1673
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1676
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1674
1677
|
border-left-width: 0;
|
|
1675
1678
|
}
|
|
1676
1679
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3087,7 +3090,11 @@
|
|
|
3087
3090
|
}
|
|
3088
3091
|
.e-grid.sf-grid .e-movablecontent {
|
|
3089
3092
|
height: inherit;
|
|
3090
|
-
overflow:
|
|
3093
|
+
overflow-x: auto;
|
|
3094
|
+
scrollbar-width: none; /* firefox */
|
|
3095
|
+
}
|
|
3096
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3097
|
+
display: none; /* safari, chrome and edge */
|
|
3091
3098
|
}
|
|
3092
3099
|
.e-grid.sf-grid .e-frozencontent {
|
|
3093
3100
|
border-bottom-style: solid;
|
|
@@ -1151,7 +1151,10 @@
|
|
|
1151
1151
|
border-width: 1px 0 0 0;
|
|
1152
1152
|
border-color: #ddd;
|
|
1153
1153
|
}
|
|
1154
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1154
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1155
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1156
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1157
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1155
1158
|
border-bottom-width: 1px;
|
|
1156
1159
|
}
|
|
1157
1160
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1718,7 +1721,7 @@
|
|
|
1718
1721
|
border-left-style: solid;
|
|
1719
1722
|
border-left-width: 1px;
|
|
1720
1723
|
}
|
|
1721
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1724
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1722
1725
|
border-left-width: 0;
|
|
1723
1726
|
}
|
|
1724
1727
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3138,7 +3141,11 @@
|
|
|
3138
3141
|
}
|
|
3139
3142
|
.e-grid.sf-grid .e-movablecontent {
|
|
3140
3143
|
height: inherit;
|
|
3141
|
-
overflow:
|
|
3144
|
+
overflow-x: auto;
|
|
3145
|
+
scrollbar-width: none; /* firefox */
|
|
3146
|
+
}
|
|
3147
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3148
|
+
display: none; /* safari, chrome and edge */
|
|
3142
3149
|
}
|
|
3143
3150
|
.e-grid.sf-grid .e-frozencontent {
|
|
3144
3151
|
border-bottom-style: solid;
|
|
@@ -1165,7 +1165,10 @@
|
|
|
1165
1165
|
border-width: 1px 0 0 0;
|
|
1166
1166
|
border-color: #444c54;
|
|
1167
1167
|
}
|
|
1168
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1168
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1169
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1170
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1171
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1169
1172
|
border-bottom-width: 1px;
|
|
1170
1173
|
}
|
|
1171
1174
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1733,7 +1736,7 @@
|
|
|
1733
1736
|
border-left-style: solid;
|
|
1734
1737
|
border-left-width: 1px;
|
|
1735
1738
|
}
|
|
1736
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1739
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1737
1740
|
border-left-width: 0;
|
|
1738
1741
|
}
|
|
1739
1742
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3150,7 +3153,11 @@
|
|
|
3150
3153
|
}
|
|
3151
3154
|
.e-grid.sf-grid .e-movablecontent {
|
|
3152
3155
|
height: inherit;
|
|
3153
|
-
overflow:
|
|
3156
|
+
overflow-x: auto;
|
|
3157
|
+
scrollbar-width: none; /* firefox */
|
|
3158
|
+
}
|
|
3159
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3160
|
+
display: none; /* safari, chrome and edge */
|
|
3154
3161
|
}
|
|
3155
3162
|
.e-grid.sf-grid .e-frozencontent {
|
|
3156
3163
|
border-bottom-style: solid;
|
|
@@ -1165,7 +1165,10 @@
|
|
|
1165
1165
|
border-width: 1px 0 0 0;
|
|
1166
1166
|
border-color: #dee2e6;
|
|
1167
1167
|
}
|
|
1168
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1168
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1169
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1170
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1171
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1169
1172
|
border-bottom-width: 1px;
|
|
1170
1173
|
}
|
|
1171
1174
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1733,7 +1736,7 @@
|
|
|
1733
1736
|
border-left-style: solid;
|
|
1734
1737
|
border-left-width: 1px;
|
|
1735
1738
|
}
|
|
1736
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1739
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1737
1740
|
border-left-width: 0;
|
|
1738
1741
|
}
|
|
1739
1742
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3150,7 +3153,11 @@
|
|
|
3150
3153
|
}
|
|
3151
3154
|
.e-grid.sf-grid .e-movablecontent {
|
|
3152
3155
|
height: inherit;
|
|
3153
|
-
overflow:
|
|
3156
|
+
overflow-x: auto;
|
|
3157
|
+
scrollbar-width: none; /* firefox */
|
|
3158
|
+
}
|
|
3159
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3160
|
+
display: none; /* safari, chrome and edge */
|
|
3154
3161
|
}
|
|
3155
3162
|
.e-grid.sf-grid .e-frozencontent {
|
|
3156
3163
|
border-bottom-style: solid;
|
|
@@ -1079,7 +1079,10 @@
|
|
|
1079
1079
|
border-width: 1px 0 0 0;
|
|
1080
1080
|
border-color: #414040;
|
|
1081
1081
|
}
|
|
1082
|
-
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell
|
|
1082
|
+
.e-grid .e-gridcontent .e-rowdragdrop.e-lastrowcell,
|
|
1083
|
+
.e-grid .e-gridcontent .e-recordpluscollapse.e-lastrowcell,
|
|
1084
|
+
.e-grid .e-gridcontent .e-indentcell.e-lastrowcell,
|
|
1085
|
+
.e-grid .e-gridcontent .e-groupcaption.e-lastrowcell {
|
|
1083
1086
|
border-bottom-width: 1px;
|
|
1084
1087
|
}
|
|
1085
1088
|
.e-grid .e-cloneproperties.e-draganddrop .e-row .e-icon-rowdragicon::before {
|
|
@@ -1643,7 +1646,7 @@
|
|
|
1643
1646
|
border-left-style: solid;
|
|
1644
1647
|
border-left-width: 1px;
|
|
1645
1648
|
}
|
|
1646
|
-
.e-grid.e-default tr td:first-child, .e-grid.e-default tr th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1649
|
+
.e-grid.e-default tr td:first-child, .e-grid.e-default tr :not(.e-rtl) th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border), .e-grid.e-default tr th.e-detailheadercell:first-child, .e-grid.e-default tr th.e-filterbarcell:first-child:not(.e-filterbarcell.e-frozen-left-border) {
|
|
1647
1650
|
border-left-width: 0;
|
|
1648
1651
|
}
|
|
1649
1652
|
.e-grid.e-default .e-gridheader th.e-firstcell.e-movablefirst {
|
|
@@ -3060,7 +3063,11 @@
|
|
|
3060
3063
|
}
|
|
3061
3064
|
.e-grid.sf-grid .e-movablecontent {
|
|
3062
3065
|
height: inherit;
|
|
3063
|
-
overflow:
|
|
3066
|
+
overflow-x: auto;
|
|
3067
|
+
scrollbar-width: none; /* firefox */
|
|
3068
|
+
}
|
|
3069
|
+
.e-grid.sf-grid .e-movablecontent::-webkit-scrollbar {
|
|
3070
|
+
display: none; /* safari, chrome and edge */
|
|
3064
3071
|
}
|
|
3065
3072
|
.e-grid.sf-grid .e-frozencontent {
|
|
3066
3073
|
border-bottom-style: solid;
|