diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-15 08:11:59 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-15 08:11:59 +0000 |
commit | 0c5427960b3a4ffe6d673c28e8e135b26f015717 (patch) | |
tree | 7b10c76b341af524b9f488592290c7cde9d7d104 /style.css | |
parent | cc41cc4349514bbfeb9f37445c931a050b076bd6 (diff) | |
download | stable-diffusion-webui-gfx803-0c5427960b3a4ffe6d673c28e8e135b26f015717.tar.gz stable-diffusion-webui-gfx803-0c5427960b3a4ffe6d673c28e8e135b26f015717.tar.bz2 stable-diffusion-webui-gfx803-0c5427960b3a4ffe6d673c28e8e135b26f015717.zip |
make modal toolbar and icon opacity adjustable
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -679,7 +679,7 @@ table.popup-table .link{ transition: 0.2s ease background-color;
}
.modalControls:hover {
- background-color:rgba(0,0,0,0.9);
+ background-color:rgba(0,0,0, var(--sd-webui-modal-lightbox-toolbar-opacity));
}
.modalClose {
margin-left: auto;
@@ -761,7 +761,7 @@ table.popup-table .link{ .modalPrev,
.modalNext,
.modalControls .cursor {
- opacity: 0;
+ opacity: var(--sd-webui-modal-lightbox-icon-opacity);
}
}
|