-
Hi guys how can I remove the circle at the end of the highlight? Current style .volume trough highlight {
background-color: rgb(146, 255, 175);
border: 0;
}
.volume trough {
background-color: rgba(0, 0, 0, 0.3);
border: 0;
padding: 1px;
} |
Beta Was this translation helpful? Give feedback.
Answered by
Mr-EmPee
Oct 1, 2023
Replies: 1 comment
-
The eww inspector helped my find out that it exits the slider object that basically is that circle. .volume slider {
background-image: none;
border: 0;
box-shadow: none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Mr-EmPee
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The eww inspector helped my find out that it exits the slider object that basically is that circle.
Fixed by using this css