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
|
Brightness
|
||||||
<input
|
<input
|
||||||
type="range"
|
type="range"
|
||||||
min="0"
|
min="0.2"
|
||||||
max="2"
|
max="1.8"
|
||||||
step="0.01"
|
step="0.01"
|
||||||
v-model.number="brightness"
|
v-model.number="brightness"
|
||||||
@input="updateViewerFilter"
|
@input="updateViewerFilter"
|
||||||
|
|
@ -109,8 +109,8 @@
|
||||||
Contrast
|
Contrast
|
||||||
<input
|
<input
|
||||||
type="range"
|
type="range"
|
||||||
min="0"
|
min="0.2"
|
||||||
max="2"
|
max="1.8"
|
||||||
step="0.01"
|
step="0.01"
|
||||||
v-model.number="contrast"
|
v-model.number="contrast"
|
||||||
@input="updateViewerFilter"
|
@input="updateViewerFilter"
|
||||||
|
|
@ -344,4 +344,10 @@ export default {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="range"] {
|
||||||
|
pointer-events: auto;
|
||||||
|
z-index: 1001;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue