Bug 25418: (QA follow-up) Raise size of input box
In twelve hour format the length of the string is 20 characters we need the box to fit all of them Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
5d26407e4d
commit
98c98df955
1 changed files with 3 additions and 3 deletions
|
@ -236,7 +236,7 @@
|
||||||
|
|
||||||
[% IF ( INVALID_DATE ) %]
|
[% IF ( INVALID_DATE ) %]
|
||||||
<p>
|
<p>
|
||||||
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec | $KohaDates with_hours => 1 %]" />
|
<input type="text" size="20" id="duedatespec" name="duedatespec" value="[% duedatespec | $KohaDates with_hours => 1 %]" />
|
||||||
<label for="duedatespec">Due date</label>
|
<label for="duedatespec">Due date</label>
|
||||||
</p>
|
</p>
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
|
@ -549,9 +549,9 @@
|
||||||
<div id="specify-due-date" class="circ-setting">
|
<div id="specify-due-date" class="circ-setting">
|
||||||
<div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
|
<div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
|
||||||
[% IF ( duedatespec ) %]
|
[% IF ( duedatespec ) %]
|
||||||
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec | $KohaDates with_hours => 1 %]" />
|
<input type="text" size="20" id="duedatespec" name="duedatespec" value="[% duedatespec | $KohaDates with_hours => 1 %]" />
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
<input type="text" size="13" id="duedatespec" name="duedatespec" value="" />
|
<input type="text" size="20" id="duedatespec" name="duedatespec" value="" />
|
||||||
[% END %]
|
[% END %]
|
||||||
<label for="stickyduedate"> Remember for session:</label>
|
<label for="stickyduedate"> Remember for session:</label>
|
||||||
[% IF ( stickyduedate ) %]
|
[% IF ( stickyduedate ) %]
|
||||||
|
|
Loading…
Reference in a new issue