-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresultsTable.css
More file actions
57 lines (52 loc) · 1017 Bytes
/
resultsTable.css
File metadata and controls
57 lines (52 loc) · 1017 Bytes
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
#resultsContainer {
display: flex;
width: 100%;
margin: 10px;
}
#resultsTable {
flex-grow: 1;
min-height: 600px;
display: inline-block;
overflow-y: auto;
}
.resultsTableHeader {
border: 1px solid lightgray;
border-collapse: collapse;
}
.resultsFilterSelect {
max-width: 50%;
width: 100%; /* Ensures responsiveness */
padding: 5px;
}
/* override table hover colors */
.MuiTableRow-root.Mui-selected {
background-color: rgba(13, 0, 30, 0.08);
}
.MuiTableRow-root.Mui-selected:hover {
background-color: rgba(13, 0, 30, 0.1);
}
#resultExplorer {
position: relative;
width: 0%;
min-height: 600px;
display: flex;
flex-direction: column;
overflow-y: auto;
}
#resultMetaData {
overflow-y: auto;
padding: 20px;
}
#noAnswersMessage {
width: 100%;
margin: auto;
text-align: center;
padding-top: 28vh;
}
#resultJSONContainer {
max-height: 50pc;
overflow-y: auto;
}
.verticalCenter {
vertical-align: middle;
}