🐛 | Gin Admin Theme | In view display menu tab colour is not visible completely when select any of item
Looking at this issue too, it seems like the cause is a conflict with the Claro Theme css setting a colour in the `.add.open` class.
Instead of using !important (which might cause other side effects), I would suggest the fix targets this class specifically, by setting the Gin theme colour at the same specificity.
// _views.scss
.add {
&.open {
a {
background: var(--gin-bg-layer2);
color: var(--gin-color-primary); // ADDED
&:hover, &:focus, &:active {
color: var(--gin-color-primary);
}
}
}
}