diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-08-31 12:45:02 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-08-31 12:45:02 +0000 |
| commit | f035f266069d45cce56802224a184bfe66495233 (patch) | |
| tree | a576a3c2f07bd4cbcb7cda0b4d0605f38c4d9e27 | |
| parent | 7ce940680a410f9c8086001d8fb0c316e5dcf646 (diff) | |
| download | forums-f035f266069d45cce56802224a184bfe66495233.tar forums-f035f266069d45cce56802224a184bfe66495233.tar.gz forums-f035f266069d45cce56802224a184bfe66495233.tar.bz2 forums-f035f266069d45cce56802224a184bfe66495233.tar.xz forums-f035f266069d45cce56802224a184bfe66495233.zip | |
Correctly display list items in forum description in prosilver and administration. (Bug #48055 - Patch by leviatan21)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10077 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/adm/style/admin.css | 11 | ||||
| -rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/content.css | 12 |
3 files changed, 24 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 173af4f7ab..ad15036daa 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -121,6 +121,17 @@ a:active { font-weight: bold; } +/* List items */ +ul, ol { + list-style-position: inside; + margin-left: 1em; +} + +li { + display: list-item; + list-style-type: inherit; +} + /* Main blocks ---------------------------------------- */ #wrap { diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 4bd9120671..6370c2b4ad 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -202,6 +202,7 @@ <li>[Fix] Make sure only logs for existing users are displayed and user-specific logs removed on user deletion. (Bug #49855)</li> <li>[Fix] Only show "Add friend" and "Add foe" links if the specific module is enabled. (Bug #50475)</li> <li>[Fix] Do not take edit post time into account for determining permission to delete last post in topic. (Bug #48615)</li> + <li>[Fix] Correctly display list items in forum description in prosilver and administration. (Bug #48055 - Patch by leviatan21)</li> <li>[Change] submit_post() now accepts force_approved_state key passed to $data to indicate new posts being approved (true) or unapproved (false).</li> <li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li> <li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li> diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 19f5dfdb3b..e68f09049c 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -132,6 +132,18 @@ dd.posts, dd.topics, dd.views { font-size: 1.2em; } +/* List in forum description */ +dl.icon dt ol, +dl.icon dt ul { + list-style-position: inside; + margin-left: 1em; +} + +dl.icon dt li { + display: list-item; + list-style-type: inherit; +} + dd.lastpost { width: 25%; font-size: 1.1em; |
