Limit brightness and contrast, move sliders to high z to avoid collisions

This commit is contained in:
jaknapper 2025-10-16 12:45:14 +01:00
parent fb3658c933
commit 19913b8f48

View file

@ -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>