diff options
author | bobzel <zzzman@gmail.com> | 2022-09-20 11:34:38 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-09-20 11:34:38 -0400 |
commit | 6ca8c250de45f1edabdf01d054d73b12d9fb791b (patch) | |
tree | 2350d26f6a82bfd8b8432fa985dd27e197788ecb /src/client/views/nodes/WebBox.scss | |
parent | 87096243391cf172c26190897c79321b3d42817c (diff) |
fixed pdf boxes to be active in lightboxview by fixing lightboxview docview to be observable so that IsLightboxDoc's will invalidate. made webBox's content 'relative' so that linksButton is in correct place. changed text highlight color to orange for webboxes
Diffstat (limited to 'src/client/views/nodes/WebBox.scss')
-rw-r--r-- | src/client/views/nodes/WebBox.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/views/nodes/WebBox.scss b/src/client/views/nodes/WebBox.scss index 85986ff27..a41f66ef0 100644 --- a/src/client/views/nodes/WebBox.scss +++ b/src/client/views/nodes/WebBox.scss @@ -5,7 +5,7 @@ width: 100%; top: 0; left: 0; - position: absolute; + position: relative; display: flex; .webBox-sideResizer { @@ -182,6 +182,12 @@ height: 100%; position: absolute; top: 0; + body { + ::selection { + color: white; + background: orange; + } + } } } |