Skip to content

Commit 44f772b

Browse files
author
Richard Jones
committed
force textareas to use monospace fonts, lessening surprise on the user
1 parent 09cbda8 commit 44f772b

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

CHANGES.txt

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,18 @@ Fixed:
4949

5050
Cleanup:
5151
- replace curuserid attribute on Database with the extended getuid() method.
52-
- extract a new 'mailer' module for sending mail.
53-
- extract a '_send_mail' method for testing mail sending.
54-
- simplify backend importing.
55-
- use roundup_server in demo.py.
56-
- implement newItemAction using editItemAction.
57-
- use FormError in client.py, moving the handling up to inner_main().
58-
- implemented semantic comparison of Message objects in test_mailgw.
59-
60-
61-
2003-??-?? 0.6.4
52+
- extract a new 'mailer' module for sending mail
53+
- extract a '_send_mail' method for testing mail sending
54+
- simplify backend importing
55+
- use roundup_server in demo.py
56+
- implement newItemAction using editItemAction
57+
- use FormError in client.py, moving the handling up to inner_main()
58+
- implemented semantic comparison of Message objects in test_mailgw
59+
- tidied up forms in default stylesheet
60+
- force textareas to use monospace fonts, lessening surprise on the user
61+
62+
63+
2003-12-17 0.6.4
6264
Fixed:
6365
- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)
6466
- fixed date arithmetic to limit hours-per-day to 24, not 60

templates/classic/html/style.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,15 @@ td.sidebar {
3939
padding: 1 0 0 1;
4040
white-space: nowrap;
4141
}
42-
td.sidebar form {
42+
43+
form {
4344
margin: 0 0 0 0;
4445
}
4546

47+
textarea {
48+
font-family: monospace;
49+
}
50+
4651
td.sidebar p.classblock {
4752
padding: 2 5 2 5;
4853
margin: 1 1 1 1;

templates/minimal/html/style.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,15 @@ td.sidebar {
3939
padding: 1 0 0 1;
4040
white-space: nowrap;
4141
}
42-
td.sidebar form {
42+
43+
form {
4344
margin: 0 0 0 0;
4445
}
4546

47+
textarea {
48+
font-family: monospace;
49+
}
50+
4651
td.sidebar p.classblock {
4752
padding: 2 5 2 5;
4853
margin: 1 1 1 1;

0 commit comments

Comments
 (0)