Преглед изворни кода

AMBARI-5443 Assign Masters Page: Wrap hostname string value for text fields. (ababiichuk)

aBabiichuk пре 11 година
родитељ
комит
c2c16c4a3d
2 измењених фајлова са 10 додато и 1 уклоњено
  1. 7 0
      ambari-web/app/styles/application.less
  2. 3 1
      ambari-web/app/templates/wizard/step5.hbs

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

@@ -3764,8 +3764,15 @@ table.graphs {
     max-width: 250px;
   }
 
+
+  .hostName {
+    word-wrap: break-word!important;
+    white-space: normal;
+    width: 220px
+  }
   .hostString {
     margin-bottom: 5px;
+    word-wrap: break-word;
   }
 
   .badge {

+ 3 - 1
ambari-web/app/templates/wizard/step5.hbs

@@ -55,7 +55,9 @@
                 </div>
                 <div class="span8">
                   {{#if isHiveCoHost}}
-                    <label class="host-name">{{selectedHost}}<i class="icon-asterisks">&#10037;</i></label>
+                    <div class="hostName">
+                      {{selectedHost}}<i class="icon-asterisks">&#10037;</i>
+                    </div>
                   {{else}}
                     {{view App.SelectHostView
                       optionValuePath="content.host_name"