Merge pull request #2242 from jcollie/gtk-split-separator

gtk: prevent split separator from becoming transparent
This commit is contained in:
Mitchell Hashimoto
2024-09-13 09:36:13 -07:00
committed by GitHub
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;
}