mirror of
https://github.com/penpot/penpot.git
synced 2025-05-03 06:55:54 +02:00
🐛 Fix menu shadow color (#5793)
This commit is contained in:
parent
0c275cf490
commit
73ff1b4fe5
3 changed files with 39 additions and 39 deletions
|
@ -64,6 +64,7 @@ is a number of cores)
|
|||
|
||||
### :bug: Bugs fixed
|
||||
|
||||
- Fix menu shadow color [Taiga #10102](https://tree.taiga.io/project/penpot/issue/10102)
|
||||
- Fix problem with alt key measures being stuck [Taiga #9348](https://tree.taiga.io/project/penpot/issue/9348)
|
||||
- Fix error when reseting stroke cap
|
||||
- Fix problem with strokes not refreshing in Safari [Taiga #9040](https://tree.taiga.io/project/penpot/issue/9040)
|
||||
|
|
|
@ -215,7 +215,7 @@
|
|||
--menu-shortcut-foreground-color: var(--color-foreground-secondary);
|
||||
--menu-shortcut-foreground-color-selected: var(--color-foreground-primary);
|
||||
--menu-shortcut-foreground-color-hover: var(--color-foreground-primary);
|
||||
--menu-shadow-color: var(--color-shadow);
|
||||
--menu-shadow-color: var(--color-shadow-dark);
|
||||
--menu-background-color-disabled: var(--color-background-primary);
|
||||
--menu-foreground-color-disabled: var(--color-foreground-secondary);
|
||||
--menu-border-color-disabled: var(--color-background-quaternary);
|
||||
|
|
|
@ -115,6 +115,7 @@
|
|||
top: $s-44;
|
||||
left: 50%;
|
||||
z-index: $z-index-20;
|
||||
}
|
||||
|
||||
.grid-actions-container {
|
||||
@include flexRow;
|
||||
|
@ -137,25 +138,23 @@
|
|||
padding-left: $s-8;
|
||||
}
|
||||
|
||||
.board-name {
|
||||
}
|
||||
|
||||
.locate-btn {
|
||||
@extend .button-secondary;
|
||||
text-transform: uppercase;
|
||||
padding: $s-8 $s-20;
|
||||
font-size: $fs-11;
|
||||
}
|
||||
|
||||
.done-btn {
|
||||
@extend .button-primary;
|
||||
text-transform: uppercase;
|
||||
padding: $s-8 $s-20;
|
||||
font-size: $fs-11;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
@extend .button-tertiary;
|
||||
svg {
|
||||
@extend .button-icon;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue