Browse Source

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

Oleg Nechiporenko 11 years ago
parent
commit
75b6707759

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

@@ -3946,6 +3946,16 @@ ul.inline li {
   max-height: 440px;
   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 {
 #step10-content {
   max-height: 440px;
   max-height: 440px;
 }
 }

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

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