diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-05-31 07:56:05 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-05-31 09:31:33 +0200 |
commit | c6a35237a23d8d1e2ca7af72c5f31a42cad6df41 (patch) | |
tree | 383f4b9157c433006d01c73d50f01a837e6aa5ca /phpBB/styles | |
parent | 929bd2ac3c3abbec6c75100834725770f5eb0b44 (diff) | |
download | forums-c6a35237a23d8d1e2ca7af72c5f31a42cad6df41.tar forums-c6a35237a23d8d1e2ca7af72c5f31a42cad6df41.tar.gz forums-c6a35237a23d8d1e2ca7af72c5f31a42cad6df41.tar.bz2 forums-c6a35237a23d8d1e2ca7af72c5f31a42cad6df41.tar.xz forums-c6a35237a23d8d1e2ca7af72c5f31a42cad6df41.zip |
[ticket/15676] Display privacy notice in footer & allow overriding U_PRIVACY
PHPBB3-15676
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index b01b0bb213..cb723a31f6 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -11,6 +11,7 @@ {CREDIT_LINE} <!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF --> <!-- EVENT overall_footer_copyright_append --> + <br><a href="{U_PRIVACY}" title="{L_PRIVACY}" role="menuitem"><span>{L_PRIVACY}</span></a> | <a href="{U_TERMS_USE}" title="{L_TERMS_USE}" role="menuitem"><span>{L_TERMS_USE}</span></a> <!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --> <!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF --> </div> diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 348355e8c4..9a06e193ee 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -981,8 +981,9 @@ fieldset.fields1 dl.pmlist dd.recipients { /* Miscellaneous styles ---------------------------------------- */ .copyright { - padding: 5px; + line-height: 16px; text-align: center; + padding: 5px; } .small { |