diff options
| author | tschicke-brown <tyler_schicke@brown.edu> | 2019-01-20 15:09:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-20 15:09:32 -0500 |
| commit | 6cf622dda54e5b1793138c0492d71b574a6e8d75 (patch) | |
| tree | 22382a06e682a1d86be144382209fac2183165c9 /src/DocumentDecorations.scss | |
| parent | 957bb8a462d233b8064ad1a957f2525dbd5995bc (diff) | |
| parent | 08e2d1fd54824a1e8638a66ff031253ae72ab77b (diff) | |
Merge pull request #2 from browngraphicslab/move_doc_get_out_the_way
Move doc get out the way
Diffstat (limited to 'src/DocumentDecorations.scss')
| -rw-r--r-- | src/DocumentDecorations.scss | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/DocumentDecorations.scss b/src/DocumentDecorations.scss new file mode 100644 index 000000000..fff4d201a --- /dev/null +++ b/src/DocumentDecorations.scss @@ -0,0 +1,34 @@ +#documentDecorations-container { + position: absolute; + z-index: 1000; + display: grid; + grid-template-rows: 20px 1fr 20px; + grid-template-columns: 20px 1fr 20px; + pointer-events: none; +} + +#documentDecorations-centerCont { + background: none; +} + +.documentDecorations-resizer { + pointer-events: auto; + background: lightblue; + opacity: 0.8; +} + +#documentDecorations-topLeftResizer, #documentDecorations-bottomRightResizer { + cursor: nwse-resize; +} + +#documentDecorations-topRightResizer, #documentDecorations-bottomLeftResizer { + cursor: nesw-resize; +} + +#documentDecorations-topResizer, #documentDecorations-bottomResizer { + cursor: ns-resize; +} + +#documentDecorations-leftResizer, #documentDecorations-rightResizer { + cursor: ew-resize; +}
\ No newline at end of file |
