prosilver changes phpBB 3.3.5 to 3.3.6 & 3.3.6-RC1 to 3.3.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css | |
index 111d24674f..850281c8c7 100644 | |
--- a/phpBB/styles/prosilver/theme/content.css | |
+++ b/phpBB/styles/prosilver/theme/content.css | |
@@ -735,6 +735,10 @@ fieldset.polls dd div { | |
margin-bottom: 10px; | |
} | |
+.profile-rank img { | |
+ max-width: 160px; | |
+} | |
+ | |
/* Post-profile avatars */ | |
.postprofile .has-avatar .avatar-container { | |
margin-bottom: 3px; | |
diff --git a/phpBB/styles/prosilver/theme/stylesheet.css b/phpBB/styles/prosilver/theme/stylesheet.css | |
index 36199383fd..5665c839ba 100644 | |
--- a/phpBB/styles/prosilver/theme/stylesheet.css | |
+++ b/phpBB/styles/prosilver/theme/stylesheet.css | |
@@ -11,9 +11,9 @@ | |
@import url("base.css?hash=7c5543be"); | |
@import url("utilities.css?hash=d8f72c42"); | |
@import url("common.css?hash=a9741ba1"); | |
-@import url("links.css?hash=cbeb92cc"); | |
-@import url("content.css?hash=56f9e623"); | |
-@import url("buttons.css?hash=5856472d"); | |
+@import url("links.css?hash=18286e16"); | |
+@import url("content.css?hash=be57a41d"); | |
+@import url("buttons.css?hash=56f0d25f"); | |
@import url("cp.css?hash=50d868ab"); | |
@import url("forms.css?hash=b64464fb"); | |
@import url("icons.css?hash=64da33ce"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/template/memberlist_email.html b/phpBB/styles/prosilver/template/memberlist_email.html | |
index eea699da08..695fb865b6 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_email.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_email.html | |
@@ -71,7 +71,7 @@ | |
<dl> | |
<dt><label for="lang">{L_DEST_LANG}{L_COLON}</label><br /> | |
<span>{L_DEST_LANG_EXPLAIN}</span></dt> | |
- <dd><select name="lang">{S_LANG_OPTIONS}</select></dd> | |
+ <dd><select name="lang" id="lang">{S_LANG_OPTIONS}</select></dd> | |
</dl> | |
<!-- ENDIF --> | |
<dl> | |
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html | |
index f304d727f2..378fd118cc 100644 | |
--- a/phpBB/styles/prosilver/template/posting_attach_body.html | |
+++ b/phpBB/styles/prosilver/template/posting_attach_body.html | |
@@ -8,7 +8,7 @@ | |
<dl> | |
<dt><label for="fileupload">{L_FILENAME}{L_COLON}</label></dt> | |
<dd> | |
- <input type="file" name="fileupload" id="fileupload" class="inputbox autowidth" /> | |
+ <input type="file" accept="{{ ALLOWED_ATTACHMENTS }}" name="fileupload" id="fileupload" class="inputbox autowidth" /> | |
<input type="submit" name="add_file" value="{L_ADD_FILE}" class="button2" onclick="upload = true;" /> | |
</dd> | |
</dl> | |
diff --git a/phpBB/styles/prosilver/template/ucp_register.html b/phpBB/styles/prosilver/template/ucp_register.html | |
index 130de9056e..adbe173b97 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_register.html | |
+++ b/phpBB/styles/prosilver/template/ucp_register.html | |
@@ -57,10 +57,12 @@ | |
<hr /> | |
<!-- EVENT ucp_register_options_before --> | |
+ {% if S_LANG_OPTIONS %} | |
<dl> | |
- <dt><label for="lang">{L_LANGUAGE}{L_COLON}</label></dt> | |
- <dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{L_LANGUAGE}">{S_LANG_OPTIONS}</select></dd> | |
+ <dt><label for="lang">{{ lang('LANGUAGE') ~ lang('COLON') }}</label></dt> | |
+ <dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{{ lang('LANGUAGE') }}">{{ S_LANG_OPTIONS }}</select></dd> | |
</dl> | |
+ {% endif %} | |
<!-- INCLUDE timezone_option.html --> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/theme/stylesheet.css b/phpBB/styles/prosilver/theme/stylesheet.css | |
index 36199383fd..5665c839ba 100644 | |
--- a/phpBB/styles/prosilver/theme/stylesheet.css | |
+++ b/phpBB/styles/prosilver/theme/stylesheet.css | |
@@ -11,9 +11,9 @@ | |
@import url("base.css?hash=7c5543be"); | |
@import url("utilities.css?hash=d8f72c42"); | |
@import url("common.css?hash=a9741ba1"); | |
-@import url("links.css?hash=cbeb92cc"); | |
-@import url("content.css?hash=56f9e623"); | |
-@import url("buttons.css?hash=5856472d"); | |
+@import url("links.css?hash=18286e16"); | |
+@import url("content.css?hash=be57a41d"); | |
+@import url("buttons.css?hash=56f0d25f"); | |
@import url("cp.css?hash=50d868ab"); | |
@import url("forms.css?hash=b64464fb"); | |
@import url("icons.css?hash=64da33ce"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment