1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #4130 from kazuhitoyokoi/master-fixoverflow

Wrap long node name in tooltip, info sidebar, and node property
This commit is contained in:
Nick O'Leary 2023-04-28 15:21:37 +01:00 committed by GitHub
commit a7cc66af93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -124,7 +124,7 @@
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding:0; padding:0;
overflow-wrap: anywhere;
li { li {
display: inline-block; display: inline-block;
padding:0; padding:0;

View File

@ -35,6 +35,7 @@
padding: 8px; padding: 8px;
border-radius: 2px; border-radius: 2px;
background: var(--red-ui-popover-background); background: var(--red-ui-popover-background);
overflow-wrap: anywhere;
} }
.red-ui-popover:after, .red-ui-popover:before { .red-ui-popover:after, .red-ui-popover:before {
border: solid transparent; border: solid transparent;

View File

@ -31,6 +31,7 @@
> span { > span {
display: inline-block; display: inline-block;
margin-left: 5px; margin-left: 5px;
overflow-wrap: anywhere;
} }
border-bottom: 1px solid var(--red-ui-secondary-border-color); border-bottom: 1px solid var(--red-ui-secondary-border-color);
} }