Skip to content

Commit 7cc3edf

Browse files
committed
fix hiddenInteractions in OverviewItem, stays visible when it contains focused alements or targets with opened overlays
1 parent aab7c64 commit 7cc3edf

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
2727
- "item-magic-edit": icon for "magic" edit suggestions
2828
- "artefact-task-concatenatetofile": icon for "Concatenate to file" operator
2929

30+
### Fixed
31+
32+
- `<OverviewItemActions/>`
33+
- `hiddenInteractions` stay visible if they contain focused elements or opened overlays (e.g. context menus)
34+
3035
### Changed
3136

3237
- `<ReactFlow />`

src/components/OverviewItem/overviewitem.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,10 @@ $eccgui-size-overviewitem-line-typo-large-lineheight: $eccgui-size-typo-subtitle
193193

194194
.#{$eccgui}-overviewitem__item:hover &,
195195
.#{$eccgui}-overviewitem__item:focus &,
196-
.#{$eccgui}-overviewitem__item:active & {
196+
.#{$eccgui}-overviewitem__item:active &,
197+
&:focus-within,
198+
&:has(.#{$ns}-active),
199+
&:has(.#{$ns}-popover-open) {
197200
display: flex;
198201
}
199202
}

0 commit comments

Comments
 (0)