aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver
diff options
context:
space:
mode:
authorPayBas <contact@paybas.com>2014-07-05 11:08:15 +0200
committerPayBas <contact@paybas.com>2014-07-05 11:08:15 +0200
commit2d2525f382c224e6a9437243d8fe0f27fea895ed (patch)
tree6ef95e4e20c64e1c0f760bc5a32285283ca4f7b7 /phpBB/styles/prosilver
parent53ff23671c2706c13bbe8ecca6b29b3c3456768b (diff)
downloadforums-2d2525f382c224e6a9437243d8fe0f27fea895ed.tar
forums-2d2525f382c224e6a9437243d8fe0f27fea895ed.tar.gz
forums-2d2525f382c224e6a9437243d8fe0f27fea895ed.tar.bz2
forums-2d2525f382c224e6a9437243d8fe0f27fea895ed.tar.xz
forums-2d2525f382c224e6a9437243d8fe0f27fea895ed.zip
[ticket/12813] Fix page-jump title lang and use input type=number
PHPBB3-12813
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r--phpBB/styles/prosilver/template/pagination.html2
-rw-r--r--phpBB/styles/prosilver/theme/bidi.css4
-rw-r--r--phpBB/styles/prosilver/theme/forms.css4
3 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/pagination.html b/phpBB/styles/prosilver/template/pagination.html
index cde183291d..cb2c09bff7 100644
--- a/phpBB/styles/prosilver/template/pagination.html
+++ b/phpBB/styles/prosilver/template/pagination.html
@@ -7,7 +7,7 @@
<ul class="dropdown-contents">
<li>{L_JUMP_TO_PAGE}{L_COLON}</li>
<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" />
</li>
</ul>
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css
index 65a1816c24..052418f24d 100644
--- a/phpBB/styles/prosilver/theme/bidi.css
+++ b/phpBB/styles/prosilver/theme/bidi.css
@@ -878,6 +878,10 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
margin-right: 0;
}
+.rtl input[type="number"] {
+ padding-left: 0;
+}
+
/* Quick-login on index page */
.rtl fieldset.quick-login input.inputbox {
margin-left: 5px;
diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css
index a1d70dedf6..d4a02db53d 100644
--- a/phpBB/styles/prosilver/theme/forms.css
+++ b/phpBB/styles/prosilver/theme/forms.css
@@ -276,6 +276,10 @@ textarea.inputbox {
width: auto !important;
}
+input[type="number"] {
+ padding-right: 0;
+}
+
input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;