i-tech-shared-components 1.2.46 → 1.2.47
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/theme/_ag-grid.scss +22 -7
package/package.json
CHANGED
package/theme/_ag-grid.scss
CHANGED
|
@@ -36,18 +36,33 @@ body {
|
|
|
36
36
|
|
|
37
37
|
.ag-row.not-found-row-even {
|
|
38
38
|
background: repeating-linear-gradient(45deg, #FAFAFC, #FAFAFC 10px, #F2F2F5 10px, #F2F2F5 20px) 0 0;
|
|
39
|
-
}
|
|
40
39
|
|
|
40
|
+
&:hover:before {
|
|
41
|
+
background: repeating-linear-gradient(45deg, #F8F8FA, #F8F8FA 10px, #E8E9ED 10px, #E8E9ED 20px) 0 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.ag-row-selected:before {
|
|
45
|
+
background: repeating-linear-gradient(45deg, #E3F6E7, #E3F6E7 10px, white 10px, white 20px) -14px 0 !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&:not(.ag-row-selected):hover:before {
|
|
49
|
+
background: repeating-linear-gradient(45deg, #EFFAF1, #EFFAF1 10px, white 10px, white 20px) -14px 0 !important;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
41
52
|
.ag-row.not-found-row-odd {
|
|
42
53
|
background: repeating-linear-gradient(45deg, #FAFAFC, #FAFAFC 10px, #F2F2F5 10px, #F2F2F5 20px) -13px 0;
|
|
43
|
-
}
|
|
44
54
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
55
|
+
&:hover:before {
|
|
56
|
+
background: repeating-linear-gradient(45deg, #F8F8FA, #F8F8FA 10px, #E8E9ED 10px, #E8E9ED 20px) -13px 0;
|
|
57
|
+
}
|
|
48
58
|
|
|
49
|
-
|
|
50
|
-
|
|
59
|
+
&.ag-row-selected:before {
|
|
60
|
+
background: repeating-linear-gradient(45deg, #E3F6E7, #E3F6E7 10px, white 10px, white 20px) 1px 0 !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&:not(.ag-row-selected):hover:before {
|
|
64
|
+
background: repeating-linear-gradient(45deg, #EFFAF1, #EFFAF1 10px, white 10px, white 20px) 1px 0 !important;
|
|
65
|
+
}
|
|
51
66
|
}
|
|
52
67
|
|
|
53
68
|
.ag-row-group {
|