diff options
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index 960f1e36..b97ffd07 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -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
|