diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-15 05:07:25 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-15 05:07:25 +0000 |
commit | 127635409a7959f6c057a68ccb8e70734cbaf9f3 (patch) | |
tree | 2a851b55a081501f1218c16cc1a09b9e781bca64 /style.css | |
parent | b8bd8ce4cf687e9e02000387adf4d751b22a4a36 (diff) | |
download | stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.tar.gz stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.tar.bz2 stable-diffusion-webui-gfx803-127635409a7959f6c057a68ccb8e70734cbaf9f3.zip |
add padding and identification to generation log section (Failed to find Loras, Used embeddings, etc...)
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -227,29 +227,33 @@ button.custom-button{ align-self: end;
}
-.performance {
+.html-log .comments{
+ padding-top: 0.5em;
+}
+
+.html-log .performance {
font-size: 0.85em;
color: #444;
display: flex;
}
-.performance p{
+.html-log .performance p{
display: inline-block;
}
-.performance p.time, .performance p.vram, .performance p.time abbr, .performance p.vram abbr {
+.html-log .performance p.time, .performance p.vram, .performance p.time abbr, .performance p.vram abbr {
margin-bottom: 0;
color: var(--block-title-text-color);
}
-.performance p.time {
+.html-log .performance p.time {
}
-.performance p.vram {
+.html-log .performance p.vram {
margin-left: auto;
}
-.performance .measurement{
+.html-log .performance .measurement{
color: var(--body-text-color);
font-weight: bold;
}
|