diff options
| author | bobzel <zzzman@gmail.com> | 2022-03-24 11:34:53 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-03-24 11:34:53 -0400 |
| commit | af37e51657913a4f1cc1536f7d7ad9f991d4dc32 (patch) | |
| tree | 9bd45ab8c8bf244cc94716130672015f3b0a3251 /src/client/views/nodes/WebBox.scss | |
| parent | d21354fefc9f5b343e51c4db67e0bae7d0c187ee (diff) | |
fixes for webbox scroll bars and resizer divider to show up properly
Diffstat (limited to 'src/client/views/nodes/WebBox.scss')
| -rw-r--r-- | src/client/views/nodes/WebBox.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/client/views/nodes/WebBox.scss b/src/client/views/nodes/WebBox.scss index 7dc970496..9d8825ad1 100644 --- a/src/client/views/nodes/WebBox.scss +++ b/src/client/views/nodes/WebBox.scss @@ -5,10 +5,16 @@ height: 100%; position: relative; display: flex; - .webBox-background { + .webBox-sideResizer { + position: absolute; width: 100%; height: 100%; cursor: ew-resize; + background: yellow; + } + .webBox-background { + width: 100%; + height: 100%; background: lightGray; } @@ -193,7 +199,7 @@ } div.webBox-outerContent::-webkit-scrollbar-thumb { - display: none; + cursor: nw-resize; } } |
