Application Topology basic CSS added
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/b6dd7b8f Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/b6dd7b8f Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/b6dd7b8f Branch: refs/heads/4.1.0-test Commit: b6dd7b8f286af128997b2b765437b10b1156f3af Parents: 0e6d099 Author: Dakshika Jayathilaka <[email protected]> Authored: Tue Dec 9 11:24:42 2014 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Tue Dec 9 14:09:31 2014 +0530 ---------------------------------------------------------------------- .../themes/theme0/css/custom/topology.css | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/b6dd7b8f/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/topology.css ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/topology.css b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/topology.css new file mode 100644 index 0000000..5d88f04 --- /dev/null +++ b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/topology.css @@ -0,0 +1,28 @@ +.node rect { + fill: #fff; +} + +.node text { font: 12px sans-serif; } + +.link { + fill: none; + stroke: #ccc; + stroke-width: 2px; +} + +div.tooltip { + position: absolute; + text-align: left; + width: 20em; + padding: .8em; + margin:1em; + font: 12px sans-serif; + background: lightsteelblue; + border: 0px; + border-radius: 8px; + pointer-events: none; +} + +.application-topology{ + text-align: center; +} \ No newline at end of file
