UX: Making the headers of the query results table sticky (#182)
This commit is contained in:
parent
8a1bdb5759
commit
272e9dd760
|
@ -289,7 +289,8 @@ table.group-reports {
|
||||||
.query-results {
|
.query-results {
|
||||||
section {
|
section {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-x: auto;
|
overflow: auto;
|
||||||
|
height: 1000px;
|
||||||
}
|
}
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -298,6 +299,14 @@ table.group-reports {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
thead {
|
||||||
|
th {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
color: var(--primary);
|
||||||
|
background: var(--primary-low);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.query-list {
|
.query-list {
|
||||||
|
|
Loading…
Reference in New Issue