Repository: qpid-dispatch Updated Branches: refs/heads/master 934316a45 -> 4a8a77e3a
DISPATCH-560 Change selected and highlight color to blue and green respectively Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/4a8a77e3 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/4a8a77e3 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/4a8a77e3 Branch: refs/heads/master Commit: 4a8a77e3a05286ac61ca5b712b261e091066259a Parents: 934316a Author: Ernest Allen <[email protected]> Authored: Fri Nov 11 15:17:13 2016 -0500 Committer: Ernest Allen <[email protected]> Committed: Fri Nov 11 15:17:13 2016 -0500 ---------------------------------------------------------------------- console/stand-alone/plugin/css/dispatch.css | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/4a8a77e3/console/stand-alone/plugin/css/dispatch.css ---------------------------------------------------------------------- diff --git a/console/stand-alone/plugin/css/dispatch.css b/console/stand-alone/plugin/css/dispatch.css index cb82e6b..f7057c4 100644 --- a/console/stand-alone/plugin/css/dispatch.css +++ b/console/stand-alone/plugin/css/dispatch.css @@ -31,8 +31,12 @@ svg:not(.active):not(.ctrl) { cursor: crosshair; } #end-arrow-selected, #start-arrow-selected { - stroke: #00F; - fill: #00F; + stroke: #33F; + fill: #33F; +} +path.link.selected { + stroke-dasharray: 10,2; + stroke: #33F !important; } path.link { @@ -46,11 +50,6 @@ svg:not(.active):not(.ctrl) path.link { cursor: pointer; } -path.link.selected { - stroke-dasharray: 10,2; - stroke: #00F !important; -} - path.link.temp { opacity: 0.3; } @@ -63,11 +62,11 @@ path.link.small { stroke: darkgray; } path.link.highlighted { - stroke: #F00 !important; + stroke: #6F6 !important; } marker#start-arrow-highlighted, marker#end-arrow-highlighted { - fill: #F00; + fill: #6F6; } marker#start-arrow-small, marker#end-arrow-small { @@ -93,12 +92,12 @@ circle.node.reflexive { stroke-width: 2.5px; } circle.node.selected { - stroke: #F00 !important; + stroke: #6F6 !important; stroke-width: 2px; fill: #e0e0ff !important; } circle.node.highlighted { - stroke: #F00; + stroke: #6F6; } circle.node.inter-router { fill: #EAEAEA; @@ -218,7 +217,7 @@ div.grid-values.ngCellText span { } #topologyForm.selected { - border: 1px solid red; + border: 1px solid blue; } #topologyForm { border-right: 1px solid lightgray; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
