diff options
author | PayBas <contact@paybas.com> | 2014-03-26 21:43:58 +0100 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-03-29 11:20:03 +0100 |
commit | 7a5639816a5f9c51e7334fb370442e60e3d3133d (patch) | |
tree | daa0cb80b39f61756c92ebe9968d411a06c14b0e /phpBB/styles/prosilver/template | |
parent | 5e688f9540ebb5b32a22202257d5ca36e8e3e254 (diff) | |
download | forums-7a5639816a5f9c51e7334fb370442e60e3d3133d.tar forums-7a5639816a5f9c51e7334fb370442e60e3d3133d.tar.gz forums-7a5639816a5f9c51e7334fb370442e60e3d3133d.tar.bz2 forums-7a5639816a5f9c51e7334fb370442e60e3d3133d.tar.xz forums-7a5639816a5f9c51e7334fb370442e60e3d3133d.zip |
[ticket/12304] Add CSS class to rules-link container
When a forum has a forum-rules link instead of forum-rules text, there
is no way to distinguish in the styling of the container (or the button)
it will have.
It should be possible to style the <div class="rules"> container
differently if there is only a link (no text).
PHPBB3-12304
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_layout.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/posting_layout.html b/phpBB/styles/prosilver/template/posting_layout.html index c0bd0225de..0b9ddedf47 100644 --- a/phpBB/styles/prosilver/template/posting_layout.html +++ b/phpBB/styles/prosilver/template/posting_layout.html @@ -7,7 +7,7 @@ <!-- ENDIF --> <!-- IF S_FORUM_RULES --> - <div class="rules"> + <div class="rules<!-- IF U_FORUM_RULES --> rules-link<!-- ENDIF -->"> <div class="inner"> <!-- IF U_FORUM_RULES --> diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index e4c0a40d3a..4ba11f0f27 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -11,7 +11,7 @@ <!-- ENDIF --> <!-- IF S_FORUM_RULES --> - <div class="rules"> + <div class="rules<!-- IF U_FORUM_RULES --> rules-link<!-- ENDIF -->"> <div class="inner"> <!-- IF U_FORUM_RULES --> diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 4d96a0e392..8103ecda7f 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -11,7 +11,7 @@ <!-- ENDIF --> <!-- IF S_FORUM_RULES --> - <div class="rules"> + <div class="rules<!-- IF U_FORUM_RULES --> rules-link<!-- ENDIF -->"> <div class="inner"> <!-- IF U_FORUM_RULES --> |