diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-08 13:17:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-08 13:17:34 +0000 |
commit | 8850fc23b6e8a8e210bdfe4aade81516fb5770f3 (patch) | |
tree | f0f83be43c90c6cc81024743068ce1a650e5e07f | |
parent | 0d194e4ecc97c4a9a7851af6ce8688f09dc94222 (diff) | |
parent | cf2f6f20042af79037dac2032294a7ba74cc17b8 (diff) | |
download | stable-diffusion-webui-gfx803-8850fc23b6e8a8e210bdfe4aade81516fb5770f3.tar.gz stable-diffusion-webui-gfx803-8850fc23b6e8a8e210bdfe4aade81516fb5770f3.tar.bz2 stable-diffusion-webui-gfx803-8850fc23b6e8a8e210bdfe4aade81516fb5770f3.zip |
Merge pull request #6478 from mezotaken/master
Fix quicksetting name overlapping with its controls.
-rw-r--r-- | style.css | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -512,7 +512,7 @@ input[type="range"]{ border: none;
background: none;
flex: unset;
- gap: 0.5em;
+ gap: 1em;
}
#quicksettings > div > div{
@@ -521,6 +521,17 @@ input[type="range"]{ padding: 0;
}
+#quicksettings > div > div > div > div > label > span {
+ position: relative;
+ margin-right: 9em;
+ margin-bottom: -1em;
+}
+
+#quicksettings > div > div > label > span {
+ position: relative;
+ margin-bottom: -1em;
+}
+
canvas[key="mask"] {
z-index: 12 !important;
filter: invert();
|