diff options
Diffstat (limited to 'frontend/app/views/graph/graph.css')
| -rw-r--r-- | frontend/app/views/graph/graph.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/app/views/graph/graph.css b/frontend/app/views/graph/graph.css index 8837ea2..280ce58 100644 --- a/frontend/app/views/graph/graph.css +++ b/frontend/app/views/graph/graph.css @@ -255,6 +255,32 @@ button.box_corner:hover { opacity: 1.0; } +/* cursors */ + +.cursorList .cursors { + display: flex; + flex-flow: row wrap; + justify-content: space-between; +} +.cursorList .cursors .cursorItem { + cursor: pointer; + background: rgba(0,0,0,0.0); + transition: all 0.1s; +} +.cursorList .cursors .cursorItem:hover { + border-radius: 5px; + background: rgba(255,0,255,0.1); + display: flex; + justify-content: center; + align-items: center; + width: 50px; + height: 50px; +} +.cursorList .cursors img { + max-width: 50px; + max-height: 50px; +} + /* Graph handles */ .handle { |
