Created
August 23, 2015 16:09
-
-
Save nickvergessen/c05920feadfdc1f4daaa to your computer and use it in GitHub Desktop.
Style changes 3.1.5 to 3.1.6-RC1
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/style.cfg b/phpBB/styles/prosilver/style.cfg | |
index 0b13b17..13433c3 100644 | |
--- a/phpBB/styles/prosilver/style.cfg | |
+++ b/phpBB/styles/prosilver/style.cfg | |
@@ -21,8 +21,8 @@ | |
# General Information about this style | |
name = prosilver | |
copyright = © phpBB Limited, 2007 | |
-style_version = 3.1.5 | |
-phpbb_version = 3.1.5 | |
+style_version = 3.1.6 | |
+phpbb_version = 3.1.6 | |
# Defining a different template bitfield | |
# template_bitfield = lNg= | |
diff --git a/phpBB/styles/prosilver/template/attachment.html b/phpBB/styles/prosilver/template/attachment.html | |
index c227e71..4546f53 100644 | |
--- a/phpBB/styles/prosilver/template/attachment.html | |
+++ b/phpBB/styles/prosilver/template/attachment.html | |
@@ -1,8 +1,10 @@ | |
+<!-- EVENT attachment_file_before --> | |
<!-- BEGIN _file --> | |
<!-- IF _file.S_DENIED --> | |
<p>[{_file.DENIED_MESSAGE}]</p> | |
<!-- ELSE --> | |
+ <!-- EVENT attachment_file_prepend --> | |
<!-- IF _file.S_THUMBNAIL --> | |
<dl class="thumbnail"> | |
@@ -11,7 +13,6 @@ | |
</dl> | |
<!-- ENDIF --> | |
- | |
<!-- IF _file.S_IMAGE --> | |
<dl class="file"> | |
<dt class="attach-image"><img src="{_file.U_INLINE_LINK}" class="postimage" alt="{_file.DOWNLOAD_NAME}" onclick="viewableArea(this);" /></dt> | |
@@ -28,8 +29,6 @@ | |
</dl> | |
<!-- ENDIF --> | |
- | |
- | |
<!-- IF _file.S_WM_FILE --> | |
<!-- method used here from http://alistapart.com/articles/byebyeembed / autosizing seems to not work always, this will not fix --> | |
<object width="320" height="285" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" id="wmstream_{_file.ATTACH_ID}"> | |
@@ -118,5 +117,7 @@ | |
<a href="{_file.U_DOWNLOAD_LINK}">{_file.DOWNLOAD_NAME}</a> [ {_file.FILESIZE} {_file.SIZE_LANG} | {_file.L_DOWNLOAD_COUNT} ]</p> | |
<!-- ENDIF --> | |
+ <!-- EVENT attachment_file_append --> | |
<!-- ENDIF --> | |
<!-- END _file --> | |
+<!-- EVENT attachment_file_after --> | |
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js | |
index ccedf19..8e5b257 100644 | |
--- a/phpBB/styles/prosilver/template/forum_fn.js | |
+++ b/phpBB/styles/prosilver/template/forum_fn.js | |
@@ -34,7 +34,7 @@ function popup(url, width, height, name) { | |
function pageJump(item) { | |
'use strict'; | |
- var page = item.val(), | |
+ var page = parseInt(item.val(), 10), | |
perPage = item.attr('data-per-page'), | |
baseUrl = item.attr('data-base-url'), | |
startName = item.attr('data-start-name'); | |
@@ -156,7 +156,11 @@ function selectCode(a) { | |
// Safari and Chrome | |
if (s.setBaseAndExtent) { | |
var l = (e.innerText.length > 1) ? e.innerText.length - 1 : 1; | |
- s.setBaseAndExtent(e, 0, e, l); | |
+ try { | |
+ s.setBaseAndExtent(e, 0, e, l); | |
+ } catch (error) { | |
+ s.setBaseAndExtent(e, 0, e, 1); | |
+ } | |
} | |
// Firefox and Opera | |
else { | |
diff --git a/phpBB/styles/prosilver/template/mcp_forum.html b/phpBB/styles/prosilver/template/mcp_forum.html | |
index 8fdec01..9b472cc 100644 | |
--- a/phpBB/styles/prosilver/template/mcp_forum.html | |
+++ b/phpBB/styles/prosilver/template/mcp_forum.html | |
@@ -13,9 +13,9 @@ | |
<div class="action-bar top"> | |
<div class="pagination"> | |
{TOTAL_TOPICS} | |
- <!-- IF .pagination --> | |
+ <!-- IF .pagination --> | |
<!-- INCLUDE pagination.html --> | |
- <!-- ELSE --> | |
+ <!-- ELSE --> | |
• {PAGE_NUMBER} | |
<!-- ENDIF --> | |
</div> | |
@@ -40,9 +40,11 @@ | |
<dt <!-- IF topicrow.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF -->> | |
<!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}" class="icon-link"></a><!-- ENDIF --> | |
<div class="list-inner"> | |
- | |
+ <!-- EVENT topiclist_row_prepend --> | |
<!-- IF topicrow.S_SELECT_TOPIC --><a href="{topicrow.U_SELECT_TOPIC}" class="topictitle">[ {L_SELECT_MERGE} ]</a> <!-- ENDIF --> | |
+ <!-- EVENT mcp_forum_topic_title_before --> | |
<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a> | |
+ <!-- EVENT mcp_forum_topic_title_after --> | |
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF --> | |
<!-- IF topicrow.S_TOPIC_DELETED or topicrow.S_POSTS_DELETED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.DELETED_IMG}</a> <!-- ENDIF --> | |
<!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --> | |
@@ -74,7 +76,7 @@ | |
<!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF --> | |
{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME} | |
</div> | |
- | |
+ <!-- EVENT topiclist_row_append --> | |
</div> | |
</dt> | |
<dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd> | |
@@ -107,9 +109,9 @@ | |
<div class="action-bar bottom"> | |
<div class="pagination"> | |
{TOTAL_TOPICS} | |
- <!-- IF .pagination --> | |
+ <!-- IF .pagination --> | |
<!-- INCLUDE pagination.html --> | |
- <!-- ELSE --> | |
+ <!-- ELSE --> | |
• {PAGE_NUMBER} | |
<!-- ENDIF --> | |
</div> | |
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html | |
index 082bea2..c21b676 100644 | |
--- a/phpBB/styles/prosilver/template/mcp_topic.html | |
+++ b/phpBB/styles/prosilver/template/mcp_topic.html | |
@@ -54,10 +54,12 @@ | |
</dl> | |
<!-- ENDIF --> | |
+ <!-- EVENT mcp_topic_options_before --> | |
<dl> | |
<dt><label for="subject">{L_SPLIT_SUBJECT}{L_COLON}</label></dt> | |
<dd><input type="text" name="subject" id="subject" size="45" maxlength="124" tabindex="2" value="{SPLIT_SUBJECT}" title="{L_SPLIT_SUBJECT}" class="inputbox" /></dd> | |
</dl> | |
+ <!-- EVENT mcp_topic_options_after --> | |
<dl> | |
<dt><label>{L_SPLIT_FORUM}{L_COLON}</label></dt> | |
<dd><select name="to_forum_id">{S_FORUM_SELECT}</select></dd> | |
@@ -87,7 +89,7 @@ | |
<h3 id="review"> | |
<span class="right-box"><a href="#review" onclick="viewableArea(getElementById('topicreview'), true); var rev_text = getElementById('review').getElementsByTagName('a').item(0).firstChild; if (rev_text.data == '{LA_EXPAND_VIEW}'){rev_text.data = '{LA_COLLAPSE_VIEW}'; } else if (rev_text.data == '{LA_COLLAPSE_VIEW}'){rev_text.data = '{LA_EXPAND_VIEW}'};">{L_EXPAND_VIEW}</a></span> | |
- {L_TOPIC_REVIEW}{L_COLON} {TOPIC_TITLE} | |
+ {L_TOPIC_REVIEW}{L_COLON} <!-- EVENT mcp_topic_topic_title_before -->{TOPIC_TITLE}<!-- EVENT mcp_topic_topic_title_after --> | |
</h3> | |
<div id="topicreview"> | |
@@ -153,9 +155,9 @@ | |
<div class="action-bar bottom"> | |
<div class="pagination"> | |
{TOTAL_POSTS} | |
- <!-- IF .pagination --> | |
+ <!-- IF .pagination --> | |
<!-- INCLUDE pagination.html --> | |
- <!-- ELSE --> | |
+ <!-- ELSE --> | |
• {PAGE_NUMBER} | |
<!-- ENDIF --> | |
</div> | |
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html | |
index 512df7b..4145690 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_body.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_body.html | |
@@ -102,7 +102,7 @@ | |
<!-- ENDIF --> | |
<tr class="<!-- IF memberrow.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->"> | |
- <td><!-- IF memberrow.RANK_IMG --><span class="rank-img">{memberrow.RANK_IMG}</span><!-- ELSE --><span class="rank-img">{memberrow.RANK_TITLE}</span><!-- ENDIF --><!-- IF S_IN_SEARCH_POPUP and not S_SELECT_SINGLE --><input type="checkbox" name="user" value="{memberrow.USERNAME}" /> <!-- ENDIF --><!-- EVENT memberlist_body_username_prepend -->{memberrow.USERNAME_FULL}<!-- EVENT memberlist_body_username_append --><!-- IF S_IN_SEARCH_POPUP --><br />[ <a href="#" onclick="insert_single_user('#results', '{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td> | |
+ <td><span class="rank-img"><!-- EVENT memberlist_body_rank_prepend --><!-- IF memberrow.RANK_IMG -->{memberrow.RANK_IMG}<!-- ELSE -->{memberrow.RANK_TITLE}<!-- ENDIF --><!-- EVENT memberlist_body_rank_append --></span><!-- IF S_IN_SEARCH_POPUP and not S_SELECT_SINGLE --><input type="checkbox" name="user" value="{memberrow.USERNAME}" /> <!-- ENDIF --><!-- EVENT memberlist_body_username_prepend -->{memberrow.USERNAME_FULL}<!-- EVENT memberlist_body_username_append --><!-- IF S_IN_SEARCH_POPUP --><br />[ <a href="#" onclick="insert_single_user('#results', '{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td> | |
<td class="posts"><!-- IF memberrow.POSTS and S_DISPLAY_SEARCH --><a href="{memberrow.U_SEARCH_USER}" title="{L_SEARCH_USER_POSTS}">{memberrow.POSTS}</a><!-- ELSE -->{memberrow.POSTS}<!-- ENDIF --></td> | |
<td class="info"><!-- BEGIN custom_fields --><div>{memberrow.custom_fields.PROFILE_FIELD_VALUE}</div><!-- BEGINELSE --> <!-- END custom_fields --></td> | |
<td>{memberrow.JOINED}</td> | |
diff --git a/phpBB/styles/prosilver/template/memberlist_search.html b/phpBB/styles/prosilver/template/memberlist_search.html | |
index ef5d29a..b1c7a81 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_search.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_search.html | |
@@ -32,7 +32,7 @@ | |
<!-- ENDIF --> | |
<!-- IF S_JABBER_ENABLED --> | |
<dl> | |
- <dt><label for="jabber">{L_JABBER}:</label></dt> | |
+ <dt><label for="jabber">{L_JABBER}{L_COLON}</label></dt> | |
<dd><input type="text" name="jabber" id="jabber" value="{JABBER}" class="inputbox" /></dd> | |
</dl> | |
<!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/memberlist_view.html b/phpBB/styles/prosilver/template/memberlist_view.html | |
index 5d8e6ec..8ecca49 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_view.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_view.html | |
@@ -11,8 +11,10 @@ | |
<!-- IF AVATAR_IMG --> | |
<dl class="left-box"> | |
<dt class="profile-avatar">{AVATAR_IMG}</dt> | |
+ <!-- EVENT memberlist_view_rank_avatar_before --> | |
<!-- IF RANK_TITLE --><dd style="text-align: center;">{RANK_TITLE}</dd><!-- ENDIF --> | |
<!-- IF RANK_IMG --><dd style="text-align: center;">{RANK_IMG}</dd><!-- ENDIF --> | |
+ <!-- EVENT memberlist_view_rank_avatar_after --> | |
</dl> | |
<!-- ENDIF --> | |
@@ -26,8 +28,10 @@ | |
<!-- IF U_SWITCH_PERMISSIONS --> [ <a href="{U_SWITCH_PERMISSIONS}">{L_USE_PERMISSIONS}</a> ]<!-- ENDIF --> | |
</dd> | |
<!-- IF not AVATAR_IMG --> | |
+ <!-- EVENT memberlist_view_rank_no_avatar_before --> | |
<!-- IF RANK_TITLE --><dt>{L_RANK}{L_COLON}</dt> <dd>{RANK_TITLE}</dd><!-- ENDIF --> | |
<!-- IF RANK_IMG --><dt><!-- IF RANK_TITLE --> <!-- ELSE -->{L_RANK}{L_COLON}<!-- ENDIF --></dt> <dd>{RANK_IMG}</dd><!-- ENDIF --> | |
+ <!-- EVENT memberlist_view_rank_no_avatar_after --> | |
<!-- ENDIF --> | |
<!-- IF S_USER_INACTIVE --><dt>{L_USER_IS_INACTIVE}{L_COLON}</dt> <dd>{USER_INACTIVE_REASON}</dd><!-- ENDIF --> | |
<!-- IF AGE !== '' --><dt>{L_AGE}{L_COLON}</dt> <dd>{AGE}</dd><!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html | |
index 41c5793..faf48e0 100644 | |
--- a/phpBB/styles/prosilver/template/navbar_header.html | |
+++ b/phpBB/styles/prosilver/template/navbar_header.html | |
@@ -93,12 +93,12 @@ | |
<!-- DEFINE $MICRODATA = ' itemtype="http://data-vocabulary.org/Breadcrumb" itemscope=""' --> | |
<!-- EVENT overall_header_breadcrumbs_before --> | |
<li class="small-icon icon-home breadcrumbs"> | |
- <!-- IF U_SITE_HOME --><span class="crumb"><a href="{U_SITE_HOME}"{$MICRODATA} data-navbar-reference="home">{L_SITE_HOME}</a></span><!-- ENDIF --> | |
+ <!-- IF U_SITE_HOME --><span class="crumb"{$MICRODATA}><a href="{U_SITE_HOME}" data-navbar-reference="home" itemprop="url"><span itemprop="title">{L_SITE_HOME}</span></a></span><!-- ENDIF --> | |
<!-- EVENT overall_header_breadcrumb_prepend --> | |
- <span class="crumb"><a href="{U_INDEX}" accesskey="h"{$MICRODATA} data-navbar-reference="index">{L_INDEX}</a></span> | |
+ <span class="crumb"{$MICRODATA}><a href="{U_INDEX}" accesskey="h" data-navbar-reference="index" itemprop="url"><span itemprop="title">{L_INDEX}</span></a></span> | |
<!-- BEGIN navlinks --> | |
<!-- EVENT overall_header_navlink_prepend --> | |
- <span class="crumb"><a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->>{navlinks.FORUM_NAME}</a></span> | |
+ <span class="crumb"{$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemprop="url"><span itemprop="title">{navlinks.FORUM_NAME}</span></a></span> | |
<!-- EVENT overall_header_navlink_append --> | |
<!-- END navlinks --> | |
<!-- EVENT overall_header_breadcrumb_append --> | |
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html | |
index 2b20368..45f8eaa 100644 | |
--- a/phpBB/styles/prosilver/template/overall_header.html | |
+++ b/phpBB/styles/prosilver/template/overall_header.html | |
@@ -14,6 +14,7 @@ | |
<!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active"><!-- ENDIF --> | |
<!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}"><!-- ENDIF --> | |
<!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}"><!-- ENDIF --> | |
+ <!-- EVENT overall_header_feeds --> | |
<!-- ENDIF --> | |
<!-- IF U_CANONICAL --> | |
@@ -31,7 +32,7 @@ | |
<script> | |
WebFontConfig = { | |
google: { | |
- families: ['Open Sans:n6'] | |
+ families: ['Open+Sans:600:cyrillic-ext,latin,greek-ext,greek,vietnamese,latin-ext,cyrillic'] | |
} | |
}; | |
diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html | |
index 5804f95..1a9b339 100644 | |
--- a/phpBB/styles/prosilver/template/posting_editor.html | |
+++ b/phpBB/styles/prosilver/template/posting_editor.html | |
@@ -89,6 +89,7 @@ | |
<fieldset class="submit-buttons"> | |
{S_HIDDEN_ADDRESS_FIELD} | |
{S_HIDDEN_FIELDS} | |
+ <!-- EVENT posting_editor_submit_buttons --> | |
<!-- IF S_HAS_DRAFTS --><input type="submit" accesskey="d" tabindex="8" name="load" value="{L_LOAD_DRAFT}" class="button2" onclick="load_draft = true;" /> <!-- ENDIF --> | |
<!-- IF S_SAVE_ALLOWED --><input type="submit" accesskey="k" tabindex="7" name="save" value="{L_SAVE_DRAFT}" class="button2" /> <!-- ENDIF --> | |
<input type="submit" tabindex="5" name="preview" value="{L_PREVIEW}" class="button1"<!-- IF not S_PRIVMSGS --> onclick="document.getElementById('postform').action += '#preview';"<!-- ENDIF --> /> | |
@@ -116,6 +117,7 @@ | |
<a href="#tabs" data-subpanel="poll-panel" role="tab" aria-controls="poll-panel">{L_ADD_POLL}</a> | |
</li> | |
<!-- ENDIF --> | |
+ <!-- EVENT posting_editor_add_panel_tab --> | |
</ul> | |
</div> | |
<!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/posting_layout.html b/phpBB/styles/prosilver/template/posting_layout.html | |
index 630afdb..19a7351 100644 | |
--- a/phpBB/styles/prosilver/template/posting_layout.html | |
+++ b/phpBB/styles/prosilver/template/posting_layout.html | |
@@ -1,7 +1,7 @@ | |
<!-- INCLUDE overall_header.html --> | |
<!-- IF TOPIC_TITLE --> | |
- <h2 class="posting-title"><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2> | |
+ <h2 class="posting-title"><!-- EVENT posting_topic_title_before --><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2> | |
<!-- ELSE --> | |
<h2 class="posting-title"><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2> | |
<!-- ENDIF --> | |
@@ -77,6 +77,8 @@ | |
<!-- IF S_SHOW_POLL_BOX or S_POLL_DELETE --><!-- INCLUDE posting_poll_body.html --><!-- ENDIF --> | |
+<!-- EVENT posting_layout_include_panel_body --> | |
+ | |
<!-- IF S_DISPLAY_REVIEW --><!-- INCLUDE posting_topic_review.html --><!-- ENDIF --> | |
</form> | |
diff --git a/phpBB/styles/prosilver/template/simple_header.html b/phpBB/styles/prosilver/template/simple_header.html | |
index 637ac59..baa6223 100644 | |
--- a/phpBB/styles/prosilver/template/simple_header.html | |
+++ b/phpBB/styles/prosilver/template/simple_header.html | |
@@ -10,7 +10,7 @@ | |
<script> | |
WebFontConfig = { | |
google: { | |
- families: ['Open Sans:n6'] | |
+ families: ['Open+Sans:600:cyrillic-ext,latin,greek-ext,greek,vietnamese,latin-ext,cyrillic'] | |
} | |
}; | |
diff --git a/phpBB/styles/prosilver/template/ucp_main_front.html b/phpBB/styles/prosilver/template/ucp_main_front.html | |
index 942d26e..7bc8d40 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_main_front.html | |
+++ b/phpBB/styles/prosilver/template/ucp_main_front.html | |
@@ -53,6 +53,7 @@ | |
<h3>{L_YOUR_DETAILS}</h3> | |
+<!-- EVENT ucp_main_front_user_activity_before --> | |
<dl class="details"> | |
<dt>{L_JOINED}{L_COLON}</dt> <dd>{JOINED}</dd> | |
<dt>{L_LAST_ACTIVE}{L_COLON}</dt> <dd>{LAST_VISIT_YOU}</dd> | |
@@ -61,6 +62,7 @@ | |
<!-- IF ACTIVE_TOPIC != '' --><dt>{L_ACTIVE_IN_TOPIC}{L_COLON}</dt> <dd><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})</dd><!-- ENDIF --> | |
<!-- IF WARNINGS --><dt>{L_YOUR_WARNINGS}{L_COLON}</dt> <dd class="error">{WARNING_IMG} [{WARNINGS}]</dd><!-- ENDIF --> | |
</dl> | |
+<!-- EVENT ucp_main_front_user_activity_after --> | |
</div> | |
</div> | |
diff --git a/phpBB/styles/prosilver/template/ucp_pm_history.html b/phpBB/styles/prosilver/template/ucp_pm_history.html | |
index 0e9c384..28f217e 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_pm_history.html | |
+++ b/phpBB/styles/prosilver/template/ucp_pm_history.html | |
@@ -4,6 +4,7 @@ | |
{L_MESSAGE_HISTORY}{L_COLON} | |
</h3> | |
+<!-- EVENT ucp_pm_history_review_before --> | |
<div id="topicreview"> | |
<script type="text/javascript"> | |
// <![CDATA[ | |
@@ -17,15 +18,22 @@ | |
<div class="postbody" id="pr{history_row.MSG_ID}"> | |
<h3><a href="{history_row.U_VIEW_MESSAGE}" <!-- IF history_row.S_CURRENT_MSG -->class="current"<!-- ENDIF -->>{history_row.SUBJECT}</a></h3> | |
- <!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE --> | |
+ <!-- DEFINE $SHOW_PM_HISTORY_POST_BUTTONS = (history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE) --> | |
+ <!-- EVENT ucp_pm_history_post_buttons_list_before --> | |
+ <!-- IF $SHOW_PM_HISTORY_POST_BUTTONS --> | |
<ul class="post-buttons"> | |
+ <!-- EVENT ucp_pm_history_post_buttons_before --> | |
+ <!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE --> | |
<li> | |
<a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#postingbox" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}', '{LA_WROTE}');"<!-- ENDIF --> title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}" class="button icon-button quote-icon"> | |
<span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span> | |
</a> | |
</li> | |
+ <!-- ENDIF --> | |
+ <!-- EVENT ucp_pm_history_post_buttons_after --> | |
</ul> | |
<!-- ENDIF --> | |
+ <!-- EVENT ucp_pm_history_post_buttons_list_after --> | |
<p class="author">{history_row.MINI_POST_IMG} {L_SENT_AT}{L_COLON} <strong>{history_row.SENT_DATE}</strong><br /> | |
{L_MESSAGE_BY_AUTHOR} {history_row.MESSAGE_AUTHOR_FULL}</p> | |
@@ -37,6 +45,7 @@ | |
</div> | |
<!-- END history_row --> | |
</div> | |
+<!-- EVENT ucp_pm_history_review_after --> | |
<hr /> | |
<p><a href="#cp-main" class="top2">{L_BACK_TO_TOP}</a></p> | |
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewfolder.html b/phpBB/styles/prosilver/template/ucp_pm_viewfolder.html | |
index d93a622..47e4d1c 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_pm_viewfolder.html | |
+++ b/phpBB/styles/prosilver/template/ucp_pm_viewfolder.html | |
@@ -25,7 +25,7 @@ | |
<fieldset class="submit-buttons"> | |
<input type="hidden" name="export_option" value="CSV" /> | |
<input class="button1" type="submit" name="submit_export" value="{L_EXPORT_FOLDER}" /> | |
- <input class="button2" type="reset" value="Reset" name="reset" /> | |
+ <input class="button2" type="reset" value="{L_RESET}" name="reset" /> | |
{S_FORM_TOKEN} | |
</fieldset> | |
</form> | |
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
index 02c5f5b..d92b90a 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
+++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
@@ -27,7 +27,9 @@ | |
{MESSAGE_AUTHOR_FULL} | |
</dt> | |
+ <!-- EVENT ucp_pm_viewmessage_rank_before --> | |
<!-- IF RANK_TITLE or RANK_IMG --><dd class="profile-rank">{RANK_TITLE}<!-- IF RANK_TITLE and RANK_IMG --><br /><!-- ENDIF -->{RANK_IMG}</dd><!-- ENDIF --> | |
+ <!-- EVENT ucp_pm_viewmessage_rank_after --> | |
<dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> <!-- IF U_AUTHOR_POSTS != '' --><a href="{U_AUTHOR_POSTS}">{AUTHOR_POSTS}</a><!-- ELSE -->{AUTHOR_POSTS}<!-- ENDIF --></dd> | |
<!-- IF AUTHOR_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {AUTHOR_JOINED}</dd><!-- ENDIF --> | |
@@ -73,7 +75,9 @@ | |
<div class="postbody"> | |
<h3 class="first">{SUBJECT}</h3> | |
- <!-- IF U_DELETE or U_EDIT or U_QUOTE or U_REPORT --> | |
+ <!-- DEFINE $SHOW_PM_POST_BUTTONS = (U_EDIT or U_DELETE or U_REPORT or U_QUOTE) --> | |
+ <!-- EVENT ucp_pm_viewmessage_post_buttons_list_before --> | |
+ <!-- IF $SHOW_PM_POST_BUTTONS --> | |
<ul class="post-buttons"> | |
<!-- EVENT ucp_pm_viewmessage_post_buttons_before --> | |
<!-- IF U_EDIT --> | |
@@ -99,6 +103,7 @@ | |
<!-- EVENT ucp_pm_viewmessage_post_buttons_after --> | |
</ul> | |
<!-- ENDIF --> | |
+ <!-- EVENT ucp_pm_viewmessage_post_buttons_list_after --> | |
<p class="author"> | |
<strong>{L_SENT_AT}{L_COLON}</strong> {SENT_DATE} | |
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html | |
index e976c36..87a9e95 100644 | |
--- a/phpBB/styles/prosilver/template/viewtopic_body.html | |
+++ b/phpBB/styles/prosilver/template/viewtopic_body.html | |
@@ -40,6 +40,7 @@ | |
</div> | |
<!-- INCLUDE viewtopic_topic_tools.html --> | |
+ <!-- EVENT viewtopic_dropdown_top_custom --> | |
<!-- IF S_DISPLAY_SEARCHBOX --> | |
<div class="search-box" role="search"> | |
@@ -67,6 +68,8 @@ | |
<!-- EVENT viewtopic_body_pagination_top_after --> | |
</div> | |
+<!-- EVENT viewtopic_body_poll_before --> | |
+ | |
<!-- IF S_HAS_POLL --> | |
<form method="post" action="{S_POLL_ACTION}" data-ajax="vote_poll" class="topic_poll"> | |
@@ -120,6 +123,8 @@ | |
<hr /> | |
<!-- ENDIF --> | |
+<!-- EVENT viewtopic_body_poll_after --> | |
+ | |
<!-- BEGIN postrow --> | |
<!-- EVENT viewtopic_body_postrow_post_before --> | |
<!-- IF postrow.S_FIRST_UNREAD --> | |
@@ -142,7 +147,9 @@ | |
<!-- EVENT viewtopic_body_post_author_after --> | |
</dt> | |
+ <!-- EVENT viewtopic_body_postrow_rank_before --> | |
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd class="profile-rank">{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF --> | |
+ <!-- EVENT viewtopic_body_postrow_rank_after --> | |
<!-- IF postrow.POSTER_POSTS != '' --><dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> <!-- IF postrow.U_SEARCH !== '' --><a href="{postrow.U_SEARCH}"><!-- ENDIF -->{postrow.POSTER_POSTS}<!-- IF postrow.U_SEARCH !== '' --></a><!-- ENDIF --></dd><!-- ENDIF --> | |
<!-- IF postrow.POSTER_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd><!-- ENDIF --> | |
@@ -210,9 +217,10 @@ | |
<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3> | |
+ <!-- DEFINE $SHOW_POST_BUTTONS = (postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE) --> | |
<!-- EVENT viewtopic_body_post_buttons_list_before --> | |
<!-- IF not S_IS_BOT --> | |
- <!-- IF postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE --> | |
+ <!-- IF $SHOW_POST_BUTTONS --> | |
<ul class="post-buttons"> | |
<!-- EVENT viewtopic_body_post_buttons_before --> | |
<!-- IF postrow.U_EDIT --> | |
@@ -375,6 +383,8 @@ | |
</div> | |
</div> | |
<!-- ENDIF --> | |
+ | |
+ <!-- EVENT viewtopic_dropdown_bottom_custom --> | |
<!-- IF .pagination or TOTAL_POSTS --> | |
<div class="pagination"> | |
diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css | |
index f9a5203..a816c7f 100644 | |
--- a/phpBB/styles/prosilver/theme/buttons.css | |
+++ b/phpBB/styles/prosilver/theme/buttons.css | |
@@ -5,8 +5,7 @@ | |
cursor: pointer; | |
display: inline-block; | |
height: 18px; | |
- line-height: 18px; | |
- font-size: 13px; | |
+ font-size: 1.2em; | |
white-space: nowrap; | |
border: 1px solid transparent; | |
border-radius: 4px; | |
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css | |
index 7b17c58..19b0f65 100644 | |
--- a/phpBB/styles/prosilver/theme/common.css | |
+++ b/phpBB/styles/prosilver/theme/common.css | |
@@ -43,6 +43,9 @@ table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
+abbr { | |
+ text-decoration: none; | |
+} | |
/* General Markup Styles | |
---------------------------------------- */ | |
@@ -327,10 +330,10 @@ ul.linklist li.responsive-menu { | |
ul.linklist li.responsive-menu a.responsive-menu-link { | |
display: inline-block; | |
margin: 0 5px; | |
- font-size: 16px; | |
+ font-size: 1.455em; | |
position: relative; | |
width: 16px; | |
- line-height: 20px; | |
+ line-height: 1.2em; | |
text-decoration: none; | |
} | |
@@ -799,7 +802,7 @@ fieldset.fields1 dl.pmlist dd.recipients { | |
/* Action-bars (container for post/reply buttons, pagination, etc.) | |
---------------------------------------- */ | |
.action-bar { | |
- font-size: 11px; | |
+ font-size: 1.1em; | |
margin: 4px 0; | |
} | |
@@ -811,7 +814,6 @@ fieldset.fields1 dl.pmlist dd.recipients { | |
---------------------------------------- */ | |
.pagination { | |
float: right; | |
- font-size: 11px; | |
margin-top: 3px; | |
text-align: right; | |
width: auto; | |
@@ -841,7 +843,7 @@ fieldset.fields1 dl.pmlist dd.recipients { | |
display: block; | |
font-size: 0.9em; | |
font-weight: normal; | |
- line-height: 13px; | |
+ line-height: 1.4em; | |
min-width: 10px; | |
padding: 3px; | |
text-align: center; | |
@@ -1156,12 +1158,11 @@ ul.linklist:after, | |
.dropdown-extended .header { | |
padding: 0 10px; | |
font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif; | |
- font-size: 11px; | |
font-weight: bold; | |
text-align: left; | |
text-shadow: 1px 1px 1px white; | |
text-transform: uppercase; | |
- line-height: 30px; | |
+ line-height: 3em; | |
border-bottom: 1px solid; | |
border-radius: 5px 5px 0 0; | |
} | |
@@ -1213,7 +1214,7 @@ ul.linklist:after, | |
} | |
.notification_list p.notification-time { | |
- font-size: 10px; | |
+ font-size: 0.9em; | |
margin: 0; | |
text-align: right; | |
} | |
@@ -1229,7 +1230,7 @@ ul.linklist:after, | |
.notification_list p.notifications_title { | |
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | |
- font-size: 13px !important; | |
+ font-size: 1.2em !important; | |
} | |
.notification_list p.notifications_title strong { | |
@@ -1237,7 +1238,7 @@ ul.linklist:after, | |
} | |
.notification_list p.notifications_time { | |
- font-size: 10px !important; | |
+ font-size: 0.9em !important; | |
} | |
.notification_text { | |
@@ -1260,12 +1261,14 @@ ul.linklist:after, | |
} | |
#quick-links a.responsive-menu-link:before { | |
- font-size: 16px; | |
+ font-size: 1.455em; | |
line-height: 16.5px; | |
} | |
.compact #quick-links a.responsive-menu-link { | |
- font-size: 0; | |
+ width: 0; | |
+ overflow: hidden; | |
+ white-space: nowrap; | |
} | |
.compact .icon-notification > a > span, .compact .icon-pm > a > span { | |
diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css | |
index 81b6d9b..8a223f6 100644 | |
--- a/phpBB/styles/prosilver/theme/cp.css | |
+++ b/phpBB/styles/prosilver/theme/cp.css | |
@@ -114,7 +114,7 @@ ul.cplist { | |
float: left; | |
font-size: 1em; | |
font-weight: bold; | |
- line-height: 14px; | |
+ line-height: 1.4em; | |
} | |
#tabs .tab > a, #minitabs .tab > a { | |
@@ -172,10 +172,10 @@ ul.cplist { | |
.responsive-tab > a.responsive-tab-link { | |
display: block; | |
- font-size: 16px; | |
+ font-size: 1.6em; | |
position: relative; | |
width: 16px; | |
- line-height: 14px; | |
+ line-height: 0.9em; | |
text-decoration: none; | |
} | |
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/subsilver2/style.cfg b/phpBB/styles/subsilver2/style.cfg | |
index f78e417..8077c1d 100644 | |
--- a/phpBB/styles/subsilver2/style.cfg | |
+++ b/phpBB/styles/subsilver2/style.cfg | |
@@ -21,8 +21,8 @@ | |
# General Information about this style | |
name = subsilver2 | |
copyright = © 2005 phpBB Limited | |
-style_version = 3.1.5 | |
-phpbb_version = 3.1.5 | |
+style_version = 3.1.6 | |
+phpbb_version = 3.1.6 | |
# Defining a different template bitfield | |
# template_bitfield = lNg= | |
diff --git a/phpBB/styles/subsilver2/template/attachment.html b/phpBB/styles/subsilver2/template/attachment.html | |
index baad7c6..65a28ae 100644 | |
--- a/phpBB/styles/subsilver2/template/attachment.html | |
+++ b/phpBB/styles/subsilver2/template/attachment.html | |
@@ -1,9 +1,11 @@ | |
+<!-- EVENT attachment_file_before --> | |
<!-- BEGIN _file --> | |
<!-- IF _file.S_DENIED --> | |
<span class="genmed">[{_file.DENIED_MESSAGE}]</span><br /> | |
<!-- ELSE --> | |
+ <!-- EVENT attachment_file_prepend --> | |
<!-- IF _file.COMMENT --> | |
<span class="gensmall"><b>{L_FILE_COMMENT}{L_COLON}</b> {_file.COMMENT}</span><br /> | |
@@ -115,7 +117,9 @@ | |
<span class="gensmall"><a href="{_file.U_DOWNLOAD_LINK}">{_file.DOWNLOAD_NAME}</a> [ {_file.FILESIZE} {_file.SIZE_LANG} | {_file.L_DOWNLOAD_COUNT} ]</span> | |
<!-- ENDIF --> | |
+ <!-- EVENT attachment_file_append --> | |
<br /> | |
<!-- ENDIF --> | |
<!-- END _file --> | |
+<!-- EVENT attachment_file_after --> | |
diff --git a/phpBB/styles/subsilver2/template/breadcrumbs.html b/phpBB/styles/subsilver2/template/breadcrumbs.html | |
index 25387da..36983a5 100644 | |
--- a/phpBB/styles/subsilver2/template/breadcrumbs.html | |
+++ b/phpBB/styles/subsilver2/template/breadcrumbs.html | |
@@ -3,7 +3,7 @@ | |
<tr> | |
<td class="row1"> | |
<!-- EVENT overall_header_breadcrumbs_before --> | |
- <p class="breadcrumbs"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA} data-navbar-reference="home">{L_SITE_HOME}</a> <strong>»</strong> <!-- ENDIF --><!-- IF $OVERALL_HEADER_BREADCRUMBS --><!-- EVENT overall_header_breadcrumb_prepend --><!-- ELSE --><!-- EVENT overall_footer_breadcrumb_prepend --><!-- ENDIF --><a href="{U_INDEX}"{$MICRODATA} data-navbar-reference="index">{L_INDEX}</a><!-- BEGIN navlinks --><!-- EVENT overall_header_navlink_prepend --> » <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->>{navlinks.FORUM_NAME}</a><!-- EVENT overall_header_navlink_append --><!-- END navlinks --> | |
+ <p class="breadcrumbs"><!-- IF U_SITE_HOME --><span{$MICRODATA}><a href="{U_SITE_HOME}" data-navbar-reference="home" itemprop="url"><span itemprop="title">{L_SITE_HOME}</span></a></span> <strong>»</strong> <!-- ENDIF --><!-- IF $OVERALL_HEADER_BREADCRUMBS --><!-- EVENT overall_header_breadcrumb_prepend --><!-- ELSE --><!-- EVENT overall_footer_breadcrumb_prepend --><!-- ENDIF --><span{$MICRODATA}><a href="{U_INDEX}" data-navbar-reference="index" itemprop="url"><span itemprop="title">{L_INDEX}</span></a></span><!-- BEGIN navlinks --><!-- EVENT overall_header_navlink_prepend --> » <span{$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemprop="url"><span itemprop="title">{navlinks.FORUM_NAME}</span></a></span><!-- EVENT overall_header_navlink_append --><!-- END navlinks --> | |
<!-- IF $OVERALL_HEADER_BREADCRUMBS --><!-- EVENT overall_header_breadcrumb_append --><!-- ELSE --><!-- EVENT overall_footer_breadcrumb_append --><!-- ENDIF --></p> | |
<!-- EVENT overall_header_breadcrumbs_after --> | |
<!-- EVENT overall_footer_timezone_before --> | |
diff --git a/phpBB/styles/subsilver2/template/mcp_forum.html b/phpBB/styles/subsilver2/template/mcp_forum.html | |
index b168bf3..8a20b96 100644 | |
--- a/phpBB/styles/subsilver2/template/mcp_forum.html | |
+++ b/phpBB/styles/subsilver2/template/mcp_forum.html | |
@@ -26,10 +26,11 @@ | |
<!-- td class="row1" width="25" align="center">{topicrow.TOPIC_ICON_IMG}</td --> | |
<!-- ENDIF --> | |
<td class="row1"> | |
+ <!-- EVENT topiclist_row_prepend --> | |
<!-- IF topicrow.S_SELECT_TOPIC --> | |
<span class="genmed">[ <a href="{topicrow.U_SELECT_TOPIC}">{L_SELECT_MERGE}</a> ] </span> | |
<!-- ENDIF --> | |
- <p class="topictitle">{NEWEST_POST_IMG} {topicrow.ATTACH_ICON_IMG} <a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a> | |
+ <p class="topictitle">{NEWEST_POST_IMG} {topicrow.ATTACH_ICON_IMG} <!-- EVENT mcp_forum_topic_title_before --><a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a><!-- EVENT mcp_forum_topic_title_after --> | |
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --> | |
<a href="{topicrow.U_MCP_QUEUE}" class="imageset">{topicrow.UNAPPROVED_IMG}</a> | |
<!-- ENDIF --> | |
@@ -43,6 +44,7 @@ | |
[ <a href="{topicrow.U_DELETE_TOPIC}">{L_DELETE_SHADOW_TOPIC}</a> ] | |
<!-- ENDIF --> | |
</p> | |
+ <!-- EVENT topiclist_row_append --> | |
</td> | |
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td> | |
<td class="row1" width="120" align="center"><p class="topicdetails">{topicrow.LAST_POST_TIME}</p></td> | |
diff --git a/phpBB/styles/subsilver2/template/mcp_topic.html b/phpBB/styles/subsilver2/template/mcp_topic.html | |
index cba4731..7d54510 100644 | |
--- a/phpBB/styles/subsilver2/template/mcp_topic.html | |
+++ b/phpBB/styles/subsilver2/template/mcp_topic.html | |
@@ -10,10 +10,12 @@ | |
<tr> | |
<td class="row2" colspan="3" align="center"><span class="gensmall">{L_SPLIT_TOPIC_EXPLAIN}</span></td> | |
</tr> | |
+ <!-- EVENT mcp_topic_options_before --> | |
<tr> | |
<td class="row1" nowrap="nowrap"><span class="gen">{L_SPLIT_SUBJECT}</span></td> | |
<td class="row2" colspan="2"><input class="post" style="width: 350px" type="text" size="35" maxlength="124" name="subject" value="{SPLIT_SUBJECT}" /></td> | |
</tr> | |
+ <!-- EVENT mcp_topic_options_after --> | |
<tr> | |
<td class="row1" nowrap="nowrap"><span class="gen">{L_SPLIT_FORUM}</span></td> | |
<td class="row2" colspan="2"><select name="to_forum_id">{S_FORUM_SELECT}</select></td> | |
@@ -61,7 +63,7 @@ | |
<td class="cat" colspan="3" align="center"><span class="gensmall">{L_DISPLAY_POSTS}{L_COLON}</span> {S_SELECT_SORT_DAYS} <span class="gensmall">{L_SORT_BY}</span> {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} <input class="btnlite" type="submit" name="sort" value="{L_GO}" /></td> | |
</tr> | |
<tr> | |
- <th nowrap="nowrap" colspan="3">{L_TOPIC_REVIEW}{L_COLON} {TOPIC_TITLE}</th> | |
+ <th nowrap="nowrap" colspan="3">{L_TOPIC_REVIEW}{L_COLON} <!-- EVENT mcp_topic_topic_title_before -->{TOPIC_TITLE}<!-- EVENT mcp_topic_topic_title_after --></th> | |
</tr> | |
<tr> | |
<td class="row3" colspan="3" align="center"><span class="gensmall">{RETURN_TOPIC}</span></td> | |
diff --git a/phpBB/styles/subsilver2/template/memberlist_body.html b/phpBB/styles/subsilver2/template/memberlist_body.html | |
index d412a6a..79b78f3 100644 | |
--- a/phpBB/styles/subsilver2/template/memberlist_body.html | |
+++ b/phpBB/styles/subsilver2/template/memberlist_body.html | |
@@ -67,7 +67,7 @@ | |
<td class="genmed" align="{S_CONTENT_FLOW_BEGIN}"><!-- EVENT memberlist_body_username_prepend -->{memberrow.USERNAME_FULL}<!-- EVENT memberlist_body_username_append --><!-- IF S_SELECT_SINGLE --> [ <a href="#" onclick="insert_single('{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td> | |
<td class="genmed" align="center" nowrap="nowrap"> {memberrow.JOINED} </td> | |
<td class="gen" align="center">{memberrow.POSTS}</td> | |
- <td class="gen" align="center"><!-- IF memberrow.RANK_IMG -->{memberrow.RANK_IMG}<!-- ELSE -->{memberrow.RANK_TITLE}<!-- ENDIF --></td> | |
+ <td class="gen" align="center"><!-- EVENT memberlist_body_rank_prepend --><!-- IF memberrow.RANK_IMG -->{memberrow.RANK_IMG}<!-- ELSE -->{memberrow.RANK_TITLE}<!-- ENDIF --><!-- EVENT memberlist_body_rank_append --></td> | |
<td class="gen" align="center"> <!-- IF memberrow.U_EMAIL --><a href="{memberrow.U_EMAIL}" class="imageset">{EMAIL_IMG}</a><!-- ENDIF --> </td> | |
<!-- IF memberrow.S_PROFILE_FIELD1 --> | |
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. --> | |
diff --git a/phpBB/styles/subsilver2/template/memberlist_view.html b/phpBB/styles/subsilver2/template/memberlist_view.html | |
index 00c627f..24e96c4 100644 | |
--- a/phpBB/styles/subsilver2/template/memberlist_view.html | |
+++ b/phpBB/styles/subsilver2/template/memberlist_view.html | |
@@ -26,6 +26,7 @@ | |
<tr> | |
<td align="center"><!-- IF USER_COLOR --><b class="gen" style="color: {USER_COLOR}"><!-- ELSE --><b class="gen"><!-- ENDIF -->{USERNAME}</b><!-- IF U_USER_BAN --><span class="genmed"> [ <a href="{U_USER_BAN}">{L_USER_BAN}</a> ]</span><!-- ENDIF --><!-- IF U_USER_ADMIN --><span class="genmed"> [ <a href="{U_USER_ADMIN}">{L_USER_ADMIN}</a> ]</span><!-- ENDIF --></td> | |
</tr> | |
+ <!-- EVENT memberlist_view_rank_before --> | |
<!-- IF RANK_TITLE --> | |
<tr> | |
<td class="postdetails" align="center">{RANK_TITLE}</td> | |
@@ -36,6 +37,7 @@ | |
<td align="center">{RANK_IMG}</td> | |
</tr> | |
<!-- ENDIF --> | |
+ <!-- EVENT memberlist_view_rank_after --> | |
<!-- IF AVATAR_IMG --> | |
<tr> | |
<td align="center">{AVATAR_IMG}</td> | |
diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html | |
index f3693eb..7648edc 100644 | |
--- a/phpBB/styles/subsilver2/template/overall_header.html | |
+++ b/phpBB/styles/subsilver2/template/overall_header.html | |
@@ -13,6 +13,7 @@ | |
<!-- IF S_ENABLE_FEEDS_TOPICS_ACTIVE --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FEED_TOPICS_ACTIVE}" href="{U_FEED}?mode=topics_active" /><!-- ENDIF --> | |
<!-- IF S_ENABLE_FEEDS_FORUM and S_FORUM_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_FORUM} - {FORUM_NAME}" href="{U_FEED}?f={S_FORUM_ID}" /><!-- ENDIF --> | |
<!-- IF S_ENABLE_FEEDS_TOPIC and S_TOPIC_ID --><link rel="alternate" type="application/atom+xml" title="{L_FEED} - {L_TOPIC} - {TOPIC_TITLE}" href="{U_FEED}?f={S_FORUM_ID}&t={S_TOPIC_ID}" /><!-- ENDIF --> | |
+ <!-- EVENT overall_header_feeds --> | |
<!-- ENDIF --> | |
<!-- IF U_CANONICAL --> | |
diff --git a/phpBB/styles/subsilver2/template/posting_body.html b/phpBB/styles/subsilver2/template/posting_body.html | |
index cde6873..7adac0f 100644 | |
--- a/phpBB/styles/subsilver2/template/posting_body.html | |
+++ b/phpBB/styles/subsilver2/template/posting_body.html | |
@@ -20,7 +20,7 @@ | |
<!-- IF not S_PRIVMSGS --> | |
<div id="pageheader"> | |
- <h2><!-- IF TOPIC_TITLE --><a class="titles" href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><!-- ELSE --><a class="titles" href="{U_VIEW_FORUM}">{FORUM_NAME}</a><!-- ENDIF --></h2> | |
+ <h2><!-- IF TOPIC_TITLE --><!-- EVENT posting_topic_title_before --><a class="titles" href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a><!-- ELSE --><a class="titles" href="{U_VIEW_FORUM}">{FORUM_NAME}</a><!-- ENDIF --></h2> | |
<!-- IF MODERATORS --> | |
<p class="moderators">{L_MODERATORS}{L_COLON} {MODERATORS}</p> | |
@@ -380,6 +380,7 @@ | |
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS} | |
<input class="btnlite" type="submit" tabindex="10" name="preview" value="{L_PREVIEW}" /> | |
<input class="btnmain" type="submit" accesskey="s" tabindex="11" name="post" value="{L_SUBMIT}" /> | |
+ <!-- EVENT posting_editor_submit_buttons --> | |
<!-- IF not S_SHOW_ATTACH_BOX and not S_SHOW_POLL_BOX --> | |
<!-- IF S_SAVE_ALLOWED --> <input class="btnlite" type="submit" accesskey="k" tabindex="12" name="save" value="{L_SAVE_DRAFT}" /><!-- ENDIF --> | |
<!-- IF S_HAS_DRAFTS --> <input class="btnlite" type="submit" accesskey="d" tabindex="13" name="load" value="{L_LOAD_DRAFT}" /><!-- ENDIF --> | |
diff --git a/phpBB/styles/subsilver2/template/ucp_main_front.html b/phpBB/styles/subsilver2/template/ucp_main_front.html | |
index 5dea2b4..7fc906a 100644 | |
--- a/phpBB/styles/subsilver2/template/ucp_main_front.html | |
+++ b/phpBB/styles/subsilver2/template/ucp_main_front.html | |
@@ -35,6 +35,7 @@ | |
<th colspan="3">{L_YOUR_DETAILS}</th> | |
</tr> | |
<tr> | |
+<!-- EVENT ucp_main_front_user_activity_before --> | |
<td class="row1" colspan="3"> | |
<table width="100%" cellspacing="1" cellpadding="4"> | |
<tr> | |
@@ -63,6 +64,7 @@ | |
<!-- ENDIF --> | |
</table> | |
</td> | |
+<!-- EVENT ucp_main_front_user_activity_after --> | |
</tr> | |
<tr> | |
<td class="cat" colspan="3"> </td> | |
diff --git a/phpBB/styles/subsilver2/template/ucp_pm_history.html b/phpBB/styles/subsilver2/template/ucp_pm_history.html | |
index c07edb0..b478431 100644 | |
--- a/phpBB/styles/subsilver2/template/ucp_pm_history.html | |
+++ b/phpBB/styles/subsilver2/template/ucp_pm_history.html | |
@@ -1,3 +1,4 @@ | |
+<!-- EVENT ucp_pm_history_review_before --> | |
<script type="text/javascript"> | |
// <![CDATA[ | |
bbcodeEnabled = {S_BBCODE_ALLOWED}; | |
@@ -59,7 +60,18 @@ | |
<!-- IF history_row.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> | |
<td class="gensmall"><a href="{history_row.U_VIEW_MESSAGE}">{L_VIEW_PM}</a></td> | |
- <td><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> <!-- IF history_row.U_PROFILE --><a href="{history_row.U_PROFILE}" class="imageset">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_EMAIL --><a href="{history_row.U_EMAIL}" class="imageset">{EMAIL_IMG}</a> <!-- ENDIF --> </div> <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE --><a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}', '{LA_WROTE}'); return false;"<!-- ENDIF --> class="imageset">{QUOTE_IMG}</a> <!-- ENDIF --> <!-- IF history_row.U_POST_REPLY_PM --><a href="{history_row.U_POST_REPLY_PM}" class="imageset">{REPLY_IMG}</a><!-- ENDIF --> </div></td> | |
+ <td> | |
+ <div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> | |
+ <!-- IF history_row.U_PROFILE --><a href="{history_row.U_PROFILE}" class="imageset">{PROFILE_IMG}</a> <!-- ENDIF --> | |
+ <!-- IF history_row.U_EMAIL --><a href="{history_row.U_EMAIL}" class="imageset">{EMAIL_IMG}</a> <!-- ENDIF --> | |
+ </div> | |
+ <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"> | |
+ <!-- EVENT ucp_pm_history_post_buttons_before --> | |
+ <!-- IF history_row.U_QUOTE or history_row.MESSAGE_AUTHOR_QUOTE --> <a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}', '{LA_WROTE}'); return false;"<!-- ENDIF --> class="imageset">{QUOTE_IMG}</a> <!-- ENDIF --> | |
+ <!-- IF history_row.U_POST_REPLY_PM --><a href="{history_row.U_POST_REPLY_PM}" class="imageset">{REPLY_IMG}</a><!-- ENDIF --> | |
+ <!-- EVENT ucp_pm_history_post_buttons_after --> | |
+ </div> | |
+ </td> | |
</tr> | |
<tr> | |
<td class="spacer" colspan="2"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> | |
@@ -69,5 +81,6 @@ | |
</div></td> | |
</tr> | |
</table> | |
+<!-- EVENT ucp_pm_history_review_after --> | |
<br clear="all" /> | |
diff --git a/phpBB/styles/subsilver2/template/ucp_pm_viewfolder.html b/phpBB/styles/subsilver2/template/ucp_pm_viewfolder.html | |
index edcf553..6ab32df 100644 | |
--- a/phpBB/styles/subsilver2/template/ucp_pm_viewfolder.html | |
+++ b/phpBB/styles/subsilver2/template/ucp_pm_viewfolder.html | |
@@ -30,7 +30,7 @@ | |
<td class="row2"><input class="post" type="text" name="enclosure" value=""" /></td> | |
</tr> | |
<tr> | |
- <td class="cat" colspan="2" align="center"><input type="hidden" name="export_option" value="CSV" /><input class="btnmain" type="submit" name="submit_export" value="{L_EXPORT_FOLDER}" /> <input class="btnlite" type="reset" value="Reset" name="reset" /></td> | |
+ <td class="cat" colspan="2" align="center"><input type="hidden" name="export_option" value="CSV" /><input class="btnmain" type="submit" name="submit_export" value="{L_EXPORT_FOLDER}" /> <input class="btnlite" type="reset" value="{L_RESET}" name="reset" /></td> | |
</tr> | |
</table> | |
{S_FORM_TOKEN} | |
diff --git a/phpBB/styles/subsilver2/template/viewtopic_body.html b/phpBB/styles/subsilver2/template/viewtopic_body.html | |
index 721aa5c..ca0377d 100644 | |
--- a/phpBB/styles/subsilver2/template/viewtopic_body.html | |
+++ b/phpBB/styles/subsilver2/template/viewtopic_body.html | |
@@ -68,6 +68,7 @@ | |
</table> | |
</td> | |
</tr> | |
+<!-- EVENT viewtopic_body_poll_before --> | |
<!-- IF S_HAS_POLL --> | |
<tr> | |
<td class="row2" colspan="2" align="center"><br clear="all" /> | |
@@ -130,6 +131,7 @@ | |
</td> | |
</tr> | |
<!-- ENDIF --> | |
+<!-- EVENT viewtopic_body_poll_after --> | |
</table> | |
<!-- BEGIN postrow --> | |
@@ -190,6 +192,7 @@ | |
<td>{postrow.ONLINE_IMG}</td> | |
</tr> | |
<!-- ENDIF --> | |
+ <!-- EVENT viewtopic_body_postrow_rank_before --> | |
<!-- IF postrow.RANK_TITLE --> | |
<tr> | |
<td class="postdetails">{postrow.RANK_TITLE}</td> | |
@@ -200,6 +203,7 @@ | |
<td>{postrow.RANK_IMG}</td> | |
</tr> | |
<!-- ENDIF --> | |
+ <!-- EVENT viewtopic_body_postrow_rank_after --> | |
<!-- EVENT viewtopic_body_avatar_before --> | |
<!-- IF postrow.POSTER_AVATAR --> | |
diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css | |
index 7764020..784643a 100644 | |
--- a/phpBB/styles/subsilver2/theme/stylesheet.css | |
+++ b/phpBB/styles/subsilver2/theme/stylesheet.css | |
@@ -15,6 +15,10 @@ | |
padding: 0; | |
} | |
+abbr { | |
+ text-decoration: none; | |
+} | |
+ | |
html { | |
font-size: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment