1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

feat(editor): Improve node label readability in new canvas (no-changelog) (#10432)

This commit is contained in:
Alex Grozav 2024-08-16 15:42:54 +03:00 committed by GitHub
parent 334d11175e
commit 556699ac3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -213,7 +213,7 @@ function openContextMenu(event: MouseEvent) {
top: 100%;
position: absolute;
width: 100%;
min-width: 200px;
min-width: calc(var(--canvas-node--width) * 2);
margin-top: var(--spacing-2xs);
display: flex;
flex-direction: column;
@ -223,16 +223,27 @@ function openContextMenu(event: MouseEvent) {
.label {
font-size: var(--font-size-m);
line-height: var(--font-line-height-compact);
text-align: center;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
overflow-wrap: anywhere;
font-weight: var(--font-weight-bold);
line-height: var(--font-line-height-compact);
}
.subtitle {
width: 100%;
text-align: center;
color: var(--color-text-light);
font-size: var(--font-size-xs);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: var(--font-line-height-compact);
font-weight: 400;
}
.statusIcons {