diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-14 07:02:51 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-14 07:02:51 +0000 |
commit | ce515b81c57a2028ea515bd8f6f7984ba0f08963 (patch) | |
tree | c29fed132fa630d6715bd92fa21326cf2cbc09d1 /style.css | |
parent | 2cfaffb239bb2b99aab06352f8c101e48e48dec9 (diff) | |
download | stable-diffusion-webui-gfx803-ce515b81c57a2028ea515bd8f6f7984ba0f08963.tar.gz stable-diffusion-webui-gfx803-ce515b81c57a2028ea515bd8f6f7984ba0f08963.tar.bz2 stable-diffusion-webui-gfx803-ce515b81c57a2028ea515bd8f6f7984ba0f08963.zip |
set up a system to provide extra info for settings elements in python rather than js
add a bit of spacing/styling to settings elements
add link info for token merging
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -421,6 +421,26 @@ table.settings-value-table td{ color: #aaa !important;
}
+#settings span{
+ color: var(--body-text-color);
+}
+
+#settings .gradio-textbox, #settings .gradio-slider, #settings .gradio-number, #settings .gradio-dropdown, #settings .gradio-checkboxgroup{
+ margin-top: 0.75em;
+}
+
+.gradio-textbox .settings-comment, .gradio-slider .settings-comment, .gradio-number .settings-comment, .gradio-dropdown .settings-comment, .gradio-checkboxgroup .settings-comment {
+ display: inline
+}
+
+.settings-comment a{
+ text-decoration: underline;
+}
+
+.settings-comment .info{
+ opacity: 0.75;
+}
+
/* live preview */
.progressDiv{
position: relative;
|