Limit brightness and contrast, move sliders to high z to avoid collisions
This commit is contained in:
parent
fb3658c933
commit
19913b8f48
1 changed files with 10 additions and 4 deletions
|
|
@ -98,8 +98,8 @@
|
|||
Brightness
|
||||
<input
|
||||
type="range"
|
||||
min="0"
|
||||
max="2"
|
||||
min="0.2"
|
||||
max="1.8"
|
||||
step="0.01"
|
||||
v-model.number="brightness"
|
||||
@input="updateViewerFilter"
|
||||
|
|
@ -109,8 +109,8 @@
|
|||
Contrast
|
||||
<input
|
||||
type="range"
|
||||
min="0"
|
||||
max="2"
|
||||
min="0.2"
|
||||
max="1.8"
|
||||
step="0.01"
|
||||
v-model.number="contrast"
|
||||
@input="updateViewerFilter"
|
||||
|
|
@ -344,4 +344,10 @@ export default {
|
|||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
input[type="range"] {
|
||||
pointer-events: auto;
|
||||
z-index: 1001;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue