You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/02/07 22:10:22 UTC

svn commit: r1443727 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/styles/application.less ambari-web/app/views/wizard/step9_view.js

Author: jaimin
Date: Thu Feb  7 21:10:22 2013
New Revision: 1443727

URL: http://svn.apache.org/r1443727
Log:
AMBARI-1361. Install progress dialog WARN icon + color . (jaimin)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/styles/application.less
    incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1443727&r1=1443726&r2=1443727&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Feb  7 21:10:22 2013
@@ -40,6 +40,8 @@ Trunk (unreleased changes):
 
  IMPROVEMENTS
 
+ AMBARI-1361. Install progress dialog WARN icon + color. (jaimin)
+
  AMBARI-1347. Expose host-level alerts via nagios_alerts.php with associated
  service component names. (yusaku)
    

Modified: incubator/ambari/trunk/ambari-web/app/styles/application.less
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/styles/application.less?rev=1443727&r1=1443726&r2=1443727&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/styles/application.less (original)
+++ incubator/ambari/trunk/ambari-web/app/styles/application.less Thu Feb  7 21:10:22 2013
@@ -618,6 +618,7 @@ a:focus {
     color: #DF5F5F;
   }
   .aborted{
+    color: #FF9C09;
   }
   .timedout{
     color: #FF9C09;

Modified: incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js?rev=1443727&r1=1443726&r2=1443727&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js (original)
+++ incubator/ambari/trunk/ambari-web/app/views/wizard/step9_view.js Thu Feb  7 21:10:22 2013
@@ -258,7 +258,7 @@ App.HostStatusView = Em.View.extend({
               } else if (taskInfo.get('status') == 'failed') {
                 taskInfo.set('icon', 'icon-exclamation-sign');
               } else if (taskInfo.get('status') == 'aborted') {
-                taskInfo.set('icon', 'icon-remove');
+                taskInfo.set('icon', 'icon-minus');
               } else if (taskInfo.get('status') == 'timedout') {
                 taskInfo.set('icon', 'icon-time');
               }