lounge-gtk-theme icon indicating copy to clipboard operation
lounge-gtk-theme copied to clipboard

Left border of grouped buttons missing

Open rcastill opened this issue 4 years ago • 5 comments

Here is an example of 2 buttons grouped together. The left one is missing its side border (as opposed to the single button):

image

I found the same in selects: image

Best theme BTW

rcastill avatar Aug 20 '20 17:08 rcastill

Can confirm, found the same issue. Compiled this for GTK3.24.

ptrxyz avatar Oct 07 '20 23:10 ptrxyz

Add this to the end of .themes/Lounge-night/gtk.css (and the other versions if it is relevant to you) as a workaround:

.linked > button:not(entry):first-child {
    border-left-color: rgb(37, 37, 37);
}

ptrxyz avatar Oct 12 '20 17:10 ptrxyz

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);
}

pztrn avatar Nov 05 '20 07:11 pztrn

This occurs when using a new sassc. When building this theme with version 3.6.1-2 (ubuntu 20.04.1), i got:

Снимок экрана_2020-12-03_11-53-15

No left borders and no rounded corners.

There are many errors in the console, like that:

WARNING on line 169, column 25 of ../build/gtk3-common.scss: Compound selectors may no longer be extended. Consider @extend %selected_items, :disabled instead.

I tried to build it with version 3.4.5-1 (ubuntu bionic) and everything became fine. Correct one:

Снимок экрана_2020-12-03_12-12-51

So, above fixes do not completely solve the problem.

5r-kocm avatar Dec 03 '20 06:12 5r-kocm

This is indeed due to a breaking change in Sass. See https://gitlab.gnome.org/GNOME/gtk/-/issues/2237.

johnfactotum avatar Dec 04 '20 13:12 johnfactotum