Fix #4375: The popup note boxes are very long

This commit is contained in:
evazion
2020-03-29 02:31:55 -05:00
parent 919a2868be
commit c44267b848

View File

@@ -12,12 +12,13 @@
background: var(--note-body-background); background: var(--note-body-background);
color: var(--note-body-text-color); color: var(--note-body-text-color);
min-width: 140px; min-width: 140px;
max-width: 0;
min-height: 1em; min-height: 1em;
line-height: 1.25; line-height: 1.25;
cursor: pointer; cursor: pointer;
padding: 4px; padding: 4px;
z-index: 150; z-index: 150;
overflow: hidden; overflow-wrap: break-word;
} }
div.note-body, div.note-box.embedded div.note-box-inner-border { div.note-body, div.note-box.embedded div.note-box-inner-border {