[Python-checkins] r53456 - tracker/instances/python-dev/html/issue.item.html tracker/instances/python-dev/html/style.css
erik.forsberg
python-checkins at python.org
Mon Jan 15 21:16:00 CET 2007
Author: erik.forsberg
Date: Mon Jan 15 21:15:59 2007
New Revision: 53456
Modified:
tracker/instances/python-dev/html/issue.item.html
tracker/instances/python-dev/html/style.css
Log:
Replace solution using non-standard wrap attribute with CSS solution
documented on
http://myy.helia.fi/~karte/pre-wrap-css3-mozilla-opera-ie.html
Modified: tracker/instances/python-dev/html/issue.item.html
==============================================================================
--- tracker/instances/python-dev/html/issue.item.html (original)
+++ tracker/instances/python-dev/html/issue.item.html Mon Jan 15 21:15:59 2007
@@ -236,7 +236,7 @@
</tr>
<tr>
<td colspan="4" class="content">
- <pre wrap="true" tal:content="structure msg/content/hyperlinked">content</pre>
+ <pre tal:content="structure msg/content/hyperlinked">content</pre>
</td>
</tr>
</tal:block>
Modified: tracker/instances/python-dev/html/style.css
==============================================================================
--- tracker/instances/python-dev/html/style.css (original)
+++ tracker/instances/python-dev/html/style.css Mon Jan 15 21:15:59 2007
@@ -276,6 +276,15 @@
border-right: 1px solid #afafaf;
}
+table.messages td pre {
+ white-space: pre-wrap; /* css-3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+}
+
+
/* style for file displays */
table.files {
border-spacing: 0;
More information about the Python-checkins
mailing list