diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-28 22:00:32 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-28 22:00:32 -0400 |
| commit | a5ab5caa244da261814bc10f0ae88b302da93951 (patch) | |
| tree | f78c6fe49356acbef63f7bcc14282091f4d96063 /src/client/views/nodes/WebBox.scss | |
| parent | 491f9b427f1652e5f2c19bb0506a8df74e6c385c (diff) | |
fixed webbox interactions. got rid of pdf annotation. fixed formatted text menu appearing
Diffstat (limited to 'src/client/views/nodes/WebBox.scss')
| -rw-r--r-- | src/client/views/nodes/WebBox.scss | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/client/views/nodes/WebBox.scss b/src/client/views/nodes/WebBox.scss index 2ad1129a4..eb09b0693 100644 --- a/src/client/views/nodes/WebBox.scss +++ b/src/client/views/nodes/WebBox.scss @@ -1,12 +1,19 @@ -.webBox-cont { +.webBox-cont, .webBox-cont-interactive{ padding: 0vw; position: absolute; top: 0; left:0; width: 100%; height: 100%; - overflow: scroll; + overflow: auto; + pointer-events: none ; +} +.webBox-cont-interactive { + pointer-events: all; + span { + user-select: text !important; + } } #webBox-htmlSpan { @@ -15,6 +22,12 @@ left:0; } +.webBox-overlay { + width: 100%; + height: 100%; + position: absolute; +} + .webBox-button { padding : 0vw; border: none; |
