From 6efe3f51f6eaa8f955dfaa89b663e3c2e6d4bcad Mon Sep 17 00:00:00 2001 From: anapnoe <124302297+anapnoe@users.noreply.github.com> Date: Sat, 4 Feb 2023 16:31:32 +0200 Subject: [PATCH] fix for mobile scrolling and tool-buttons --- scripts/img2imgalt.py | 7 +++---- style.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/scripts/img2imgalt.py b/scripts/img2imgalt.py index cbdfc6b3..8f24f76d 100644 --- a/scripts/img2imgalt.py +++ b/scripts/img2imgalt.py @@ -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 - diff --git a/style.css b/style.css index d58c2285..ab494acf 100644 --- a/style.css +++ b/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 */