-
Notifications
You must be signed in to change notification settings - Fork 63
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
change slider thickness [Feature] #458
Comments
That would be through custom CSS styling :) |
Please a bit of an example since i have no custom css experience
|
You can use padding in the trough highlight { /* ´trough´ is the background of the slider, ´highlight´ is the actual slider */
padding: 5px;
} |
I do not know the name of the element, but I think you can do so like this: trough highlight > *:first-child {
padding: 5px;
} |
Actually, I just found out, the knob is the trough highlight slider {
padding: 5px;
} |
Curious... It changes the size of all the slider elements... I'll test here and see what I can do about that. Edit: Actually, it's not curious haha, it makes sense. |
The slider indicator is before the highlight element. You can change it's padding with: trough slider {
padding: 5px;
} |
A tip for you: You don't need to restart SwayNC to reload configurations, you can just use swaync-client's commands: swaync-client -R # Reloads ´config.json´
swaync-client -rs # Reloads stylesheet |
There's currently no way of doing that. See #450 for future updates regarding that :) |
Please read through the README and the Man pages before submitting
Please also make sure that there isn't any prior issue describing this feature
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
is there any way to chnage the thickness of the sliders
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: