diff options
Diffstat (limited to 'install/ui/less/widgets.less')
-rw-r--r-- | install/ui/less/widgets.less | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/install/ui/less/widgets.less b/install/ui/less/widgets.less index 99b22068d..0f9bc8c17 100644 --- a/install/ui/less/widgets.less +++ b/install/ui/less/widgets.less @@ -144,4 +144,47 @@ } // workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=409254 -tbody:empty { display: none; }
\ No newline at end of file +tbody:empty { display: none; } + +// Topology Graph + +.topology-view { + svg { + background-color: #FFF; + cursor: default; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + } + + path.link { + fill: none; + stroke-width: 4px; + cursor: pointer; + } + + .marker { + stroke: rgba(0, 0, 0); + } + + path.link.selected { + stroke-dasharray: 10,2; + } + + circle.node { + stroke-width: 1.5px; + cursor: pointer; + } + + text { + font: 16px sans-serif; + pointer-events: none; + } + + text.id { + text-anchor: middle; + font-weight: bold; + } +} |