diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-06-02 22:06:31 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-06-02 22:06:31 +0200 |
| commit | 097e54d4c0646a809eba4ed69929b2a16b682754 (patch) | |
| tree | 607fd82a476a2a445bfca516b5304d7ac00bc13f /frontend/views/graph/graph.css | |
| parent | 7eab18f839616140fe3dbc4b51e29ec903c48077 (diff) | |
dragging something
Diffstat (limited to 'frontend/views/graph/graph.css')
| -rw-r--r-- | frontend/views/graph/graph.css | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/frontend/views/graph/graph.css b/frontend/views/graph/graph.css index 1bef514..d24ce97 100644 --- a/frontend/views/graph/graph.css +++ b/frontend/views/graph/graph.css @@ -5,7 +5,7 @@ position: relative; width: 100%; height: 100%; - overflow: auto; + overflow: hidden; background: linear-gradient( -45deg, rgba(0, 0, 64, 0.2), @@ -49,4 +49,18 @@ } .box .text.description span:first-child { display: none; -}
\ No newline at end of file +} + +.handle { + position: absolute; + border: 2px solid #888; + background: #8833dd; + padding: 0.25rem; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 8rem; + user-select: none; + cursor: arrow; +} + |
