Skip to content

Commit

Permalink
Increase the hue and alpha sliders thumb size
Browse files Browse the repository at this point in the history
Fixes #109
  • Loading branch information
mdbassit committed Jun 30, 2023
1 parent 429c2d7 commit fbe7cf4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/coloris.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,24 @@

.clr-picker input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
height: 16px;
}

.clr-picker input[type="range"]::-webkit-slider-thumb {
width: 8px;
height: 8px;
width: 16px;
height: 16px;
-webkit-appearance: none;
}

.clr-picker input[type="range"]::-moz-range-track {
width: 100%;
height: 8px;
height: 16px;
border: 0;
}

.clr-picker input[type="range"]::-moz-range-thumb {
width: 8px;
height: 8px;
width: 16px;
height: 16px;
border: 0;
}

Expand Down Expand Up @@ -91,9 +91,9 @@
.clr-hue input,
.clr-alpha input {
position: absolute;
width: calc(100% + 16px);
width: calc(100% + 32px);
height: 16px;
left: -8px;
left: -16px;
top: -4px;
margin: 0;
background-color: transparent;
Expand Down

0 comments on commit fbe7cf4

Please sign in to comment.