aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-02-18 15:55:15 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-02-18 15:55:26 +0100
commit9364c4303004dcea2953e3f2a1d0b2cbfe60ac5f (patch)
treec1398a6bb1b1d59eebe2a0aeb85484711994b375
parent06a72d20b00789c078711a3f13baf7d5d44ad52c (diff)
downloadsonarqube-9364c4303004dcea2953e3f2a1d0b2cbfe60ac5f.tar.gz
sonarqube-9364c4303004dcea2953e3f2a1d0b2cbfe60ac5f.zip
fix form wrapping on coding rules page
-rw-r--r--server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-custom-rule-creation.hbs12
-rw-r--r--server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-manual-rule-creation.hbs6
-rw-r--r--server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-profile-activation.hbs6
3 files changed, 12 insertions, 12 deletions
diff --git a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-custom-rule-creation.hbs b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-custom-rule-creation.hbs
index fe89c48d2d5..2e141cc9932 100644
--- a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-custom-rule-creation.hbs
+++ b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-custom-rule-creation.hbs
@@ -14,14 +14,14 @@
<table>
<tr class="property">
- <th><h3>{{t 'name'}} <em class="mandatory">*</em></h3></th>
+ <th class="nowrap"><h3>{{t 'name'}} <em class="mandatory">*</em></h3></th>
<td>
<input type="text" name="name" id="coding-rules-custom-rule-creation-name"
class="coding-rules-name-key" value="{{name}}"/>
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'key'}}{{#unless change}} <em class="mandatory">*</em>{{/unless}}</h3></th>
+ <th class="nowrap"><h3>{{t 'key'}}{{#unless change}} <em class="mandatory">*</em>{{/unless}}</h3></th>
<td>
{{#if change}}
<span class="coding-rules-detail-custom-rule-key" title="{{key}}">{{key}}</span>
@@ -32,7 +32,7 @@
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'description'}} <em class="mandatory">*</em></h3></th>
+ <th class="nowrap"><h3>{{t 'description'}} <em class="mandatory">*</em></h3></th>
<td>
<textarea name="markdown_description" id="coding-rules-custom-rule-creation-html-description"
class="coding-rules-markdown-description" rows="15">{{{mdDesc}}}</textarea>
@@ -40,7 +40,7 @@
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'severity'}}</h3></th>
+ <th class="nowrap"><h3>{{t 'severity'}}</h3></th>
<td>
<select id="coding-rules-custom-rule-creation-severity">
{{#each severities}}
@@ -50,7 +50,7 @@
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'coding_rules.filters.status'}}</h3></th>
+ <th class="nowrap"><h3>{{t 'coding_rules.filters.status'}}</h3></th>
<td>
<select id="coding-rules-custom-rule-creation-status">
{{#each statuses}}
@@ -61,7 +61,7 @@
</tr>
{{#each params}}
<tr class="property">
- <th><h3>{{key}}</h3></th>
+ <th class="nowrap"><h3>{{key}}</h3></th>
<td>
{{#eq type 'TEXT'}}
<textarea class="width100" rows="3" name="{{key}}" placeholder="{{defaultValue}}">{{value}}</textarea>
diff --git a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-manual-rule-creation.hbs b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-manual-rule-creation.hbs
index c106788b2fb..293b88a7744 100644
--- a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-manual-rule-creation.hbs
+++ b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-manual-rule-creation.hbs
@@ -13,14 +13,14 @@
<table>
<tr class="property">
- <th><h3>{{t 'name'}} <em class="mandatory">*</em></h3></th>
+ <th class="nowrap"><h3>{{t 'name'}} <em class="mandatory">*</em></h3></th>
<td>
<input type="text" name="name" id="coding-rules-manual-rule-creation-name"
class="coding-rules-name-key" value="{{name}}"/>
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'key'}}{{#unless change}} <em class="mandatory">*</em>{{/unless}}</h3></th>
+ <th class="nowrap"><h3>{{t 'key'}}{{#unless change}} <em class="mandatory">*</em>{{/unless}}</h3></th>
<td>
{{#if change}}
{{key}}
@@ -31,7 +31,7 @@
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'description'}} <em class="mandatory">*</em></h3></th>
+ <th class="nowrap"><h3>{{t 'description'}} <em class="mandatory">*</em></h3></th>
<td>
<textarea name="markdown_description" id="coding-rules-manual-rule-creation-html-description"
class="coding-rules-markdown-description" rows="15">{{{mdDesc}}}</textarea>
diff --git a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-profile-activation.hbs b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-profile-activation.hbs
index cec3add7e93..4f3d1b8abbd 100644
--- a/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-profile-activation.hbs
+++ b/server/sonar-web/src/main/hbs/coding-rules/rule/coding-rules-profile-activation.hbs
@@ -18,7 +18,7 @@
<table>
<tr class="property">
- <th><h3>{{t 'coding_rules.quality_profile'}}</h3></th>
+ <th class="nowrap"><h3>{{t 'coding_rules.quality_profile'}}</h3></th>
<td>
{{#any key qProfile}}
{{name}}
@@ -32,7 +32,7 @@
</td>
</tr>
<tr class="property">
- <th><h3>{{t 'severity'}}</h3></th>
+ <th class="nowrap"><h3>{{t 'severity'}}</h3></th>
<td>
<select id="coding-rules-quality-profile-activation-severity">
{{#each severities}}
@@ -47,7 +47,7 @@
{{else}}
{{#each params}}
<tr class="property">
- <th><h3>{{key}}</h3></th>
+ <th class="nowrap"><h3>{{key}}</h3></th>
<td>
{{#eq type 'TEXT'}}
<textarea class="width100" rows="3" name="{{key}}" placeholder="{{defaultValue}}">{{value}}</textarea>