hyperdx/packages/app/styles/LogTable.module.scss
Shorpo 04f82d71db
LogTable and LogSidePanel UI tweaks (#88)
* 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 

![Screenshot 2023-11-08 at 9 18 01 PM](https://github.com/hyperdxio/hyperdx/assets/149748269/8ebe6065-002f-4c02-ae9f-e436d92a5983)

![Screenshot 2023-11-08 at 9 18 09 PM](https://github.com/hyperdxio/hyperdx/assets/149748269/1f96406a-d88e-4344-aee2-533b77102e5c)

![Screenshot 2023-11-08 at 9 18 12 PM](https://github.com/hyperdxio/hyperdx/assets/149748269/43c57e20-1941-4eb3-9e82-30539c009b1f)
2023-11-10 00:54:32 +00:00

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;
}
}