1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 21:54:00 +02:00

[ticket/10485] Fix invalid HTML5 markup introduced in PHPBB3-6632

Remove the previous fix and fix it the way we did it in PHPBB3-10360 for 3.1

PHPBB3-6632
PHPBB3-10485
This commit is contained in:
Joas Schilling
2011-11-21 23:23:02 +01:00
parent f5633d281e
commit c67633577f
4 changed files with 25 additions and 17 deletions

View File

@@ -29,14 +29,19 @@ ul.topiclist li.row dl {
ul.topiclist dt {
display: block;
float: left;
width: 100%;
width: 50%;
font-size: 1.1em;
padding-left: 5px;
padding-right: 5px;
}
ul.topiclist .widescreen-optimised dt {
width: 100%;
margin-right: -465px;
}
ul.topiclist dt .wrap-content {
ul.topiclist .widescreen-optimised dt .wrap-content {
display: block;
padding-right: 465px;
}
@@ -101,6 +106,9 @@ li.header dt, li.header dd {
li.header dt {
font-weight: bold;
}
li.header .widescreen-optimised dt {
margin-right: -465px;
}