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

This commit is contained in:
gerv%gerv.net 2005-01-17 23:55:01 +00:00
Родитель a08b0e6ae5
Коммит 4af914705a
3 изменённых файлов: 15 добавлений и 10 удалений

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

@ -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>