mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
* Tweak colors and contrast for log table row hover and selected state * Styling tweaks for LogSidePanel – header, shadow, borders, etc * Add [X] button to LogSidePanel * Use CSS modules for styling * LogTable – use chevron icon instead of `>` symbol * Use `col-resize` cursor when resizing LogTable columns * Use correct env var for HDX_API_KEY in `app` to fix client sessions   
17 lines
234 B
SCSS
17 lines
234 B
SCSS
@import './variables';
|
|
|
|
.tableHead {
|
|
background: inherit;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
.tableRow {
|
|
&:hover {
|
|
background-color: $slate-800;
|
|
}
|
|
&__selected {
|
|
background-color: $slate-800;
|
|
font-weight: bold;
|
|
}
|
|
}
|