Skip to content

Commit d3bd7c9

Browse files
committed
Fix start/due column width
1 parent 55dbfde commit d3bd7c9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
</tr>
4646
<tr class="line line_input">
4747
<td><input type="text" id="enter_todo" name="enter_todo" maxlength="255" /></td>
48-
<td class="start"><input type="text" id="enter_start" name="enter_start" maxlength="4" /></td>
49-
<td class="due"><input type="text" id="enter_due" name="enter_due" maxlength="20" /></td>
48+
<td class="start"><input type="text" id="enter_start" name="enter_start" maxlength="10" /></td>
49+
<td class="due"><input type="text" id="enter_due" name="enter_due" maxlength="10" /></td>
5050
<td class="actions" colspan="2"><input type="button" class="addButton" name="save" alt="<?php echo(TodoLang::_("SAVE"));?>" onclick="enter()" /></td>
5151
</tr>
5252
</thead>

todo.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ input[type="image"] {
7575
padding: 2px;
7676
box-sizing: border-box;
7777
}
78+
td.start, td.due {
79+
width: 95px;
80+
}
7881
.todo,
7982
#enter_todo {
8083
padding-left: 4px !important;
@@ -200,7 +203,7 @@ ul.ui-autocomplete {
200203
text-align: right;
201204
}
202205
#enter_due, #enter_start {
203-
width: 75%;
206+
width: 70px;
204207
}
205208
#tag_dialog .tagify {
206209
width: 280px;

0 commit comments

Comments
 (0)