Created
March 26, 2018 18:48
-
-
Save marc1706/2e843e8cd786c83d06f47a00de7e83e7 to your computer and use it in GitHub Desktop.
phpBB 3.2.3-RC1 style changes
This file contains hidden or 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/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html | |
index 97a21f9..b01b0bb 100644 | |
--- a/phpBB/styles/prosilver/template/overall_footer.html | |
+++ b/phpBB/styles/prosilver/template/overall_footer.html | |
@@ -62,6 +62,7 @@ | |
<!-- IF S_COOKIE_NOTICE --> | |
<script src="{T_ASSETS_PATH}/cookieconsent/cookieconsent.min.js?assets_version={T_ASSETS_VERSION}"></script> | |
<script> | |
+ if (typeof window.cookieconsent === "object") { | |
window.addEventListener("load", function(){ | |
window.cookieconsent.initialise({ | |
"palette": { | |
@@ -79,7 +80,9 @@ | |
"link": "{LA_COOKIE_CONSENT_INFO}", | |
"href": "{LA_COOKIE_CONSENT_HREF}" | |
} | |
- })}); | |
+ }); | |
+ }); | |
+ } | |
</script> | |
<!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
index 4295867..2ed0189 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
+++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage.html | |
@@ -91,28 +91,28 @@ | |
<!-- IF U_EDIT --> | |
<li> | |
<a href="{U_EDIT}" title="{L_POST_EDIT_PM}" class="button button-icon-only"> | |
- <i class="icon fa-pencil fa-fw" aria-hidden="true"></i><span class="sr-only">{L_POST_EDIT_PM}</span> | |
+ <i class="icon fa-pencil fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_EDIT}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF U_DELETE --> | |
<li> | |
<a href="{U_DELETE}" title="{L_DELETE_MESSAGE}" class="button button-icon-only"> | |
- <i class="icon fa-times fa-fw" aria-hidden="true"></i><span class="sr-only">{L_DELETE_MESSAGE}</span> | |
+ <i class="icon fa-times fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_DELETE}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF U_REPORT --> | |
<li> | |
<a href="{U_REPORT}" title="{L_REPORT_PM}" class="button button-icon-only"> | |
- <i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span class="sr-only">{L_REPORT_PM}</span> | |
+ <i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_REPORT}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF U_QUOTE --> | |
<li> | |
<a href="{U_QUOTE}" title="{L_POST_QUOTE_PM}" class="button button-icon-only"> | |
- <i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_POST_QUOTE_PM}</span> | |
+ <i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_QUOTE}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html | |
index 40249f2..a9136e1 100644 | |
--- a/phpBB/styles/prosilver/template/viewtopic_body.html | |
+++ b/phpBB/styles/prosilver/template/viewtopic_body.html | |
@@ -242,35 +242,35 @@ | |
<!-- IF postrow.U_DELETE --> | |
<li> | |
<a href="{postrow.U_DELETE}" title="{L_DELETE_POST}" class="button button-icon-only"> | |
- <i class="icon fa-times fa-fw" aria-hidden="true"></i><span class="sr-only">{L_DELETE_POST}</span> | |
+ <i class="icon fa-times fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_DELETE}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF postrow.U_REPORT --> | |
<li> | |
<a href="{postrow.U_REPORT}" title="{L_REPORT_POST}" class="button button-icon-only"> | |
- <i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span class="sr-only">{L_REPORT_POST}</span> | |
+ <i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_REPORT}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF postrow.U_WARN --> | |
<li> | |
<a href="{postrow.U_WARN}" title="{L_WARN_USER}" class="button button-icon-only"> | |
- <i class="icon fa-exclamation-triangle fa-fw" aria-hidden="true"></i><span class="sr-only">{L_WARN_USER}</span> | |
+ <i class="icon fa-exclamation-triangle fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_WARN}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF postrow.U_INFO --> | |
<li> | |
<a href="{postrow.U_INFO}" title="{L_INFORMATION}" class="button button-icon-only"> | |
- <i class="icon fa-info fa-fw" aria-hidden="true"></i><span class="sr-only">{L_INFORMATION}</span> | |
+ <i class="icon fa-info fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_INFORMATION}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
<!-- IF postrow.U_QUOTE --> | |
<li> | |
<a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}" class="button button-icon-only"> | |
- <i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_QUOTE}</span> | |
+ <i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_QUOTE}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> | |
diff --git a/phpBB/styles/prosilver/template/viewtopic_topic_tools.html b/phpBB/styles/prosilver/template/viewtopic_topic_tools.html | |
index 397c807..272a434 100644 | |
--- a/phpBB/styles/prosilver/template/viewtopic_topic_tools.html | |
+++ b/phpBB/styles/prosilver/template/viewtopic_topic_tools.html | |
@@ -11,7 +11,7 @@ | |
<!-- IF U_WATCH_TOPIC --> | |
<li> | |
<a href="{U_WATCH_TOPIC}" class="watch-topic-link" title="{S_WATCH_TOPIC_TITLE}" data-ajax="toggle_link" data-toggle-class="icon <!-- IF S_WATCHING_TOPIC -->fa-check-square-o<!-- ELSE -->fa-square-o<!-- ENDIF --> fa-fw" data-toggle-text="{S_WATCH_TOPIC_TOGGLE}" data-toggle-url="{U_WATCH_TOPIC_TOGGLE}" data-update-all=".watch-topic-link"> | |
- <i class="icon <!-- IF S_WATCHING_FORUM -->fa-square-o<!-- ELSE -->fa-check-square-o<!-- ENDIF --> fa-fw" aria-hidden="true"></i><span>{S_WATCH_TOPIC_TITLE}</span> | |
+ <i class="icon <!-- IF S_WATCHING_TOPIC -->fa-square-o<!-- ELSE -->fa-check-square-o<!-- ENDIF --> fa-fw" aria-hidden="true"></i><span>{S_WATCH_TOPIC_TITLE}</span> | |
</a> | |
</li> | |
<!-- ENDIF --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment