diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-05 08:26:29 -0700 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-05 08:26:29 -0700 |
| commit | ab0af38629f1f101a420f8f7f245f0afbf37ff76 (patch) | |
| tree | 7c56e952e44f2a4ec4642967725578e9f03573ae /phpBB/styles/prosilver/theme | |
| parent | 462355d6542e269b5da06c5a91f8d3a505723cd1 (diff) | |
| parent | 0b32a97c4711afccc77ff74b32cc0d0ff6b7d6bc (diff) | |
| download | forums-ab0af38629f1f101a420f8f7f245f0afbf37ff76.tar forums-ab0af38629f1f101a420f8f7f245f0afbf37ff76.tar.gz forums-ab0af38629f1f101a420f8f7f245f0afbf37ff76.tar.bz2 forums-ab0af38629f1f101a420f8f7f245f0afbf37ff76.tar.xz forums-ab0af38629f1f101a420f8f7f245f0afbf37ff76.zip | |
Merge pull request #1651 from cyberalien/ticket/11782
Fix layout of notices in posts
Diffstat (limited to 'phpBB/styles/prosilver/theme')
| -rw-r--r-- | phpBB/styles/prosilver/theme/bidi.css | 7 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 15 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 29 |
3 files changed, 38 insertions, 13 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index a921805327..41a9874a18 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -371,6 +371,13 @@ float: right; } +.rtl p.post-notice:before { + left: auto; + right: 0; + padding-left: 5px; + padding-right: 26px; +} + /* Topic review panel ----------------------------------------*/ .rtl #topicreview { diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index db55540901..9e3d29bec2 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -214,11 +214,24 @@ div.rules { color: #BC2A4D; } -p.rules { +p.post-notice { background-color: #ECD5D8; background-image: none; } +p.post-notice.deleted:before { + background-image: url("./images/icon_topic_deleted.png"); +} + +p.post-notice.unapproved:before { + background-image: url("./images/icon_topic_unapproved.gif"); +} + +p.post-notice.reported:before, p.post-notice.error:before { + background-image: url("./images/icon_topic_reported.gif"); +} + + /* -------------------------------------------------------------- Colours and backgrounds for links.css diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index a2b8034187..4a77dc78d0 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -685,23 +685,28 @@ div.rules ul, div.rules ol { margin-left: 20px; } -p.rules { - background-image: none; +p.post-notice { + position: relative; padding: 5px; + padding-left: 26px; + min-height: 14px; + margin-bottom: 1em; } -p.rules img { - vertical-align: middle; -} - -p.rules strong { - vertical-align: middle; - padding-top: 5px; +p.post-notice:before { + content: ''; + display: block; + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 28px; + background: transparent none 50% 50% no-repeat; + pointer-events: none; } -p.rules a { - vertical-align: middle; - clear: both; +form > p.post-notice strong { + line-height: 20px; } #top { |
