diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-14 19:51:58 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-14 19:51:58 +0000 |
commit | 95ee0cb18817df3c4fae2e7ba7063b79b0c60b9c (patch) | |
tree | e8c4d2f9a6ff1ee4bb23fbe72e25b93488cc0ff0 /style.css | |
parent | 9893d09b4378d14c2a3ef370a5e02b906993ea86 (diff) | |
download | stable-diffusion-webui-gfx803-95ee0cb18817df3c4fae2e7ba7063b79b0c60b9c.tar.gz stable-diffusion-webui-gfx803-95ee0cb18817df3c4fae2e7ba7063b79b0c60b9c.tar.bz2 stable-diffusion-webui-gfx803-95ee0cb18817df3c4fae2e7ba7063b79b0c60b9c.zip |
restyle time taken/VRAM display
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -230,17 +230,28 @@ button.custom-button{ .performance {
font-size: 0.85em;
color: #444;
+ display: flex;
}
.performance p{
display: inline-block;
}
-.performance .time {
- margin-right: 0;
+.performance p.time, .performance p.vram, .performance p.time abbr, .performance p.vram abbr {
+ margin-bottom: 0;
+ color: var(--block-title-text-color);
}
-.performance .vram {
+.performance p.time {
+}
+
+.performance p.vram {
+ margin-left: auto;
+}
+
+.performance .measurement{
+ color: var(--body-text-color);
+ font-weight: bold;
}
#txt2img_generate, #img2img_generate {
|