diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:26:50 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:45:03 +0000 |
commit | 5359dc0a103171d830f5c8a3106ef2e6a0a41366 (patch) | |
tree | 69a2fd3da0a5e4f51f146e9525150da3c2824eb3 /style.css | |
parent | 7989765faad6d3456eacfb774c9498b20e457b35 (diff) | |
download | stable-diffusion-webui-gfx803-5359dc0a103171d830f5c8a3106ef2e6a0a41366.tar.gz stable-diffusion-webui-gfx803-5359dc0a103171d830f5c8a3106ef2e6a0a41366.tar.bz2 stable-diffusion-webui-gfx803-5359dc0a103171d830f5c8a3106ef2e6a0a41366.zip |
Merge pull request #12792 from catboxanon/image-cropper-hide
Hide broken image crop tool
Diffstat (limited to 'style.css')
-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{
|