1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 20:24:08 +02:00

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

I removed the fix of the original ticket and rebuild it with its own css class.
This also fixes the problem with the screwed up UCP Attachments page.

PHPBB3-6632
PHPBB3-10360
This commit is contained in:
Joas Schilling
2011-09-11 02:03:32 +02:00
parent 5797de767e
commit 5148358429
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;
}