@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
package/styles/fluent-dark.css
CHANGED
|
@@ -395,8 +395,7 @@
|
|
|
395
395
|
word-break: normal;
|
|
396
396
|
}
|
|
397
397
|
.e-excelfilter .e-chk-hidden {
|
|
398
|
-
-moz-appearance: none;
|
|
399
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
398
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
400
399
|
height: 1px;
|
|
401
400
|
opacity: 0;
|
|
402
401
|
width: 1px;
|
|
@@ -2111,7 +2110,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2111
2110
|
text-overflow: ellipsis;
|
|
2112
2111
|
white-space: nowrap;
|
|
2113
2112
|
}
|
|
2114
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
2113
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
2115
2114
|
text-overflow: clip;
|
|
2116
2115
|
}
|
|
2117
2116
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -2410,8 +2409,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2410
2409
|
padding-left: 8px;
|
|
2411
2410
|
}
|
|
2412
2411
|
.e-grid .e-chk-hidden {
|
|
2413
|
-
-moz-appearance: none;
|
|
2414
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2412
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2415
2413
|
height: 1px;
|
|
2416
2414
|
opacity: 0;
|
|
2417
2415
|
width: 1px;
|
|
@@ -2425,8 +2423,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2425
2423
|
}
|
|
2426
2424
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2427
2425
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2428
|
-
-webkit-user-select: auto;
|
|
2429
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2426
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2430
2427
|
height: 20px;
|
|
2431
2428
|
line-height: 20px;
|
|
2432
2429
|
position: relative;
|
|
@@ -2623,8 +2620,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2623
2620
|
padding: 2px;
|
|
2624
2621
|
}
|
|
2625
2622
|
.e-grid .e-content {
|
|
2626
|
-
-webkit-overflow-scrolling: touch;
|
|
2627
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2623
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2628
2624
|
overflow-x: auto;
|
|
2629
2625
|
overflow-y: scroll;
|
|
2630
2626
|
position: relative;
|
|
@@ -3043,12 +3039,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3043
3039
|
overflow: hidden;
|
|
3044
3040
|
}
|
|
3045
3041
|
.e-grid .e-frozenhdrcont {
|
|
3046
|
-
-ms-touch-action: none;
|
|
3047
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3042
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3048
3043
|
}
|
|
3049
3044
|
.e-grid .e-frozencontent {
|
|
3050
|
-
-ms-touch-action: none;
|
|
3051
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3045
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3052
3046
|
border-bottom-width: 1px;
|
|
3053
3047
|
float: left;
|
|
3054
3048
|
width: min-content;
|
|
@@ -3057,23 +3051,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3057
3051
|
float: right;
|
|
3058
3052
|
}
|
|
3059
3053
|
.e-grid .e-movablecontent {
|
|
3060
|
-
-ms-overflow-style: none;
|
|
3061
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3054
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3062
3055
|
-ms-flex: 1;
|
|
3063
3056
|
flex: 1;
|
|
3064
3057
|
overflow-x: auto;
|
|
3065
3058
|
overflow-y: hidden;
|
|
3066
3059
|
}
|
|
3067
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
3068
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3060
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3069
3061
|
display: none;
|
|
3070
3062
|
}
|
|
3071
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
3072
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3063
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3073
3064
|
width: 7px;
|
|
3074
3065
|
}
|
|
3075
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
3076
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3066
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3077
3067
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3078
3068
|
border-radius: 4px;
|
|
3079
3069
|
}
|
|
@@ -4104,8 +4094,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
4104
4094
|
}
|
|
4105
4095
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
4106
4096
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
4107
|
-
-moz-appearance: none;
|
|
4108
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
4097
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
4109
4098
|
height: 1px;
|
|
4110
4099
|
opacity: 0;
|
|
4111
4100
|
width: 1px;
|
package/styles/fluent.css
CHANGED
|
@@ -395,8 +395,7 @@
|
|
|
395
395
|
word-break: normal;
|
|
396
396
|
}
|
|
397
397
|
.e-excelfilter .e-chk-hidden {
|
|
398
|
-
-moz-appearance: none;
|
|
399
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
398
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
400
399
|
height: 1px;
|
|
401
400
|
opacity: 0;
|
|
402
401
|
width: 1px;
|
|
@@ -2111,7 +2110,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2111
2110
|
text-overflow: ellipsis;
|
|
2112
2111
|
white-space: nowrap;
|
|
2113
2112
|
}
|
|
2114
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
2113
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
2115
2114
|
text-overflow: clip;
|
|
2116
2115
|
}
|
|
2117
2116
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -2410,8 +2409,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2410
2409
|
padding-left: 8px;
|
|
2411
2410
|
}
|
|
2412
2411
|
.e-grid .e-chk-hidden {
|
|
2413
|
-
-moz-appearance: none;
|
|
2414
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2412
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2415
2413
|
height: 1px;
|
|
2416
2414
|
opacity: 0;
|
|
2417
2415
|
width: 1px;
|
|
@@ -2425,8 +2423,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2425
2423
|
}
|
|
2426
2424
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2427
2425
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2428
|
-
-webkit-user-select: auto;
|
|
2429
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2426
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2430
2427
|
height: 20px;
|
|
2431
2428
|
line-height: 20px;
|
|
2432
2429
|
position: relative;
|
|
@@ -2623,8 +2620,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2623
2620
|
padding: 2px;
|
|
2624
2621
|
}
|
|
2625
2622
|
.e-grid .e-content {
|
|
2626
|
-
-webkit-overflow-scrolling: touch;
|
|
2627
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2623
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2628
2624
|
overflow-x: auto;
|
|
2629
2625
|
overflow-y: scroll;
|
|
2630
2626
|
position: relative;
|
|
@@ -3043,12 +3039,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3043
3039
|
overflow: hidden;
|
|
3044
3040
|
}
|
|
3045
3041
|
.e-grid .e-frozenhdrcont {
|
|
3046
|
-
-ms-touch-action: none;
|
|
3047
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3042
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3048
3043
|
}
|
|
3049
3044
|
.e-grid .e-frozencontent {
|
|
3050
|
-
-ms-touch-action: none;
|
|
3051
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3045
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3052
3046
|
border-bottom-width: 1px;
|
|
3053
3047
|
float: left;
|
|
3054
3048
|
width: min-content;
|
|
@@ -3057,23 +3051,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3057
3051
|
float: right;
|
|
3058
3052
|
}
|
|
3059
3053
|
.e-grid .e-movablecontent {
|
|
3060
|
-
-ms-overflow-style: none;
|
|
3061
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3054
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3062
3055
|
-ms-flex: 1;
|
|
3063
3056
|
flex: 1;
|
|
3064
3057
|
overflow-x: auto;
|
|
3065
3058
|
overflow-y: hidden;
|
|
3066
3059
|
}
|
|
3067
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
3068
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3060
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3069
3061
|
display: none;
|
|
3070
3062
|
}
|
|
3071
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
3072
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3063
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3073
3064
|
width: 7px;
|
|
3074
3065
|
}
|
|
3075
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
3076
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3066
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
3077
3067
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3078
3068
|
border-radius: 4px;
|
|
3079
3069
|
}
|
|
@@ -4104,8 +4094,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
4104
4094
|
}
|
|
4105
4095
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
4106
4096
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
4107
|
-
-moz-appearance: none;
|
|
4108
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
4097
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
4109
4098
|
height: 1px;
|
|
4110
4099
|
opacity: 0;
|
|
4111
4100
|
width: 1px;
|