]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5851 fix profiles list wrapping
authorStas Vilchik <vilchiks@gmail.com>
Thu, 16 Apr 2015 12:17:41 +0000 (14:17 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 16 Apr 2015 13:07:39 +0000 (15:07 +0200)
server/sonar-web/src/main/hbs/quality-profiles/quality-profiles-profile.hbs

index 8c8fbecc3ebdf020b64f9a67728502b3ee10b6fd..ea812d191247ffc016c7ea1415b0617abf48c6f4 100644 (file)
@@ -1,8 +1,19 @@
-{{#if isInherited}}
-  <i class="icon-inheritance" title="{{tp 'quality_profiles.inherits' parentName}}"
-     data-toggle="tooltip" data-placement="bottom"></i>
-{{/if}}
-{{name}}
-{{#if isDefault}}
-  <span class="note pull-right">{{t 'default'}}</span>
-{{/if}}
+<table>
+  <tr>
+    {{#if isInherited}}
+      <td class="text-top thin spacer-right">
+        <i class="icon-inheritance" title="{{tp 'quality_profiles.inherits' parentName}}"
+           data-toggle="tooltip" data-placement="bottom"></i>
+      </td>
+    {{/if}}
+    <td class="text-top">{{name}}</td>
+    {{#if isDefault}}
+      <td class="text-top thin">
+        <span class="note pull-right">{{t 'default'}}</span>
+      </td>
+    {{/if}}
+  </tr>
+</table>
+
+
+