Skip to content

Commit 1a61577

Browse files
author
Richard Jones
committed
made form table cell alignment consistent [SF#621887]
1 parent 289bdaa commit 1a61577

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ are given with the most recent entry first.
2525
- implemented the missing Interval.__add__
2626
- added ability to implement new templating utility methods
2727
- expose the Date.pretty method to templating
28+
- made form table cell alignment consistent (sf bug 621887)
2829

2930

3031
2002-10-02 0.5.0

roundup/templates/classic/html/style.css

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,19 @@ table.form th.header {
8282
text-align: left;
8383
}
8484

85-
table.form td.optional {
86-
font-weight: bold;
87-
font-style: italic;
85+
table.form td {
8886
color: #333333;
8987
empty-cells: show;
88+
vertical-align: top;
9089
}
9190

92-
table.form td {
93-
color: #333333;
94-
empty-cells: show;
91+
table.form td.optional {
92+
font-weight: bold;
93+
font-style: italic;
9594
}
9695

9796
table.form td.html {
9897
color: #777777;
99-
empty-cells: show;
10098
}
10199

102100
/* style for lists */

roundup/templates/minimal/html/style.css

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,19 @@ table.form th.header {
8282
text-align: left;
8383
}
8484

85-
table.form td.optional {
86-
font-weight: bold;
87-
font-style: italic;
85+
table.form td {
8886
color: #333333;
8987
empty-cells: show;
88+
vertical-align: top;
9089
}
9190

92-
table.form td {
93-
color: #333333;
94-
empty-cells: show;
91+
table.form td.optional {
92+
font-weight: bold;
93+
font-style: italic;
9594
}
9695

9796
table.form td.html {
9897
color: #777777;
99-
empty-cells: show;
10098
}
10199

102100
/* style for lists */

0 commit comments

Comments
 (0)