浏览代码

AMBARI-3397. Deploy progress bar is not correct. (onechiporenko)

Oleg Nechiporenko 11 年之前
父节点
当前提交
75b6707759
共有 2 个文件被更改,包括 11 次插入1 次删除
  1. 10 0
      ambari-web/app/styles/application.less
  2. 1 1
      ambari-web/app/templates/wizard/step8_log_popup.hbs

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

@@ -3946,6 +3946,16 @@ ul.inline li {
   max-height: 440px;
 }
 
+.log_popup {
+  .bar {
+    -webkit-transition: width 0.0s ease;
+    -moz-transition: width 0.0s ease;
+    -ms-transition: width 0.0s ease;
+    -o-transition: width 0.0s ease;
+    transition: width 0.0s ease;
+  }
+}
+
 #step10-content {
   max-height: 440px;
 }

+ 1 - 1
ambari-web/app/templates/wizard/step8_log_popup.hbs

@@ -16,7 +16,7 @@
 * limitations under the License.
 }}
 <p>{{view.message}}</p>
-<div class="progress">
+<div class="progress log_popup">
     <div class="bar" {{bindAttr style="view.barWidth"}}>
     </div>
 </div>