Commit 3e336837 authored by Dave Lawrence's avatar Dave Lawrence

Bug 675171 - standardize font weight for field labels

r=glob, a=LpSolit
parent 21fde55c
...@@ -260,9 +260,9 @@ ...@@ -260,9 +260,9 @@
%] %]
</tr> </tr>
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="version"><b>Version</b></label>: <label for="version">Version</label>:
</td> </th>
[% PROCESS select selname => "version" %] [% PROCESS select selname => "version" %]
</tr> </tr>
...@@ -270,10 +270,10 @@ ...@@ -270,10 +270,10 @@
[%# PLATFORM #%] [%# PLATFORM #%]
[%############%] [%############%]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="rep_platform" accesskey="h"> <label for="rep_platform" accesskey="h">
<b>[% field_descs.rep_platform FILTER html %]</b></label>: [% field_descs.rep_platform FILTER html %]</label>:
</td> </th>
<td class="field_value"> <td class="field_value">
[% INCLUDE bug/field.html.tmpl [% INCLUDE bug/field.html.tmpl
bug = bug, field = bug_fields.rep_platform, bug = bug, field = bug_fields.rep_platform,
...@@ -299,9 +299,9 @@ ...@@ -299,9 +299,9 @@
[% BLOCK section_status %] [% BLOCK section_status %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<b><a href="page.cgi?id=fields.html#status">Status</a></b>: <a href="page.cgi?id=fields.html#status">Status</a>:
</td> </th>
<td id="bz_field_status"> <td id="bz_field_status">
<span id="static_bug_status"> <span id="static_bug_status">
[% display_value("bug_status", bug.bug_status) FILTER html %] [% display_value("bug_status", bug.bug_status) FILTER html %]
...@@ -330,10 +330,10 @@ ...@@ -330,10 +330,10 @@
[%# Importance (priority and severity) #%] [%# Importance (priority and severity) #%]
[%###############################################################%] [%###############################################################%]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="priority" accesskey="i"> <label for="priority" accesskey="i">
<b><a href="page.cgi?id=fields.html#importance"><u>I</u>mportance</a></b></label>: <a href="page.cgi?id=fields.html#importance"><u>I</u>mportance</a></label>:
</td> </th>
<td> <td>
[% INCLUDE bug/field.html.tmpl [% INCLUDE bug/field.html.tmpl
bug = bug, field = bug_fields.priority, bug = bug, field = bug_fields.priority,
...@@ -349,11 +349,11 @@ ...@@ -349,11 +349,11 @@
[% IF Param("usetargetmilestone") && bug.target_milestone %] [% IF Param("usetargetmilestone") && bug.target_milestone %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="target_milestone"> <label for="target_milestone">
<a href="page.cgi?id=fields.html#target_milestone"> <a href="page.cgi?id=fields.html#target_milestone">
Target&nbsp;Milestone</a></label>: Target&nbsp;Milestone</a></label>:
</td> </th>
[% PROCESS select selname = "target_milestone" %] [% PROCESS select selname = "target_milestone" %]
</tr> </tr>
[% END %] [% END %]
...@@ -367,9 +367,9 @@ ...@@ -367,9 +367,9 @@
[% BLOCK section_people %] [% BLOCK section_people %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<b><a href="page.cgi?id=fields.html#assigned_to">Assigned To</a></b>: <a href="page.cgi?id=fields.html#assigned_to">Assigned To</a>:
</td> </th>
<td> <td>
[% IF bug.check_can_change_field("assigned_to", 0, 1) %] [% IF bug.check_can_change_field("assigned_to", 0, 1) %]
<div id="bz_assignee_edit_container" class="bz_default_hidden"> <div id="bz_assignee_edit_container" class="bz_default_hidden">
...@@ -416,9 +416,9 @@ ...@@ -416,9 +416,9 @@
[% IF Param('useqacontact') %] [% IF Param('useqacontact') %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="qa_contact" accesskey="q"><b><u>Q</u>A Contact</b></label>: <label for="qa_contact" accesskey="q"><u>Q</u>A Contact</label>:
</td> </th>
<td> <td>
[% IF bug.check_can_change_field("qa_contact", 0, 1) %] [% IF bug.check_can_change_field("qa_contact", 0, 1) %]
<div id="bz_qa_contact_edit_container" class="bz_default_hidden"> <div id="bz_qa_contact_edit_container" class="bz_default_hidden">
...@@ -511,19 +511,19 @@ ...@@ -511,19 +511,19 @@
[% IF Param('usestatuswhiteboard') %] [% IF Param('usestatuswhiteboard') %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="status_whiteboard" accesskey="w"><b><u>W</u>hiteboard</b></label>: <label for="status_whiteboard" accesskey="w"><u>W</u>hiteboard</label>:
</td> </th>
[% PROCESS input inputname => "status_whiteboard" size => "40" colspan => 2 %] [% PROCESS input inputname => "status_whiteboard" size => "40" colspan => 2 %]
</tr> </tr>
[% END %] [% END %]
[% IF use_keywords %] [% IF use_keywords %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="keywords" accesskey="k"> <label for="keywords" accesskey="k">
<b><a href="describekeywords.cgi"><u>K</u>eywords</a></b></label>: <a href="describekeywords.cgi"><u>K</u>eywords</a></label>:
</td> </th>
<td class="field_value" colspan="2"> <td class="field_value" colspan="2">
[% INCLUDE bug/field.html.tmpl [% INCLUDE bug/field.html.tmpl
bug = bug, field = bug_fields.keywords, value = bug.keywords bug = bug, field = bug_fields.keywords, value = bug.keywords
...@@ -551,9 +551,9 @@ ...@@ -551,9 +551,9 @@
[% BLOCK section_duplicates %] [% BLOCK section_duplicates %]
[% RETURN UNLESS bug.duplicates.size %] [% RETURN UNLESS bug.duplicates.size %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="duplicates">Duplicates</label>: <label for="duplicates">Duplicates</label>:
</td> </th>
<td class="field_value" colspan="2"> <td class="field_value" colspan="2">
<span id="duplicates"> <span id="duplicates">
[% FOREACH dupe = bug.duplicates %] [% FOREACH dupe = bug.duplicates %]
...@@ -696,18 +696,18 @@ ...@@ -696,18 +696,18 @@
[% BLOCK section_dates %] [% BLOCK section_dates %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<b>Reported</b>: Reported:
</td> </th>
<td> <td>
[% bug.creation_ts FILTER time %] by [% INCLUDE global/user.html.tmpl who = bug.reporter %] [% bug.creation_ts FILTER time %] by [% INCLUDE global/user.html.tmpl who = bug.reporter %]
</td> </td>
</tr> </tr>
<tr> <tr>
<td class="field_label"> <th class="field_label">
<b> Modified</b>: Modified:
</td> </th>
<td> <td>
[% bug.delta_ts FILTER time FILTER replace(':\d\d$', '') FILTER replace(':\d\d ', ' ')%] [% bug.delta_ts FILTER time FILTER replace(':\d\d$', '') FILTER replace(':\d\d ', ' ')%]
(<a href="show_activity.cgi?id=[% bug.bug_id %]">[%# terms.Bug %]History</a>) (<a href="show_activity.cgi?id=[% bug.bug_id %]">[%# terms.Bug %]History</a>)
...@@ -721,9 +721,9 @@ ...@@ -721,9 +721,9 @@
[%############################################################################%] [%############################################################################%]
[% BLOCK section_cclist %] [% BLOCK section_cclist %]
<tr> <tr>
<td class="field_label"> <th class="field_label">
<label for="newcc" accesskey="a"><b>CC List</b>:</label> <label for="newcc" accesskey="a">CC List:</label>
</td> </th>
<td> <td>
[% IF user.id %] [% IF user.id %]
[% IF NOT bug.cc || NOT bug.cc.contains(user.login) %] [% IF NOT bug.cc || NOT bug.cc.contains(user.login) %]
...@@ -843,9 +843,9 @@ ...@@ -843,9 +843,9 @@
[% END %] [% END %]
[% IF show_bug_flags %] [% IF show_bug_flags %]
<tr> <tr>
<td class="field_label flags_label"> <th class="field_label flags_label">
<label><b>Flags:</b></label> <label>Flags:</label>
</td> </th>
<td></td> <td></td>
</tr> </tr>
<tr> <tr>
...@@ -1065,9 +1065,9 @@ ...@@ -1065,9 +1065,9 @@
<table id="bug_status_bottom" <table id="bug_status_bottom"
class="status" cellspacing="0" cellpadding="0"> class="status" cellspacing="0" cellpadding="0">
<tr> <tr>
<td class="field_label"> <th class="field_label">
<b><a href="page.cgi?id=fields.html#status">Status</a></b>: <a href="page.cgi?id=fields.html#status">Status</a>:
</td> </th>
<td> <td>
[% PROCESS bug/knob.html.tmpl %] [% PROCESS bug/knob.html.tmpl %]
</td> </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment