What I’m trying to do
Draw a thick line below the header of a bases’ result table.
Things I have tried
I created the following css-snippet.
.bases-table-header {
border-bottom: solid 3px #ff4040;
}
As one can see, the thick line does not expand over the whole width of the column.
So I tried the following:
.bases-table-header,
.bases-table-header-sort,
.bases-table-header-resizer {
border-bottom: solid 3px #ff4040;
}
If you look very closely, you can see that .bases-table-header-resizer works fine (the short line at the far right position), but the line defined by css class .bases-table-header-sort is slightly misplaced to the top and to the right.
I did some experiments in developer console with disabling css properties and the like, but didn’t find a solution. Can anyone give me a hint?


