mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-18 13:07:58 +00:00
Make table headers stick to the top
This commit is contained in:
parent
8bebdfccd8
commit
79568bc5f4
@ -4,6 +4,7 @@
|
|||||||
* Made it possible (again) to input loose JSON into find view inputs, i.e. `{ key: 'val' }` or `{ 'num': 2 }` besides `{ "strict": "json" }`.
|
* Made it possible (again) to input loose JSON into find view inputs, i.e. `{ key: 'val' }` or `{ 'num': 2 }` besides `{ "strict": "json" }`.
|
||||||
* Improved error logging and dialogs.
|
* Improved error logging and dialogs.
|
||||||
* Fixed host editing bug.
|
* Fixed host editing bug.
|
||||||
|
* Made table headers stick to the top.
|
||||||
|
|
||||||
## [v0.2.1]
|
## [v0.2.1]
|
||||||
|
|
||||||
|
@ -107,13 +107,15 @@
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
table thead {
|
thead th {
|
||||||
border-bottom: 2px solid #ccc;
|
|
||||||
}
|
|
||||||
th {
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
|
/* border-bottom: 2px solid #ccc; */
|
||||||
|
box-shadow: 0 2px #ccc;
|
||||||
|
background-color: #fff;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid :global(.blankstate) {
|
.grid :global(.blankstate) {
|
||||||
|
Loading…
Reference in New Issue
Block a user