-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.vesselTable.css
76 lines (64 loc) · 1.29 KB
/
style.vesselTable.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
#filters-vessels {
/* background-color: #f8f5f1; */
width: 100%;
/* height: 50%; */
max-height: 200px;
overflow-y: scroll;
overflow-x:scroll;
/* color: #343f56; */
/*padding: 10px;*/
/*margin-right: 10px;*/
}
/* Table formatting */
/* table { */
/* text-align: left;
font-size: 10px;
border-collapse: separate;
border-spacing: 0 0;
margin: 0 auto; */
/* !* vertical | horizontal *! */
/*text-align: right;*/
/* } */
/* Don't also do text drag selection */
table.text-unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
cursor: default;
}
th, td {
/*background-color: #f2f2f2;*/
font-size: 9pt;
/* padding: 0 8px; */
}
/*tr {*/
/* font-size: 10pt;*/
/*}*/
/* tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #f2f2f2;
} */
/* Style for selected marks (table rows) */
tr.selected {
background-color: pink;
}
/* Recreate the D3 brush style... */
tr.mouseover {
background-color: #d6d6d6;
}
/* ...but add a darker selected and brushed color. */
tr.mouseover.selected {
background-color: #e08fa3;
}
tr.hidden {
visibility: hidden;
}
tr.visible {
visibility: visible;
}