Fixed word-wrapping-at-20-chars bug; theme updates and minor textual fixes.

git-svn-id: svn://10.0.0.236/trunk@167930 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gerv%gerv.net
2005-01-17 23:55:01 +00:00
parent e8a4ad2357
commit 8e435b3104
3 changed files with 15 additions and 10 deletions

View File

@@ -58,6 +58,11 @@ input[type="text"] {
height: 20ex;
}
.label {
text-align: right;
padding-right: 0.5em;
}
.newsgroup {
font-family: monospace;
}

View File

@@ -56,6 +56,11 @@ div.sidebar {
text-align: center;
}
.label {
text-align: right;
padding-right: 0.5em;
}
.newsgroup {
font-family: monospace;
}

View File

@@ -37,12 +37,7 @@ function checkSubmitEnable() {
}
}
if (enable) {
document.getElementById("send-feedback").removeAttribute("disabled");
}
else {
document.getElementById("send-feedback").setAttribute("disabled", "true");
}
document.getElementById("send-feedback").disabled = !enable;
}
function onLoad() {
@@ -75,10 +70,10 @@ function onLoad() {
</td>
</tr>
<tr>
<td class="label">Email (optional):</td>
<td class="label">Email:</td>
<td class="widget">
<input id="email" name="email" type="text"
value="[% form.email FILTER html %]"/>
value="[% form.email FILTER html %]"/> (optional)
</td>
</tr>
<tr>
@@ -97,7 +92,7 @@ function onLoad() {
</tr>
<tr>
<td class="label">
Feedback Summary:
Summary:
</td>
<td class="widget">
<input id="subject" name="subject" type="text"
@@ -109,7 +104,7 @@ function onLoad() {
Detailed Comments:
</td>
<td class="widget">
<textarea id="comments" name="comments" wrap="hard"
<textarea id="comments" name="comments" wrap="hard" cols="72"
>[% form.comments FILTER html %]</textarea>
</td>
</tr>