mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12813] Fix page-jump title lang and use input type=number
PHPBB3-12813
This commit is contained in:
parent
53ff23671c
commit
2d2525f382
3 changed files with 9 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
<ul class="dropdown-contents">
|
<ul class="dropdown-contents">
|
||||||
<li>{L_JUMP_TO_PAGE}{L_COLON}</li>
|
<li>{L_JUMP_TO_PAGE}{L_COLON}</li>
|
||||||
<li class="page-jump-form">
|
<li class="page-jump-form">
|
||||||
<input type="text" name="page-number" maxlength="6" title="{L_SEARCH_KEYWORDS}" class="inputbox tiny" value="" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" />
|
<input type="number" name="page-number" maxlength="6" title="{L_JUMP_PAGE}" class="inputbox tiny" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" />
|
||||||
<input class="button2" value="{L_GO}" type="button" />
|
<input class="button2" value="{L_GO}" type="button" />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -878,6 +878,10 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl input[type="number"] {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Quick-login on index page */
|
/* Quick-login on index page */
|
||||||
.rtl fieldset.quick-login input.inputbox {
|
.rtl fieldset.quick-login input.inputbox {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
|
@ -276,6 +276,10 @@ textarea.inputbox {
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="number"] {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
-webkit-appearance: textfield;
|
-webkit-appearance: textfield;
|
||||||
-webkit-box-sizing: content-box;
|
-webkit-box-sizing: content-box;
|
||||||
|
|
Loading…
Add table
Reference in a new issue