diff options
| author | bobzel <zzzman@gmail.com> | 2023-09-07 01:28:27 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-09-07 01:28:27 -0400 |
| commit | e847215964bc02cf402eace30d6c9e19f5f0f0cf (patch) | |
| tree | e6ae82b46c18e355af98405d11b5ad2191b872c2 /src/client/views/EditableView.scss | |
| parent | df4f2c01db206e54a4ada7c9210d89dc56d48438 (diff) | |
truncate link descriptions over link lines. Fix schema view issues with multiline inputs. fix '#' field assignment for title bar of docs. fixed dashFieldView to read fields from texstbox by fixing FindDocByTitle to not match undefind. Don't end link_description input on Enter to allow multiline inputs.
Diffstat (limited to 'src/client/views/EditableView.scss')
| -rw-r--r-- | src/client/views/EditableView.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/EditableView.scss b/src/client/views/EditableView.scss index 0955ba8ff..f7c03caf9 100644 --- a/src/client/views/EditableView.scss +++ b/src/client/views/EditableView.scss @@ -3,7 +3,8 @@ overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; - overflow: hidden; + overflow: auto; + height: 100%; min-width: 20; text-overflow: ellipsis; } @@ -11,6 +12,7 @@ .editableView-container-editing-oneLine { width: 100%; height: max-content; + overflow: hidden; span { p { |
