Repository: ambari
Updated Branches:
  refs/heads/trunk 986392c5c -> b06cbccbc


AMBARI-9801. Background Operation Popup: hovering on item highlights the row at 
the top level, but not when you click into host and task levels  (alexantonenko)


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

Branch: refs/heads/trunk
Commit: b06cbccbccabb271a38d14e88f3319085582fde3
Parents: 986392c
Author: Alex Antonenko <[email protected]>
Authored: Wed Feb 25 20:07:10 2015 +0200
Committer: Alex Antonenko <[email protected]>
Committed: Wed Feb 25 20:07:10 2015 +0200

----------------------------------------------------------------------
 ambari-web/app/styles/application.less                  |  3 ++-
 ambari-web/app/templates/common/host_progress_popup.hbs | 12 ++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/b06cbccb/ambari-web/app/styles/application.less
----------------------------------------------------------------------
diff --git a/ambari-web/app/styles/application.less 
b/ambari-web/app/styles/application.less
index 98a4941..478d54c 100644
--- a/ambari-web/app/styles/application.less
+++ b/ambari-web/app/styles/application.less
@@ -1435,7 +1435,7 @@ a:focus {
   .modal-body, .modal-footer, .modal-header {
     min-width: 600px;
   }
-  #service-info {
+  #service-info, #host-info, #host-log {
     .log-list-wrap:hover {
       background-color: #e6e6e6;
     }
@@ -1484,6 +1484,7 @@ a:focus {
   }
   #host-info, #service-info, #host-log {
     .log-list-wrap {
+      cursor: pointer;
       padding: 10px 10px 10px 20px;
       border-top: 1px solid #CCC;
       border-bottom: 1px solid #CCC;

http://git-wip-us.apache.org/repos/asf/ambari/blob/b06cbccb/ambari-web/app/templates/common/host_progress_popup.hbs
----------------------------------------------------------------------
diff --git a/ambari-web/app/templates/common/host_progress_popup.hbs 
b/ambari-web/app/templates/common/host_progress_popup.hbs
index e5469ec..8a74e72 100644
--- a/ambari-web/app/templates/common/host_progress_popup.hbs
+++ b/ambari-web/app/templates/common/host_progress_popup.hbs
@@ -41,8 +41,8 @@
         <div class="log-list-wrap">{{t hostPopup.noServicesToShow}}</div>
       {{else}}
         {{#each servicesInfo in view.services}}
-          <div {{bindAttr class="servicesInfo.isVisible::hidden 
:log-list-wrap"}}>
-            <div {{action gotoHosts servicesInfo}} 
class="task-list-line-cursor">
+          <div {{action gotoHosts servicesInfo}} {{bindAttr 
class="servicesInfo.isVisible::hidden :log-list-wrap"}}>
+            <div class="task-list-line-cursor">
               <div class="operation-name-icon-wrap">
                 {{view statusIcon servicesInfoBinding="servicesInfo"}}
                 <a href="#">
@@ -116,8 +116,8 @@
           <div class="log-list-wrap">{{t hostPopup.noHostsToShow}}</div>
         {{else}}
           {{#each hostInfo in view.pageContent}}
-            <div {{bindAttr class="hostInfo.isVisible::hidden 
:log-list-wrap"}}>
-              <div {{action gotoTasks hostInfo}} class="task-list-line-cursor">
+            <div {{action gotoTasks hostInfo}} {{bindAttr 
class="hostInfo.isVisible::hidden :log-list-wrap"}}>
+              <div class="task-list-line-cursor">
                 <div class="host-name-icon-wrap">
                   {{view statusIcon servicesInfoBinding="hostInfo"}}
                   <a href="#">
@@ -165,8 +165,8 @@
         <div class="log-list-wrap">{{t hostPopup.noTasksToShow}}</div>
       {{else}}
         {{#each taskInfo in view.tasks}}
-          <div {{bindAttr class="taskInfo.isVisible::hidden :log-list-wrap"}}>
-            <div {{action toggleTaskLog taskInfo}} 
class="task-list-line-cursor">
+          <div {{action toggleTaskLog taskInfo}} {{bindAttr 
class="taskInfo.isVisible::hidden :log-list-wrap"}}>
+            <div class="task-list-line-cursor">
               <div class="operation-name-icon-wrap">
                 {{view statusIcon servicesInfoBinding="taskInfo"}}
                 <a href="#">

Reply via email to