@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
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@include export-module('excel-filter-fluent-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e774';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7f7';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e7f7';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e72c';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e754';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-ccsearch-icon::before {
|
|
27
|
+
content: '\e754';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-chkcancel-icon::before {
|
|
31
|
+
content: '\e7e7';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortascending::before {
|
|
35
|
+
content: '\e7a3';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-sortdescending::before {
|
|
39
|
+
content: '\e7b6';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@include export-module('excel-filter-fusionnew-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e774';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7f7';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e7f7';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e72c';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e754';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-ccsearch-icon::before {
|
|
27
|
+
content: '\e754';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-chkcancel-icon::before {
|
|
31
|
+
content: '\e7e7';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortascending::before {
|
|
35
|
+
content: '\e7a3';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-sortdescending::before {
|
|
39
|
+
content: '\e7b6';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@include export-module('excel-filter-highcontrast-light-icons') {
|
|
2
|
+
|
|
3
|
+
/* !component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e7ff';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e21c';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e250';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e247';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e97d';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-chkcancel-icon::before {
|
|
27
|
+
content: '\e7a7';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-sortascending::before {
|
|
31
|
+
content: '\e734';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortdescending::before {
|
|
35
|
+
content: '\e733';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@include export-module('excel-filter-highcontrast-icons') {
|
|
2
|
+
|
|
3
|
+
/* !component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e7ff';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e21c';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e250';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e247';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e97d';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-chkcancel-icon::before {
|
|
27
|
+
content: '\e7a7';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-sortascending::before {
|
|
31
|
+
content: '\e734';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortdescending::before {
|
|
35
|
+
content: '\e733';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@include export-module('excel-filter-material-dark-icons') {
|
|
2
|
+
|
|
3
|
+
/* !componenticons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e7ff';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7ee';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e251';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e248';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e993';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-chkcancel-icon::before {
|
|
27
|
+
content: '\e7a7';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-sortascending::before {
|
|
31
|
+
content: '\e734';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortdescending::before {
|
|
35
|
+
content: '\e733';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@include export-module('excel-filter-material-icons') {
|
|
2
|
+
|
|
3
|
+
/* !component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e7ff';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7ee';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e251';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e248';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e993';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-chkcancel-icon::before {
|
|
27
|
+
content: '\e7a7';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-sortascending::before {
|
|
31
|
+
content: '\e734';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortdescending::before {
|
|
35
|
+
content: '\e733';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@include export-module('excel-filter-material3-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e774';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7f7';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e7f7';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e72c';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e754';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-ccsearch-icon::before {
|
|
27
|
+
content: '\e754';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-chkcancel-icon::before {
|
|
31
|
+
content: '\e7e7';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortascending::before {
|
|
35
|
+
content: '\e7a3';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-sortdescending::before {
|
|
39
|
+
content: '\e7b6';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './tailwind.scss';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@include export-module('excel-filter-tailwind-icons') {
|
|
2
|
+
|
|
3
|
+
/*! component icons */
|
|
4
|
+
|
|
5
|
+
.e-icon-check::before {
|
|
6
|
+
content: '\e774';
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#{&}.e-excelfilter {
|
|
10
|
+
.e-icon-filter::before {
|
|
11
|
+
content: '\e7f7';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-excl-filter-icon::before {
|
|
15
|
+
content: '\e7f7';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-excl-filter-icon.e-filtered::before {
|
|
19
|
+
content: '\e72c';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-search-icon::before {
|
|
23
|
+
content: '\e754';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.e-ccsearch-icon::before {
|
|
27
|
+
content: '\e754';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-chkcancel-icon::before {
|
|
31
|
+
content: '\e7e7';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-sortascending::before {
|
|
35
|
+
content: '\e7a3';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-sortdescending::before {
|
|
39
|
+
content: '\e7b6';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -379,8 +379,7 @@
|
|
|
379
379
|
word-break: normal;
|
|
380
380
|
}
|
|
381
381
|
.e-excelfilter .e-chk-hidden {
|
|
382
|
-
-moz-appearance: none;
|
|
383
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
382
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
384
383
|
height: 1px;
|
|
385
384
|
opacity: 0;
|
|
386
385
|
width: 1px;
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/numerictextbox/material-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/material-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/check-box/material-dark-definition.scss';
|
|
7
|
+
@import 'ej2-dropdowns/styles/auto-complete/material-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/material-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/material-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/datepicker/material-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datetimepicker/material-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/material-dark-definition.scss';
|
|
14
|
+
@import 'ej2-notifications/styles/skeleton/material-dark-definition.scss';
|
|
15
|
+
@import 'material-dark-definition.scss';
|
|
16
|
+
@import 'icons/material-dark.scss';
|
|
17
|
+
@import 'all.scss';
|
|
@@ -412,8 +412,7 @@
|
|
|
412
412
|
word-break: normal;
|
|
413
413
|
}
|
|
414
414
|
.e-excelfilter .e-chk-hidden {
|
|
415
|
-
-moz-appearance: none;
|
|
416
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
415
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
417
416
|
height: 1px;
|
|
418
417
|
opacity: 0;
|
|
419
418
|
width: 1px;
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/material-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/numerictextbox/material-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/material-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/check-box/material-definition.scss';
|
|
7
|
+
@import 'ej2-dropdowns/styles/auto-complete/material-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/material-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/material-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/material-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/datepicker/material-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datetimepicker/material-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/material-definition.scss';
|
|
14
|
+
@import 'ej2-notifications/styles/skeleton/material-definition.scss';
|
|
15
|
+
@import 'material-definition.scss';
|
|
16
|
+
@import 'icons/material.scss';
|
|
17
|
+
@import 'all.scss';
|
|
@@ -364,8 +364,7 @@
|
|
|
364
364
|
word-break: normal;
|
|
365
365
|
}
|
|
366
366
|
.e-excelfilter .e-chk-hidden {
|
|
367
|
-
-moz-appearance: none;
|
|
368
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
367
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
369
368
|
height: 1px;
|
|
370
369
|
opacity: 0;
|
|
371
370
|
width: 1px;
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/tailwind-dark-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/check-box/tailwind-dark-definition.scss';
|
|
7
|
+
@import 'ej2-dropdowns/styles/auto-complete/tailwind-dark-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/tailwind-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/tailwind-dark-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-dark-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-dark-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-dark-definition.scss';
|
|
14
|
+
@import 'ej2-notifications/styles/skeleton/tailwind-dark-definition.scss';
|
|
15
|
+
@import 'tailwind-dark-definition.scss';
|
|
16
|
+
@import 'icons/tailwind-dark.scss';
|
|
17
|
+
@import 'all.scss';
|
|
@@ -364,8 +364,7 @@
|
|
|
364
364
|
word-break: normal;
|
|
365
365
|
}
|
|
366
366
|
.e-excelfilter .e-chk-hidden {
|
|
367
|
-
-moz-appearance: none;
|
|
368
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
367
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
369
368
|
height: 1px;
|
|
370
369
|
opacity: 0;
|
|
371
370
|
width: 1px;
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
5
|
+
@import 'ej2-buttons/styles/radio-button/tailwind-definition.scss';
|
|
6
|
+
@import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
|
|
7
|
+
@import 'ej2-dropdowns/styles/auto-complete/tailwind-definition.scss';
|
|
8
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/tailwind-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/spinner/tailwind-definition.scss';
|
|
11
|
+
@import 'ej2-calendars/styles/datepicker/tailwind-definition.scss';
|
|
12
|
+
@import 'ej2-calendars/styles/datetimepicker/tailwind-definition.scss';
|
|
13
|
+
@import 'ej2-navigations/styles/context-menu/tailwind-definition.scss';
|
|
14
|
+
@import 'ej2-notifications/styles/skeleton/tailwind-definition.scss';
|
|
15
|
+
@import 'tailwind-definition.scss';
|
|
16
|
+
@import 'icons/tailwind.scss';
|
|
17
|
+
@import 'all.scss';
|
package/styles/fabric-dark.css
CHANGED
|
@@ -347,8 +347,7 @@
|
|
|
347
347
|
word-break: normal;
|
|
348
348
|
}
|
|
349
349
|
.e-excelfilter .e-chk-hidden {
|
|
350
|
-
-moz-appearance: none;
|
|
351
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
350
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
352
351
|
height: 1px;
|
|
353
352
|
opacity: 0;
|
|
354
353
|
width: 1px;
|
|
@@ -2017,7 +2016,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2017
2016
|
text-overflow: ellipsis;
|
|
2018
2017
|
white-space: nowrap;
|
|
2019
2018
|
}
|
|
2020
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
2019
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
2021
2020
|
text-overflow: clip;
|
|
2022
2021
|
}
|
|
2023
2022
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -2309,8 +2308,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2309
2308
|
padding-left: 7px;
|
|
2310
2309
|
}
|
|
2311
2310
|
.e-grid .e-chk-hidden {
|
|
2312
|
-
-moz-appearance: none;
|
|
2313
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2311
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2314
2312
|
height: 1px;
|
|
2315
2313
|
opacity: 0;
|
|
2316
2314
|
width: 1px;
|
|
@@ -2324,8 +2322,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2324
2322
|
}
|
|
2325
2323
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2326
2324
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2327
|
-
-webkit-user-select: auto;
|
|
2328
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2325
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2329
2326
|
height: 20px;
|
|
2330
2327
|
line-height: 21px;
|
|
2331
2328
|
position: relative;
|
|
@@ -2521,8 +2518,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2521
2518
|
padding: 2px;
|
|
2522
2519
|
}
|
|
2523
2520
|
.e-grid .e-content {
|
|
2524
|
-
-webkit-overflow-scrolling: touch;
|
|
2525
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2521
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2526
2522
|
overflow-x: auto;
|
|
2527
2523
|
overflow-y: scroll;
|
|
2528
2524
|
position: relative;
|
|
@@ -2937,12 +2933,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2937
2933
|
overflow: hidden;
|
|
2938
2934
|
}
|
|
2939
2935
|
.e-grid .e-frozenhdrcont {
|
|
2940
|
-
-ms-touch-action: none;
|
|
2941
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2936
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2942
2937
|
}
|
|
2943
2938
|
.e-grid .e-frozencontent {
|
|
2944
|
-
-ms-touch-action: none;
|
|
2945
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2939
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2946
2940
|
border-bottom-width: 1px;
|
|
2947
2941
|
float: left;
|
|
2948
2942
|
width: min-content;
|
|
@@ -2951,23 +2945,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2951
2945
|
float: right;
|
|
2952
2946
|
}
|
|
2953
2947
|
.e-grid .e-movablecontent {
|
|
2954
|
-
-ms-overflow-style: none;
|
|
2955
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2948
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2956
2949
|
-ms-flex: 1;
|
|
2957
2950
|
flex: 1;
|
|
2958
2951
|
overflow-x: auto;
|
|
2959
2952
|
overflow-y: hidden;
|
|
2960
2953
|
}
|
|
2961
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2962
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2954
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2963
2955
|
display: none;
|
|
2964
2956
|
}
|
|
2965
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2966
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2957
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2967
2958
|
width: 7px;
|
|
2968
2959
|
}
|
|
2969
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2970
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2960
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2971
2961
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2972
2962
|
border-radius: 4px;
|
|
2973
2963
|
}
|
|
@@ -3984,8 +3974,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3984
3974
|
}
|
|
3985
3975
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3986
3976
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3987
|
-
-moz-appearance: none;
|
|
3988
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3977
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3989
3978
|
height: 1px;
|
|
3990
3979
|
opacity: 0;
|
|
3991
3980
|
width: 1px;
|
package/styles/fabric.css
CHANGED
|
@@ -340,8 +340,7 @@
|
|
|
340
340
|
word-break: normal;
|
|
341
341
|
}
|
|
342
342
|
.e-excelfilter .e-chk-hidden {
|
|
343
|
-
-moz-appearance: none;
|
|
344
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
343
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
345
344
|
height: 1px;
|
|
346
345
|
opacity: 0;
|
|
347
346
|
width: 1px;
|
|
@@ -2010,7 +2009,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2010
2009
|
text-overflow: ellipsis;
|
|
2011
2010
|
white-space: nowrap;
|
|
2012
2011
|
}
|
|
2013
|
-
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-
|
|
2012
|
+
.e-grid.e-responsive .e-rowcell.e-gridchkbox, .e-grid.e-responsive .e-headercelldiv.e-headerchkcelldiv {
|
|
2014
2013
|
text-overflow: clip;
|
|
2015
2014
|
}
|
|
2016
2015
|
.e-grid.e-default .e-headercell, .e-grid.e-default .e-detailheadercell {
|
|
@@ -2302,8 +2301,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2302
2301
|
padding-left: 7px;
|
|
2303
2302
|
}
|
|
2304
2303
|
.e-grid .e-chk-hidden {
|
|
2305
|
-
-moz-appearance: none;
|
|
2306
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2304
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2307
2305
|
height: 1px;
|
|
2308
2306
|
opacity: 0;
|
|
2309
2307
|
width: 1px;
|
|
@@ -2317,8 +2315,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2317
2315
|
}
|
|
2318
2316
|
.e-grid .e-rowcell .e-checkbox-wrapper,
|
|
2319
2317
|
.e-grid .e-rowcell .e-css.e-checkbox-wrapper {
|
|
2320
|
-
-webkit-user-select: auto;
|
|
2321
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2318
|
+
-webkit-user-select: auto; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2322
2319
|
height: 20px;
|
|
2323
2320
|
line-height: 21px;
|
|
2324
2321
|
position: relative;
|
|
@@ -2514,8 +2511,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2514
2511
|
padding: 2px;
|
|
2515
2512
|
}
|
|
2516
2513
|
.e-grid .e-content {
|
|
2517
|
-
-webkit-overflow-scrolling: touch;
|
|
2518
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2514
|
+
-webkit-overflow-scrolling: touch; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2519
2515
|
overflow-x: auto;
|
|
2520
2516
|
overflow-y: scroll;
|
|
2521
2517
|
position: relative;
|
|
@@ -2930,12 +2926,10 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2930
2926
|
overflow: hidden;
|
|
2931
2927
|
}
|
|
2932
2928
|
.e-grid .e-frozenhdrcont {
|
|
2933
|
-
-ms-touch-action: none;
|
|
2934
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2929
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2935
2930
|
}
|
|
2936
2931
|
.e-grid .e-frozencontent {
|
|
2937
|
-
-ms-touch-action: none;
|
|
2938
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2932
|
+
-ms-touch-action: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2939
2933
|
border-bottom-width: 1px;
|
|
2940
2934
|
float: left;
|
|
2941
2935
|
width: min-content;
|
|
@@ -2944,23 +2938,19 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
2944
2938
|
float: right;
|
|
2945
2939
|
}
|
|
2946
2940
|
.e-grid .e-movablecontent {
|
|
2947
|
-
-ms-overflow-style: none;
|
|
2948
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2941
|
+
-ms-overflow-style: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
2949
2942
|
-ms-flex: 1;
|
|
2950
2943
|
flex: 1;
|
|
2951
2944
|
overflow-x: auto;
|
|
2952
2945
|
overflow-y: hidden;
|
|
2953
2946
|
}
|
|
2954
|
-
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar {
|
|
2955
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2947
|
+
.e-grid:not(.sf-grid) .e-movablecontent::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2956
2948
|
display: none;
|
|
2957
2949
|
}
|
|
2958
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar {
|
|
2959
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2950
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2960
2951
|
width: 7px;
|
|
2961
2952
|
}
|
|
2962
|
-
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb {
|
|
2963
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
2953
|
+
.e-grid .e-content.e-mac-safari::-webkit-scrollbar-thumb { /* stylelint-disable-line property-no-vendor-prefix */
|
|
2964
2954
|
background-color: rgba(0, 0, 0, 0.5);
|
|
2965
2955
|
border-radius: 4px;
|
|
2966
2956
|
}
|
|
@@ -3977,8 +3967,7 @@ li.e-separator.e-menu-item.e-excel-separator {
|
|
|
3977
3967
|
}
|
|
3978
3968
|
.e-bigger .e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden,
|
|
3979
3969
|
.e-bigger.e-responsive-dialog .e-dlg-content .e-mainfilterdiv .e-dialog .e-searchcontainer .e-spinner .e-chk-hidden {
|
|
3980
|
-
-moz-appearance: none;
|
|
3981
|
-
/* stylelint-disable-line property-no-vendor-prefix */
|
|
3970
|
+
-moz-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
|
|
3982
3971
|
height: 1px;
|
|
3983
3972
|
opacity: 0;
|
|
3984
3973
|
width: 1px;
|