fix for mobile scrolling and tool-buttons
This commit is contained in:
parent
d9c1487aef
commit
6efe3f51f6
|
@ -6,7 +6,7 @@ from tqdm import trange
|
|||
import modules.scripts as scripts
|
||||
import gradio as gr
|
||||
|
||||
from modules import processing, shared, sd_samplers, prompt_parser
|
||||
from modules import processing, shared, sd_samplers, prompt_parser, sd_samplers_common
|
||||
from modules.processing import Processed
|
||||
from modules.shared import opts, cmd_opts, state
|
||||
|
||||
|
@ -50,7 +50,7 @@ def find_noise_for_image(p, cond, uncond, cfg_scale, steps):
|
|||
|
||||
x = x + d * dt
|
||||
|
||||
sd_samplers.store_latent(x)
|
||||
sd_samplers_common.store_latent(x)
|
||||
|
||||
# This shouldn't be necessary, but solved some VRAM issues
|
||||
del x_in, sigma_in, cond_in, c_out, c_in, t,
|
||||
|
@ -104,7 +104,7 @@ def find_noise_for_image_sigma_adjustment(p, cond, uncond, cfg_scale, steps):
|
|||
dt = sigmas[i] - sigmas[i - 1]
|
||||
x = x + d * dt
|
||||
|
||||
sd_samplers.store_latent(x)
|
||||
sd_samplers_common.store_latent(x)
|
||||
|
||||
# This shouldn't be necessary, but solved some VRAM issues
|
||||
del x_in, sigma_in, cond_in, c_out, c_in, t,
|
||||
|
@ -213,4 +213,3 @@ class Script(scripts.Script):
|
|||
processed = processing.process_images(p)
|
||||
|
||||
return processed
|
||||
|
||||
|
|
31
style.css
31
style.css
|
@ -1814,6 +1814,37 @@ input:focus {
|
|||
width: 12px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1024px) {
|
||||
/* For tablets: */
|
||||
|
||||
#img2img_gallery .overflow-y-auto,
|
||||
#txt2img_gallery .overflow-y-auto {
|
||||
min-height: unset !important;
|
||||
|
||||
}
|
||||
|
||||
#img2img_settings_scroll,
|
||||
#txt2img_settings_scroll {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
#img2img_results,
|
||||
#txt2img_results {
|
||||
max-height: unset !important;
|
||||
}
|
||||
|
||||
#img2img_settings::before, #txt2img_settings::before {
|
||||
display:none;
|
||||
}
|
||||
|
||||
|
||||
#txt2img_actions_column, #img2img_actions_column {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Sliders Scrollbar */
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user