mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
feat(editor): Improve node label readability in new canvas (no-changelog) (#10432)
This commit is contained in:
parent
334d11175e
commit
556699ac3d
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue