diff options
author | Jabasukuriputo Wang <wfjsw@users.noreply.github.com> | 2023-07-23 15:32:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 15:32:13 +0000 |
commit | f2a4073aead69575e2292d7dcf832de68825b0f3 (patch) | |
tree | 0db7c94b0a983efebea78955573067305c09db3c /style.css | |
parent | 9421c11346784383c648bf105e2fda1815b16a4b (diff) | |
parent | ec83db897887b52fbf31b430cfc4386e3ad02424 (diff) | |
download | stable-diffusion-webui-gfx803-f2a4073aead69575e2292d7dcf832de68825b0f3.tar.gz stable-diffusion-webui-gfx803-f2a4073aead69575e2292d7dcf832de68825b0f3.tar.bz2 stable-diffusion-webui-gfx803-f2a4073aead69575e2292d7dcf832de68825b0f3.zip |
Merge branch 'dev' into ext-inst-pbar
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -423,15 +423,16 @@ div#extras_scale_to_tab div.form{ }
table.popup-table{
- background: white;
+ background: var(--body-background-fill);
+ color: var(--body-text-color);
border-collapse: collapse;
margin: 1em;
- border: 4px solid white;
+ border: 4px solid var(--body-background-fill);
}
table.popup-table td{
padding: 0.4em;
- border: 1px solid #ccc;
+ border: 1px solid rgba(128, 128, 128, 0.5);
max-width: 36em;
}
|