


GTK3/4 Themes by vinceliuice 277 comments

GTK3/4 Themes by vinceliuice 277 comments

Gnome Shell Themes by duke7553 9 comments

GTK3/4 Themes by vinceliuice 213 comments

GTK3/4 Themes by vinceliuice 213 comments
/* Switches */
.toggle-switch {
width: 40px;
height: 20px;
background-size: contain;
}
.toggle-switch-us {
background-image: url("assets/toggle-off.svg");
}
.toggle-switch-us:checked {
background-image: url("assets/toggle-on.svg");
}
.toggle-switch-intl {
background-image: url("assets/toggle-off.svg");
}
.toggle-switch-intl:checked {
background-image: url("assets/toggle-on.svg");
}
If I change that to the following, the problem is resolved on Solus. I have no idea why there should be a difference between Solus and Ubuntu.
Working Switches section for Solus:
/* Switches */
.toggle-switch {
width: 50px;
height: 20px;
background-size: contain;
background-image: url("assets/toggle-off.svg");
}
.toggle-switch:checked {
background-image: url("assets/toggle-on.svg");
}
.popup-menu-item.selected .toggle-switch {
background-image: url("assets/toggle-off.svg");
}
.popup-menu-item.selected .toggle-switch:checked {
background-image: url("assets/toggle-on.svg");
}
Basically, I removed the 'us' and 'intl' designates. Hope this helps others. - May 20 2019

GTK3/4 Themes by vinceliuice 213 comments

GTK3/4 Themes by vinceliuice 213 comments
I feel I should report here that as of 3.32 (from 3.28 for me), the following theme error occurs with GSConnect with the extension buttons like 'Do Not Disturb', and perhaps with other extensions. I am not sure whether it is an incompatibility with the new theme standards or with the latest version of GSConnect (which officially only supports Adwaita). If you want to take a look at it, you'd know more than I do. Again, thanks a lot --
https://i.imgur.com/R61dFZn.png - May 19 2019