You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ak...@apache.org on 2018/09/06 14:18:41 UTC

[ambari] branch trunk updated: AMBARI-24598. Broken markup for alert on Installer Step7 (akovalenko)

This is an automated email from the ASF dual-hosted git repository.

akovalenko pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 96faa4e  AMBARI-24598. Broken markup for alert on Installer Step7 (akovalenko)
96faa4e is described below

commit 96faa4efbf438d1e224583767bab42a0bf1ba5de
Author: Aleksandr Kovalenko <ak...@apache.org>
AuthorDate: Thu Sep 6 13:46:41 2018 +0300

    AMBARI-24598. Broken markup for alert on Installer Step7 (akovalenko)
---
 ambari-web/app/styles/wizard.less                           | 7 ++++++-
 ambari-web/app/templates/common/configs/services_config.hbs | 4 ++--
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ambari-web/app/styles/wizard.less b/ambari-web/app/styles/wizard.less
index b367b9e..8341bb6 100644
--- a/ambari-web/app/styles/wizard.less
+++ b/ambari-web/app/styles/wizard.less
@@ -995,6 +995,11 @@
     overflow: hidden;
   }
 }
+.service-config-alert {
+  float: left;
+  width: 100%;
+  margin-bottom: 20px;
+}
 
 #directories {
   .config-actions {
@@ -1240,4 +1245,4 @@
   input[type="checkbox"] + label:before {
     border-color: #999999;
   }
-}
\ No newline at end of file
+}
diff --git a/ambari-web/app/templates/common/configs/services_config.hbs b/ambari-web/app/templates/common/configs/services_config.hbs
index 31914a1..23718bc 100644
--- a/ambari-web/app/templates/common/configs/services_config.hbs
+++ b/ambari-web/app/templates/common/configs/services_config.hbs
@@ -95,14 +95,14 @@
 {{/if}}
 {{#if hasChangedDependencies}}
   {{#unless controller.isInstallWizard}}
-    <div class="alert alert-warning">
+    <div class="alert alert-warning service-config-alert">
       <span>{{dependenciesMessage}}</span> <a
         href="#" {{action "showChangedDependentConfigs" target="controller"}}>{{t common.showDetails}}</a>
     </div>
   {{/unless}}
 {{/if}}
 {{#if showSelectGroupsPopup}}
-  <div class="alert alert-warning">
+  <div class="alert alert-warning service-config-alert">
     <span>{{dependenciesGroupMessage}}</span> <a
       href="#" {{action "changedDependentGroup" target="controller"}}>{{t common.showDetails}}</a>
   </div>