Jelajahi Sumber

AMBARI-1361. Install progress dialog WARN icon + color . (jaimin)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1443727 13f79535-47bb-0310-9956-ffa450edef68
Jaimin Jetly 12 tahun lalu
induk
melakukan
3c623614a8

+ 2 - 0
CHANGES.txt

@@ -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)
    

+ 1 - 0
ambari-web/app/styles/application.less

@@ -618,6 +618,7 @@ a:focus {
     color: #DF5F5F;
   }
   .aborted{
+    color: #FF9C09;
   }
   .timedout{
     color: #FF9C09;

+ 1 - 1
ambari-web/app/views/wizard/step9_view.js

@@ -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');
               }