mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-03 04:37:40 +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) {
|
||||
$("#blur-strength-block").css('opacity', '0.2')
|
||||
$("#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() {
|
||||
@ -467,7 +470,10 @@ function noShadows() {
|
||||
if (power_user.noShadows) {
|
||||
$("#shadow-width-block").css('opacity', '0.2')
|
||||
$("#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();
|
||||
}
|
||||
|
||||
|
@ -2252,7 +2252,7 @@ input[type="range"] {
|
||||
background-size: 70% 100%;
|
||||
background-repeat: no-repeat;
|
||||
box-shadow: inset 0 0 2px black;
|
||||
cursor: grab;
|
||||
cursor: ew-resize;
|
||||
}
|
||||
|
||||
input[type="range"]::-webkit-slider-thumb {
|
||||
|
Loading…
x
Reference in New Issue
Block a user