From: <udi...@us...> - 2022-12-15 17:27:57
|
Revision: 1466 http://sourceforge.net/p/j-trac/code/1466 Author: udittmer Date: 2022-12-15 17:27:55 +0000 (Thu, 15 Dec 2022) Log Message: ----------- don't line-break other cells if a comment is really long Modified Paths: -------------- trunk/jtrac/src/main/java/info/jtrac/wicket/ItemViewPanel.html Modified: trunk/jtrac/src/main/java/info/jtrac/wicket/ItemViewPanel.html =================================================================== --- trunk/jtrac/src/main/java/info/jtrac/wicket/ItemViewPanel.html 2022-12-13 08:45:26 UTC (rev 1465) +++ trunk/jtrac/src/main/java/info/jtrac/wicket/ItemViewPanel.html 2022-12-15 17:27:55 UTC (rev 1466) @@ -48,20 +48,20 @@ <table class="jtrac jtrac-view" width="100%"> <tr> - <th><wicket:message key="item_view.loggedBy"/></th> - <th><wicket:message key="item_view.status"/></th> - <th><wicket:message key="item_view.assignedTo"/></th> + <th style="white-space: nowrap;"><wicket:message key="item_view.loggedBy"/></th> + <th style="white-space: nowrap;"><wicket:message key="item_view.status"/></th> + <th style="white-space: nowrap;"><wicket:message key="item_view.assignedTo"/></th> <th><wicket:message key="item_view.comment"/></th> - <th><wicket:message key="item_view.timeStamp"/></th> + <th style="white-space: nowrap;"><wicket:message key="item_view.timeStamp"/></th> <th wicket:id="labels"><span wicket:id="label"></span></th> </tr> <tr wicket:id="history" valign="top"> - <td wicket:id="loggedBy"></td> - <td wicket:id="status"></td> - <td wicket:id="assignedTo"></td> + <td wicket:id="loggedBy" style="white-space: nowrap;"></td> + <td wicket:id="status" style="white-space: nowrap;"></td> + <td wicket:id="assignedTo" style="white-space: nowrap;"></td> <td wicket:id="comment"><span wicket:id="attachment" style="padding-right:0.5em"></span><span wicket:id="comment"></span></td> - <td wicket:id="timeStamp"></td> + <td wicket:id="timeStamp" style="white-space: nowrap;"></td> <td wicket:id="fields"><span wicket:id="field"></span></td> </tr> </table> -</wicket:panel> \ No newline at end of file +</wicket:panel> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |