mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-03 12:47:35 +01:00
allow blur/shadow sliders to re-enable.
This commit is contained in:
parent
2e5bbf0445
commit
a25cb024fe
@ -408,7 +408,10 @@ function switchUiMode() {
|
|||||||
if (power_user.fast_ui_mode) {
|
if (power_user.fast_ui_mode) {
|
||||||
$("#blur-strength-block").css('opacity', '0.2')
|
$("#blur-strength-block").css('opacity', '0.2')
|
||||||
$("#blur_strength").prop('disabled', true)
|
$("#blur_strength").prop('disabled', true)
|
||||||
} else { $("#blur-strength-block").css('opacity', '1') }
|
} else {
|
||||||
|
$("#blur-strength-block").css('opacity', '1')
|
||||||
|
$("#blur_strength").prop('disabled', false)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleWaifu() {
|
function toggleWaifu() {
|
||||||
@ -467,7 +470,10 @@ function noShadows() {
|
|||||||
if (power_user.noShadows) {
|
if (power_user.noShadows) {
|
||||||
$("#shadow-width-block").css('opacity', '0.2')
|
$("#shadow-width-block").css('opacity', '0.2')
|
||||||
$("#shadow_width").prop('disabled', true)
|
$("#shadow_width").prop('disabled', true)
|
||||||
} else { $("#shadow-width-block").css('opacity', '1') }
|
} else {
|
||||||
|
$("#shadow-width-block").css('opacity', '1')
|
||||||
|
$("#shadow_width").prop('disabled', false)
|
||||||
|
}
|
||||||
scrollChatToBottom();
|
scrollChatToBottom();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2252,7 +2252,7 @@ input[type="range"] {
|
|||||||
background-size: 70% 100%;
|
background-size: 70% 100%;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
box-shadow: inset 0 0 2px black;
|
box-shadow: inset 0 0 2px black;
|
||||||
cursor: grab;
|
cursor: ew-resize;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="range"]::-webkit-slider-thumb {
|
input[type="range"]::-webkit-slider-thumb {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user