diff options
author | Florian Horn <florianins@gmail.com> | 2022-10-27 14:20:01 +0000 |
---|---|---|
committer | Florian Horn <florianins@gmail.com> | 2022-10-27 14:20:01 +0000 |
commit | 0995e879cea8ce871489ea8e393bb0eba6edc09c (patch) | |
tree | aec2c731194ab9be9a402d123418b02418f11bca /style.css | |
parent | 737eb28faca8be2bb996ee0930ec77d1f7ebd939 (diff) | |
download | stable-diffusion-webui-gfx803-0995e879cea8ce871489ea8e393bb0eba6edc09c.tar.gz stable-diffusion-webui-gfx803-0995e879cea8ce871489ea8e393bb0eba6edc09c.tar.bz2 stable-diffusion-webui-gfx803-0995e879cea8ce871489ea8e393bb0eba6edc09c.zip |
added save button and shortcut (s) to Modal View
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -314,8 +314,8 @@ input[type="range"]{ .modalControls {
display: grid;
- grid-template-columns: 32px auto 1fr 32px;
- grid-template-areas: "zoom tile space close";
+ grid-template-columns: 32px auto 32px 1fr 32px;
+ grid-template-areas: "zoom tile save space close";
position: absolute;
top: 0;
left: 0;
@@ -333,6 +333,10 @@ input[type="range"]{ grid-area: zoom;
}
+.modalSave {
+ grid-area: save;
+}
+
.modalTileImage {
grid-area: tile;
}
@@ -346,8 +350,18 @@ input[type="range"]{ cursor: pointer;
}
+.modalSave {
+ color: white;
+ font-size: 30px;
+ margin-top: 6px;
+ font-weight: bold;
+ cursor: pointer;
+}
+
.modalClose:hover,
.modalClose:focus,
+.modalSave:hover,
+.modalSave:focus,
.modalZoom:hover,
.modalZoom:focus {
color: #999;
|