diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-25 22:30:38 -0500 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-25 22:30:38 -0500 |
| commit | e25be4e4124c1da9d7f7c8b3f9ffd48e36efeabc (patch) | |
| tree | 93c3b6fd94671d511826489b3b940cb86f2d7118 /src/client/views/nodes/DocumentView.scss | |
| parent | e577ba943dc41ab8523b434a8549c8bfab696854 (diff) | |
fixed schema column selection from key press. add 'b' for creating backgrounds. added unlock for isBackground documents.
Diffstat (limited to 'src/client/views/nodes/DocumentView.scss')
| -rw-r--r-- | src/client/views/nodes/DocumentView.scss | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.scss b/src/client/views/nodes/DocumentView.scss index b121c6c18..c8efadba4 100644 --- a/src/client/views/nodes/DocumentView.scss +++ b/src/client/views/nodes/DocumentView.scss @@ -42,6 +42,23 @@ z-index: 1; } + .documentView-lock { + width: 20; + height: 20; + position: absolute; + right: -5; + top: -5; + background: black; + pointer-events: all; + opacity: 0.05; + display: flex; + border-radius: 3px; + justify-content: center; + } + .documentView-lock:hover { + opacity:1; + } + .documentView-contentBlocker { pointer-events: all; position: absolute; |
