diff options
| author | tschicke-brown <tyler_schicke@brown.edu> | 2019-01-26 17:23:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-26 17:23:42 -0500 |
| commit | f8ce9c45eeba1eccb4244a08e2c752fe4cf39105 (patch) | |
| tree | be39c0c927ae4649c8505ef33c7f1c8272974ca2 /src/views/ContextMenu.scss | |
| parent | 122076af3edfd432e6abe3b2571f21034d5c16e5 (diff) | |
| parent | ba3c6773a04ea83facab1f67db0025d6185c2c65 (diff) | |
Merge pull request #3 from browngraphicslab/move_doc_get_out_the_way
Move doc get out the way
Diffstat (limited to 'src/views/ContextMenu.scss')
| -rw-r--r-- | src/views/ContextMenu.scss | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/views/ContextMenu.scss b/src/views/ContextMenu.scss new file mode 100644 index 000000000..234f82eb9 --- /dev/null +++ b/src/views/ContextMenu.scss @@ -0,0 +1,34 @@ +.contextMenu-cont { + position: absolute; + display: flex; + z-index: 1000; + box-shadow: #AAAAAA .2vw .2vw .4vw; +} + +.contextMenu-item { + width: 10vw; + height: 4vh; + background: #DDDDDD; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: all .1s; +} + +.contextMenu-item:hover { + transition: all .1s; + background: #AAAAAA +} + +.contextMenu-description { + font-size: 1.5vw; + text-align: left; + width: 8vw; +}
\ No newline at end of file |
