diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-12 23:41:31 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-12 23:41:31 -0400 |
| commit | 0ddb1a572d3579469bc08469d43c6fcdb114f901 (patch) | |
| tree | e3e5a3420d3b3dcc5c456e989420a9c04f22e81e /src/client/views/nodes/formattedText/FormattedTextBox.scss | |
| parent | 93b72ab7818e48592e9d42d092fa91b4ebedd49e (diff) | |
fixed stacking view selections to have the right bounding box. fixed text boxes to work with headerVIew template which has multiple text boxes in it.
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.scss')
| -rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.scss b/src/client/views/nodes/formattedText/FormattedTextBox.scss index 847b1bb30..43e64d2d2 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.scss +++ b/src/client/views/nodes/formattedText/FormattedTextBox.scss @@ -43,7 +43,7 @@ overflow: auto; display: inline-block; width: 100%; - height: 100%; + height: unset; } .formattedTextBox-sidebar-handle { @@ -51,7 +51,8 @@ top: 0; //top: calc(50% - 17.5px); // use this to center vertically -- make sure it looks okay for slide views width: 10px; - height: 35px; + height: 100%; + max-height: 35px; background: lightgray; border-radius: 20px; cursor:grabbing; |
