Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- `<GridColumn />`
- `<PropertyName />` and `<PropertyValue />`

### Fixed

- Centered header-menu items in <NodeContent />

## [25.0.0] - 2025-12-01

This is a major release, and it might be not compatible with your current usage of our library. Please read about the necessary changes in the section about how to migrate.
Expand Down
7 changes: 4 additions & 3 deletions src/extensions/react-flow/nodes/_nodes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
border-radius: $reactflow-node-border-radius;

&:hover {
box-shadow: 0 0 0 6 * $reactflow-node-border-width eccgui-color-rgba($reactflow-edge-stroke-color-selected, 0.05);
box-shadow: 0 0 0 6 * $reactflow-node-border-width
eccgui-color-rgba($reactflow-edge-stroke-color-selected, 0.05);
}

&.was-resized.is-resizable-vertical {
Expand Down Expand Up @@ -147,8 +148,10 @@

.#{$eccgui}-graphviz__node__header-depiction,
.#{$eccgui}-graphviz__node__header-menu {
display: flex;
flex-grow: 0;
flex-shrink: 0;
align-items: center;
max-height: calc(#{$reactflow-node-basesize} - #{2 * $reactflow-node-border-width});
margin: 0 $eccgui-size-block-whitespace * 0.25;

Expand All @@ -158,8 +161,6 @@
}

.#{$eccgui}-graphviz__node__header-depiction {
display: flex;
align-items: center;
justify-content: center;

/* TODO: does not work correctly with tooltips around
Expand Down