aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/web/zurich/admin/index-dm.html2
-rw-r--r--templates/web/zurich/admin/index-sdm.html2
-rw-r--r--web/cobrands/zurich/_zurich.scss4
3 files changed, 6 insertions, 2 deletions
diff --git a/templates/web/zurich/admin/index-dm.html b/templates/web/zurich/admin/index-dm.html
index 81740d43e..bd8894e70 100644
--- a/templates/web/zurich/admin/index-dm.html
+++ b/templates/web/zurich/admin/index-dm.html
@@ -35,7 +35,7 @@
</tr>
[%- FOR problem IN problems %]
<tr[% ' class="adminhidden"' IF problem.state == 'hidden' %]>
- <td>[% problem.id %]</td>
+ <td class="record-id">[% problem.id %]</td>
<td>[% PROCESS value_or_nbsp value=problem.title %]</td>
<td>[% states.${problem.state} %]</td>
<td>[% problem.category %]</td>
diff --git a/templates/web/zurich/admin/index-sdm.html b/templates/web/zurich/admin/index-sdm.html
index 28c79a665..7d6f10726 100644
--- a/templates/web/zurich/admin/index-sdm.html
+++ b/templates/web/zurich/admin/index-sdm.html
@@ -25,7 +25,7 @@
</tr>
[%- FOR problem IN problems %]
<tr[% ' class="adminhidden"' IF problem.state == 'hidden' %]>
- <td>[% problem.id %]</td>
+ <td class="record-id">[% problem.id %]</td>
<td>[% PROCESS value_or_nbsp value=problem.title %]</td>
<td>[% problem.category %]</td>
<td>[% PROCESS format_time time=problem.created %]</td>
diff --git a/web/cobrands/zurich/_zurich.scss b/web/cobrands/zurich/_zurich.scss
index 287b653ed..361f57c5b 100644
--- a/web/cobrands/zurich/_zurich.scss
+++ b/web/cobrands/zurich/_zurich.scss
@@ -45,4 +45,8 @@ table.admin {
background-color: $table_heading_bg_col;
border-bottom: 2px solid $table_heading_underline_col;
}
+ td.record-id {
+ text-align: center;
+ font-weight: bold;
+ }
} \ No newline at end of file