Mercurial > p > roundup > code
diff templates/classic/html/issue.item.html @ 1825:fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
'white-space: nowrap;'.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Fri, 03 Oct 2003 16:57:28 +0000 |
| parents | 5f15fb95180c |
| children | 4e4afbe3cd30 |
line wrap: on
line diff
--- a/templates/classic/html/issue.item.html Thu Oct 02 16:00:45 2003 +0000 +++ b/templates/classic/html/issue.item.html Fri Oct 03 16:57:28 2003 +0000 @@ -28,19 +28,19 @@ <table class="form"> <tr> - <th class="required" nowrap>Title</th> + <th class="required">Title</th> <td colspan=3 tal:content="structure python:context.title.field(size=60)">title</td> </tr> <tr> - <th class="required" nowrap>Priority</th> + <th class="required">Priority</th> <td tal:content="structure context/priority/menu">priority</td> - <th nowrap>Status</th> + <th>Status</th> <td tal:content="structure context/status/menu">status</td> </tr> <tr> - <th nowrap>Superseder</th> + <th>Superseder</th> <td> <span tal:replace="structure python:context.superseder.field(showid=1, size=20)" /> <span tal:replace="structure python:db.issue.classhelp('id,title', property='superseder')" /> @@ -49,7 +49,7 @@ tal:content="sup/id"></a> </span> </td> - <th nowrap>Nosy List</th> + <th>Nosy List</th> <td> <span tal:replace="structure context/nosy/field" /> <span tal:replace="structure @@ -58,9 +58,9 @@ </tr> <tr> - <th nowrap>Assigned To</th> + <th>Assigned To</th> <td tal:content="structure context/assignedto/menu">assignedto menu</td> - <th nowrap>Topics</th> + <th>Topics</th> <td> <span tal:replace="structure context/topic/field" /> <span tal:replace="structure python:db.keyword.classhelp(property='topic')" /> @@ -68,7 +68,7 @@ </tr> <tr> - <th nowrap>Change Note</th> + <th>Change Note</th> <td colspan=3> <textarea tal:content="request/form/:note/value | default" name=":note" wrap="hard" rows="5" cols="80"></textarea> @@ -76,7 +76,7 @@ </tr> <tr> - <th nowrap>File</th> + <th>File</th> <td colspan=3><input type="file" name=":file" size="40"></td> </tr> @@ -99,28 +99,28 @@ <table class="form" tal:condition="context/is_only_view_ok"> <tr> - <th nowrap>Title</th><td colspan=3 tal:content="context/title">title</td> + <th>Title</th><td colspan=3 tal:content="context/title">title</td> </tr> <tr> - <th nowrap>Priority</th><td tal:content="context/priority">priority</td> - <th nowrap>Status</th><td tal:content="context/status">status</td> + <th>Priority</th><td tal:content="context/priority">priority</td> + <th>Status</th><td tal:content="context/status">status</td> </tr> <tr> - <th nowrap>Superseder</th> + <th>Superseder</th> <td> <span tal:condition="context/superseder" tal:repeat="sup context/superseder"> <br>View: <a tal:attributes="href string:issue${sup/id}" tal:content="sup/id"></a> </span> </td> - <th nowrap>Nosy List</th><td><span tal:replace="context/nosy" /></td> + <th>Nosy List</th><td><span tal:replace="context/nosy" /></td> </tr> <tr> - <th nowrap>Assigned To</th><td tal:content="context/assignedto"></td> - <th nowrap>Topics</th><td tal:content="structure context/topic"></td> + <th>Assigned To</th><td tal:content="context/assignedto"></td> + <th>Topics</th><td tal:content="structure context/topic"></td> </tr> </table>
