Skip to content

Commit 426ff55

Browse files
committed
issue2550793: Wrap messages with very long lines in the web interface.
Applied to templates classic, devel, minimal and website/issues. jinja2 and responsive should already have this through bootstrap.
1 parent b8a3b5a commit 426ff55

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Features:
2121
- Drop comment in user settings about numeric hour offsets instead of using
2222
pytz timezone names. Due to DST these are wrong half of the year, it is
2323
much better to use timezone names. (Thomas Arendsen Hein)
24+
- issue2550793: Wrap messages with very long lines in the web interface.
25+
(Thomas Arendsen Hein)
2426

2527
Fixed:
2628

share/roundup/templates/classic/html/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ a[href], a[href]:link {
1414
text-decoration: none;
1515
}
1616

17+
pre {
18+
white-space: pre-wrap;
19+
}
20+
1721
table.body {
1822
border: 0;
1923
padding: 0;

share/roundup/templates/devel/html/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ body
106106
background-color: #ffffff;
107107
}
108108

109+
pre {
110+
white-space: pre-wrap;
111+
}
112+
109113
#search { text-align: right; }
110114

111115
p.ok-message

share/roundup/templates/minimal/html/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ a[href], a[href]:link {
1414
text-decoration: none;
1515
}
1616

17+
pre {
18+
white-space: pre-wrap;
19+
}
20+
1721
table.body {
1822
border: 0;
1923
padding: 0;

website/issues/html/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ body
104104
background-color: #ffffff;
105105
}
106106

107+
pre {
108+
white-space: pre-wrap;
109+
}
110+
107111
#search { text-align: right; }
108112

109113
p.ok-message

0 commit comments

Comments
 (0)