-
Notifications
You must be signed in to change notification settings - Fork 0
/
RockGrid.css
42 lines (35 loc) · 901 Bytes
/
RockGrid.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.RockGridItem {
clear: both;
width: 100%;
height: 100%;
position: relative; /* needed for ajax reload overlay */
}
/* .RockGridWrapper:not(.autoheight) {
margin-bottom: 10px;
} */
/* ajax reload overlay */
.reloadoverlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7);
}
/* fix selection issue: https://github.com/ag-grid/ag-grid/issues/87 */
/* div.ag-root {
-webkit-user-select:text;
-moz-user-select:text;
-ms-user-select:text;
user-select:text;
} */
/* text styles */
.rg-text-center { text-align: center; }
.rg-text-right { text-align: right; }
/* background colors */
.rg-bg-green {background-color: #b9ffb9;}
.rg-bg-red {background-color: #ffb6b6;}
.rg-bg-orange {background-color: #ffcf75;}
.rg-bg-blue {background-color: #cae7ff;}
/* hide tippy tooltips */
.rg-tippy-hidden { display: none; }