summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/graph.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-04-01 15:31:52 +0200
committerJules Laplace <julescarbon@gmail.com>2021-04-01 15:31:52 +0200
commit5cafa9d43b769e6f60740f59293ddf3588e7b8ad (patch)
treea3d378cfbb91bec5c549e187e177a1fc327ef1fb /frontend/app/views/graph/graph.css
parent8c733583739517ff453d561f3b8fc5ca0d334819 (diff)
migration: add settings to uploads. cursor upload
Diffstat (limited to 'frontend/app/views/graph/graph.css')
-rw-r--r--frontend/app/views/graph/graph.css26
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 {