diff options
Diffstat (limited to 'phpBB/styles/prosilver/template/overall_footer.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 27 | 
1 files changed, 22 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index ff54f3a0aa..0573abec64 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -3,7 +3,7 @@  <!-- EVENT overall_footer_page_body_after --> -<div id="page-footer" role="contentinfo"> +<div id="page-footer" class="page-footer" role="contentinfo">  	<!-- INCLUDE navbar_footer.html -->  	<div class="copyright"> @@ -15,16 +15,20 @@  		<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->  	</div> -	<div id="darkenwrapper" data-ajax-error-title="{L_AJAX_ERROR_TITLE}" data-ajax-error-text="{L_AJAX_ERROR_TEXT}" data-ajax-error-text-abort="{L_AJAX_ERROR_TEXT_ABORT}" data-ajax-error-text-timeout="{L_AJAX_ERROR_TEXT_TIMEOUT}" data-ajax-error-text-parsererror="{L_AJAX_ERROR_TEXT_PARSERERROR}"> -		<div id="darken"> </div> +	<div id="darkenwrapper" class="darkenwrapper" data-ajax-error-title="{L_AJAX_ERROR_TITLE}" data-ajax-error-text="{L_AJAX_ERROR_TEXT}" data-ajax-error-text-abort="{L_AJAX_ERROR_TEXT_ABORT}" data-ajax-error-text-timeout="{L_AJAX_ERROR_TEXT_TIMEOUT}" data-ajax-error-text-parsererror="{L_AJAX_ERROR_TEXT_PARSERERROR}"> +		<div id="darken" class="darken"> </div>  	</div>  	<div id="phpbb_alert" class="phpbb_alert" data-l-err="{L_ERROR}" data-l-timeout-processing-req="{L_TIMEOUT_PROCESSING_REQ}"> -		<a href="#" class="alert_close"></a> +		<a href="#" class="alert_close"> +			<i class="icon fa-times-circle fa-fw" aria-hidden="true"></i> +		</a>  		<h3 class="alert_title"> </h3><p class="alert_text"></p>  	</div>  	<div id="phpbb_confirm" class="phpbb_alert"> -		<a href="#" class="alert_close"></a> +		<a href="#" class="alert_close"> +			<i class="icon fa-times-circle fa-fw" aria-hidden="true"></i> +		</a>  		<div class="alert_text"></div>  	</div>  </div> @@ -41,6 +45,19 @@  <script type="text/javascript" src="{T_ASSETS_PATH}/javascript/core.js?assets_version={T_ASSETS_VERSION}"></script>  <!-- INCLUDEJS forum_fn.js -->  <!-- INCLUDEJS ajax.js --> +<!-- IF S_ALLOW_CDN --> +	<script type="text/javascript"> +		(function($){ +			var $fa_cdn = $('head').find('link[rel="stylesheet"]').first(), +				$span = $('<span class="fa" style="display:none"></span>').appendTo('body'); +			if ($span.css('fontFamily') !== 'FontAwesome' ) {  +				$fa_cdn.after('<link href="{T_ASSETS_PATH}/css/font-awesome.min.css" rel="stylesheet">'); +				$fa_cdn.remove(); +			} +			$span.remove(); +		})(jQuery); +	</script> +<!-- ENDIF -->  <!-- EVENT overall_footer_after -->  | 
