[Help] How to add thumb to the Scale widget
I'm sorry. Probably not the right place to ask for this. But I couldn't find any solution anywhere.
I'm using the Scale widget to show a slider, but when I'm setting the property
* {
all: unset;
}
the slider is no longer having the thumb. So how can I add the thumb again (what elements to select in css?). This is kind of what I want:
But I want custom styling for the thumb here.
.scale trough slider{
/*css here*/
}
You can find this information by running eww inspector in the terminal
I also can't find any solution
.scale trough slider{ /*css here*/ }You can find this information by running
eww inspectorin the terminal
It doesn't work. No matter what I change, nothing happens. Min-width, border, background, background-image, color. Nothing.
After tweaking around, i got it working.
.scale trough slider{
background-image: none;
background-color: #aa3434;
border: none;
padding: 0;
box-shadow:none;
}