diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:26:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 06:26:50 +0000 |
commit | ed2a05fc3f8dbbbe2fafe47236c7eb7f7cc0b1a1 (patch) | |
tree | 7beef8c0a3cefe4d0231e0514e8e668ade5bd075 | |
parent | e3174a1a426bb379335616d16c244e7542279add (diff) | |
parent | 73f69a74534be17c020fd1a5e64dfce71981fc31 (diff) | |
download | stable-diffusion-webui-gfx803-ed2a05fc3f8dbbbe2fafe47236c7eb7f7cc0b1a1.tar.gz stable-diffusion-webui-gfx803-ed2a05fc3f8dbbbe2fafe47236c7eb7f7cc0b1a1.tar.bz2 stable-diffusion-webui-gfx803-ed2a05fc3f8dbbbe2fafe47236c7eb7f7cc0b1a1.zip |
Merge pull request #12792 from catboxanon/image-cropper-hide
Hide broken image crop tool
-rw-r--r-- | style.css | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2,6 +2,14 @@ @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');
+
+/* temporary fix to hide gradio crop tool until it's fixed https://github.com/gradio-app/gradio/issues/3810 */
+
+div.gradio-image button[aria-label="Edit"] {
+ display: none;
+}
+
+
/* general gradio fixes */
:root, .dark{
|