-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter-table.css
More file actions
executable file
·86 lines (71 loc) · 1.31 KB
/
filter-table.css
File metadata and controls
executable file
·86 lines (71 loc) · 1.31 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.filter-table .oj-table {
display: block;
max-height: 550px;
overflow: scroll;
}
.oj-table-column-header {
height: 100%;
}
.filter-table td {
padding: 5px;
}
.filter-table-cell {
background-color: white;
}
.filter-table-header {
background-color: #f1f3f8;
}
.filter-table-error {
background-color: tomato;
}
.filter-table table,
.filter-table input {
width: 95%
}
.filter-table input {
margin-top: 10px;
}
.filter-table tr {
cursor: pointer;
color: #333;
}
#customers .filter-table .oj-selected {
background: #00C0EF;
color: #FFFFFF;
opacity: 0.8;
}
#contacts .filter-table .oj-selected {
background: #9A53B0;
color: #FFFFFF;
opacity: 0.8;
}
#leads .filter-table .oj-selected {
background: #F39C12;
color: #FFFFFF;
opacity: 0.8;
}
#activities .filter-table .oj-selected {
background: #00A65A;
color: #FFFFFF;
opacity: 0.8;
}
#customers .filter-table .oj-table-body-row.oj-hover {
background: #00C0EF;
color: #FFFFFF;
opacity: 0.5;
}
#contacts .filter-table .oj-table-body-row.oj-hover {
background: #9A53B0;
color: #FFFFFF;
opacity: 0.5;
}
#activities .filter-table .oj-table-body-row.oj-hover {
background: #00A65A;
color: #FFFFFF;
opacity: 0.5;
}
#leads .filter-table .oj-table-body-row.oj-hover {
background: #F39C12;
color: #FFFFFF;
opacity: 0.5;
}