|
From: Meik S. <acy...@ph...> - 2009-08-31 12:45:23
|
Author: acydburn
Date: Mon Aug 31 13:45:02 2009
New Revision: 10077
Log:
Correctly display list items in forum description in prosilver and administration. (Bug #48055 - Patch by leviatan21)
Modified:
branches/phpBB-3_0_0/phpBB/adm/style/admin.css
branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html
branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/content.css
Modified: branches/phpBB-3_0_0/phpBB/adm/style/admin.css
==============================================================================
*** branches/phpBB-3_0_0/phpBB/adm/style/admin.css (original)
--- branches/phpBB-3_0_0/phpBB/adm/style/admin.css Mon Aug 31 13:45:02 2009
***************
*** 121,126 ****
--- 121,137 ----
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 {
Modified: branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html (original)
--- branches/phpBB-3_0_0/phpBB/docs/CHANGELOG.html Mon Aug 31 13:45:02 2009
***************
*** 202,207 ****
--- 202,208 ----
<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>
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/content.css
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/content.css (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/theme/content.css Mon Aug 31 13:45:02 2009
***************
*** 132,137 ****
--- 132,149 ----
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;
|