themes: Define no box-shadow on unselected tabs

As shown in a video for issue 11087, some system themes
may add a white box-shadow on the side of unselected
tabs. This patch forces box-shadow to "none" to prevent
this.
This commit is contained in:
Alx Sa 2024-03-22 16:27:55 +00:00
parent 9e0e56be95
commit db88383abb

View file

@ -160,6 +160,7 @@ notebook header tabs tab {
background-color: @bg-color; background-color: @bg-color;
background-image: none; background-image: none;
border: 1px solid @strong-border-color; border: 1px solid @strong-border-color;
box-shadow: none;
margin-left: 2px; margin-left: 2px;
margin-right: 2px; margin-right: 2px;
min-width: 30px; min-width: 30px;