diff options
author | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:40:50 +0000 |
---|---|---|
committer | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:40:50 +0000 |
commit | 70283a9f4aa457ea16db8947f60b0e4f8fb25608 (patch) | |
tree | 2836d2c77c51833839b641e6f76584735f411c05 /style.css | |
parent | e1b37a066d9b35ad7896e632c27ac979f795681e (diff) | |
download | stable-diffusion-webui-gfx803-70283a9f4aa457ea16db8947f60b0e4f8fb25608.tar.gz stable-diffusion-webui-gfx803-70283a9f4aa457ea16db8947f60b0e4f8fb25608.tar.bz2 stable-diffusion-webui-gfx803-70283a9f4aa457ea16db8947f60b0e4f8fb25608.zip |
Expand the hit area of resize handle
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -1062,13 +1062,20 @@ div.accordions > div.input-accordion.input-accordion-open{ }
-.resize-handle{
+.resize-handle {
+ position: relative;
cursor: col-resize;
grid-column: 2 / 3;
- min-width: 8px !important;
- max-width: 8px !important;
+ min-width: 16px !important;
+ max-width: 16px !important;
height: 100%;
- border-left: 1px dashed var(--border-color-primary);
- user-select: none;
- margin-left: 8px;
+}
+
+.resize-handle::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 7.5px;
+ border-left: 1px dashed var(--border-color-primary);
}
|