-
Notifications
You must be signed in to change notification settings - Fork 0
/
target.css
81 lines (70 loc) · 1.22 KB
/
target.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
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
#target {
margin: 0 auto;
/* font-size: 1.2em; */
margin-bottom: 15px;
float: left;
border-collapse: collapse;
}
#target thead {
cursor: pointer;
background: #c9dff0;
}
#target thead tr th {
font-weight: bold;
padding: 12px 30px;
padding-left: 42px;
}
#target thead tr th span {
padding-right: 20px;
background-repeat: no-repeat;
background-position: 100% 100%;
}
#target thead tr th.headerSortUp, #target thead tr th.headerSortDown {
background: #acc8dd;
}
#target thead tr th.headerSortUp span {
background-image: url('up-arrow.png');
}
#target thead tr th.headerSortDown span {
background-image: url('down-arrow.png');
}
#target tbody tr {
color: #000;
border: solid;
border-width: 1px 0;
}
#target tbody tr td {
text-align: center;
padding: 15px 10px;
}
#target tbody tr td.lalign {
text-align: left;
}
#target tbody tr td.valid {
background-color: #84e184;
}
#target tbody tr td.invalid {
background-color: #ff9999;
}
/* tr:first-child {
border-top: none;
}
tr:last-child {
border-bottom: none;
}
*/
#controls {
padding-bottom: 20px;
}
/* #target .headcol {
position:absolute;
width:10em;
left:0;
}
*/
#headcol-wrapper {
height: 600;
}
.groupBtn {
cursor: pointer;
}