From 0984948d890040d7f97709378c64d3c1c908c4cd Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Tue, 10 Mar 2015 13:00:41 +0200 Subject: client: show red circle around focused element (focus != selection) --- res/client/css/by-view/graph-view.scss | 7 +++++++ res/client/css/style.css | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/res/client/css/by-view/graph-view.scss b/res/client/css/by-view/graph-view.scss index cf26e67a..4ab00099 100644 --- a/res/client/css/by-view/graph-view.scss +++ b/res/client/css/by-view/graph-view.scss @@ -193,6 +193,13 @@ } +g:focus circle { + stroke: #ff0000; + stroke-opacity: 1; + stroke-width: 3px; + z-index: 1; +} + .editinfo{ position: fixed; top:-40px; diff --git a/res/client/css/style.css b/res/client/css/style.css index 00dd0f63..c7cd122a 100644 --- a/res/client/css/style.css +++ b/res/client/css/style.css @@ -882,6 +882,12 @@ p { pointer-events: all; z-index: 0; } +g:focus circle { + stroke: #ff0000; + stroke-opacity: 1; + stroke-width: 3px; + z-index: 1; } + .editinfo { position: fixed; top: -40px; -- cgit v1.3.1