You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by da...@apache.org on 2015/05/04 08:13:12 UTC

stratos git commit: add node highlight on selection [application editor] [STRATOS-1362]

Repository: stratos
Updated Branches:
  refs/heads/master 5ebb41e20 -> dcbb16771


add node highlight on selection [application editor] [STRATOS-1362]


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/dcbb1677
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/dcbb1677
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/dcbb1677

Branch: refs/heads/master
Commit: dcbb167719b8f5273284ad1b48fb4f2c75c9b178
Parents: 5ebb41e
Author: Dakshika Jayathilaka <si...@gmail.com>
Authored: Mon May 4 11:41:48 2015 +0530
Committer: Dakshika Jayathilaka <si...@gmail.com>
Committed: Mon May 4 11:41:48 2015 +0530

----------------------------------------------------------------------
 .../console/themes/theme0/css/custom/application_editor.css       | 3 +++
 .../console/themes/theme0/js/custom/applications-editor.js        | 2 ++
 2 files changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/dcbb1677/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/application_editor.css
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/application_editor.css b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/application_editor.css
index 873d3b1..1cbeb6a 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/application_editor.css
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/css/custom/application_editor.css
@@ -188,4 +188,7 @@
 
 div#general>div>h3 {
     display: none;
+}
+.highlightme{
+    background-color: #6BCFFE;
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/stratos/blob/dcbb1677/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
index ea29755..2030635 100644
--- a/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
+++ b/components/org.apache.stratos.manager.console/console/themes/theme0/js/custom/applications-editor.js
@@ -821,6 +821,8 @@ $(document).ready(function(){
     Repaint();
 
     $('#whiteboard').on('click', '.stepnode', function(){
+        $('.stepnode').removeClass("highlightme");
+        $(this).addClass('highlightme');
         tabData($(this));
     });