@uxf/data-grid 4.0.0-beta.1 → 4.0.0-beta.2
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/package.json +1 -1
- package/styles.css +60 -0
package/package.json
CHANGED
package/styles.css
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
.rdg-cell.action {
|
|
2
|
+
text-align: right;
|
|
3
|
+
border-right: 0;
|
|
4
|
+
align-items: center;
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
position: sticky;
|
|
8
|
+
box-shadow: -3px 0 15px rgba(221, 221, 221, 0.5);
|
|
9
|
+
right: 0;
|
|
10
|
+
}
|
|
11
|
+
.rdg-header-row {
|
|
12
|
+
background-color: transparent;
|
|
13
|
+
}
|
|
14
|
+
.rdg-header-row .rdg-cell {
|
|
15
|
+
border-right: 0;
|
|
16
|
+
box-shadow: none;
|
|
17
|
+
}
|
|
18
|
+
.rdg-header-sort-name + span {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
}
|
|
22
|
+
.datagrid-linear-progress {
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 3px;
|
|
25
|
+
position: relative;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
background-color: #ddd;
|
|
28
|
+
-webkit-border-radius: 20px;
|
|
29
|
+
-moz-border-radius: 20px;
|
|
30
|
+
border-radius: 20px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.datagrid-linear-progress:before {
|
|
34
|
+
content: "";
|
|
35
|
+
position: absolute;
|
|
36
|
+
left: -50%;
|
|
37
|
+
height: 3px;
|
|
38
|
+
width: 40%;
|
|
39
|
+
background-color: coral;
|
|
40
|
+
-webkit-animation: datagridLineAnim 1s linear infinite;
|
|
41
|
+
-moz-animation: datagridLineAnim 1s linear infinite;
|
|
42
|
+
animation: datagridLineAnim 1s linear infinite;
|
|
43
|
+
-webkit-border-radius: 20px;
|
|
44
|
+
-moz-border-radius: 20px;
|
|
45
|
+
border-radius: 20px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes datagridLineAnim {
|
|
49
|
+
0% {
|
|
50
|
+
left: -40%;
|
|
51
|
+
}
|
|
52
|
+
50% {
|
|
53
|
+
left: 20%;
|
|
54
|
+
width: 80%;
|
|
55
|
+
}
|
|
56
|
+
100% {
|
|
57
|
+
left: 100%;
|
|
58
|
+
width: 100%;
|
|
59
|
+
}
|
|
60
|
+
}
|