Commit 8d197b6a authored by AUTOMATIC's avatar AUTOMATIC

added user.css support

parent 77dcb216
......@@ -16,3 +16,4 @@ __pycache__
/webui-user.bat
/webui-user.sh
/interrogate
/user.css
......@@ -801,6 +801,11 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
with open(os.path.join(script_path, "style.css"), "r", encoding="utf8") as file:
css = file.read()
if os.path.exists(os.path.join(script_path, "style.css")):
with open(os.path.join(script_path, "user.css"), "r", encoding="utf8") as file:
usercss = file.read()
css += usercss
if not cmd_opts.no_progressbar_hiding:
css += css_hide_progressbar
......
......@@ -21,9 +21,6 @@
min-height: 4.5em;
}
#txt2img_gallery, #img2img_gallery{
min-height: 768px;
}
#txt2img_gallery img, #img2img_gallery img{
object-fit: scale-down;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment