gtk: prevent split separator from becoming transparent

This commit is contained in:
Jeffrey C. Ollie
2024-09-13 10:00:55 -05:00
parent d22e12f18f
commit 12a791ddf2
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
.transparent { .transparent {
background-color: transparent; background-color: transparent;
} }
separator {
background-color: rgba(36, 36, 36, 1);
background-clip: content-box;
}

View File

@ -36,3 +36,8 @@ label.size-overlay.hidden {
.transparent { .transparent {
background-color: transparent; background-color: transparent;
} }
separator {
background-color: rgba(250, 250, 250, 1);
background-clip: content-box;
}