Просмотр исходного кода

[AMBARI-23734] Customize Services - Tooltip issues on Accounts Tab and All Configuration Tabs (#1143)

Ishan Bhatt 7 лет назад
Родитель
Сommit
5c28f9106c

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

@@ -31,6 +31,7 @@ select.form-control {
 }
 
 .popover {
+  word-wrap: break-word;  
   small {
     font-size: 1.3rem;
   }

+ 1 - 1
ambari-web/app/templates/wizard/step7/accounts_tab.hbs

@@ -38,7 +38,7 @@
         <td class="account-title">{{property.displayName}}</td>
         <td>
           <div {{bindAttr class="property.errorMessage:has-error"}}>
-            {{view property.viewClass serviceConfigBinding="property" fullWidth=true}}
+            {{view property.viewClass serviceConfigBinding="property" fullWidth=true isPopoverEnabled="false"}}
           </div>
         </td>
       </tr>

+ 1 - 0
ambari-web/app/views/common/controls_view.js

@@ -250,6 +250,7 @@ App.ServiceConfigTextFieldUserGroupWithID = Ember.View.extend(App.ServiceConfigP
   valueBinding: 'serviceConfig.value',
   placeholderBinding: 'serviceConfig.savedValue',
   classNamesBindings: 'view.fullWidth::display-inline-block',
+  isPopoverEnabled: 'false',
 
   fullWidth: false,