eww icon indicating copy to clipboard operation
eww copied to clipboard

[Help] How to add thumb to the Scale widget

Open dipanshparmar opened this issue 2 years ago • 3 comments

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: image But I want custom styling for the thumb here.

dipanshparmar avatar Dec 03 '23 08:12 dipanshparmar

.scale trough slider{
  /*css here*/
}

You can find this information by running eww inspector in the terminal

newor0599 avatar Dec 11 '23 16:12 newor0599

I also can't find any solution

.scale trough slider{
  /*css here*/
}

You can find this information by running eww inspector in the terminal

It doesn't work. No matter what I change, nothing happens. Min-width, border, background, background-image, color. Nothing.

MicrogamerCz avatar Mar 16 '24 20:03 MicrogamerCz

After tweaking around, i got it working.

.scale trough slider{
  background-image: none;
  background-color: #aa3434;
  border: none;
  padding: 0;
  box-shadow:none;
}

newor0599 avatar Jun 01 '24 14:06 newor0599