mirror of
https://github.com/penpot/penpot.git
synced 2025-07-25 02:47:11 +02:00
🐛 Fix resize bar background (#6435)
This commit is contained in:
parent
71aa8e5a86
commit
66b47f9444
3 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
- Fix problem in viewer with the back button [Taiga #10907](https://tree.taiga.io/project/penpot/issue/10907)
|
- Fix problem in viewer with the back button [Taiga #10907](https://tree.taiga.io/project/penpot/issue/10907)
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
- Fix resize bar background on tokens panel [Taiga #10811](https://tree.taiga.io/project/penpot/issue/10811)
|
||||||
- Fix shortcut for history version panel [Taiga #11006](https://tree.taiga.io/project/penpot/issue/11006)
|
- Fix shortcut for history version panel [Taiga #11006](https://tree.taiga.io/project/penpot/issue/11006)
|
||||||
- Fix positioning of comment drafts when near the right / bottom edges of viewport [Taiga #10534](https://tree.taiga.io/project/penpot/issue/10534)
|
- Fix positioning of comment drafts when near the right / bottom edges of viewport [Taiga #10534](https://tree.taiga.io/project/penpot/issue/10534)
|
||||||
- Fix path having a wrong selrect [Taiga #10257](https://tree.taiga.io/project/penpot/issue/10257)
|
- Fix path having a wrong selrect [Taiga #10257](https://tree.taiga.io/project/penpot/issue/10257)
|
||||||
|
|
|
@ -85,6 +85,7 @@ $width-settings-bar-max: $s-500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.resize-area-horiz {
|
.resize-area-horiz {
|
||||||
|
background-color: var(--panel-background-color);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -193,12 +193,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.resize-area-horiz {
|
.resize-area-horiz {
|
||||||
|
background-color: var(--panel-background-color);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: $s-3 0 $s-1 0;
|
padding: $s-3 0 $s-1 0;
|
||||||
height: $s-6;
|
height: $s-6;
|
||||||
cursor: ns-resize;
|
cursor: ns-resize;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.resize-handle-horiz {
|
.resize-handle-horiz {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue