-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Left border of grouped buttons missing #18
Comments
Can confirm, found the same issue. Compiled this for GTK3.24. |
Add this to the end of .linked > button:not(entry):first-child {
border-left-color: rgb(37, 37, 37);
} |
This workaround isn't conform to other border's color. Use this instead: .linked > button:not(entry):first-child {
border-left-color: rgba(32, 32, 32, 0.3);
} |
This occurs when using a new sassc. No left borders and no rounded corners. There are many errors in the console, like that:
I tried to build it with version 3.4.5-1 (ubuntu bionic) and everything became fine. So, above fixes do not completely solve the problem. |
This is indeed due to a breaking change in Sass. See https://gitlab.gnome.org/GNOME/gtk/-/issues/2237. |
Here is an example of 2 buttons grouped together. The left one is missing its side border (as opposed to the single button):
I found the same in selects:
Best theme BTW
The text was updated successfully, but these errors were encountered: