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

Some changes... non-invasive...

git-svn-id: file:///svn/phpbb/trunk@8025 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-08-13 12:14:07 +00:00
parent 11f05e3513
commit e9188d4e05
31 changed files with 250 additions and 187 deletions

View File

@@ -128,14 +128,26 @@
.rtl dl.details dt {
float: right;
clear: right;
text-align: left;
}
.rtl dl.details dd {
margin-right: 16em;
margin-right: 0;
margin-left: 0;
padding-right: 5px;
padding-left: 0;
float: right;
}
*:first-child+html dl.details dd {
margin-right: 16em;
float: none;
}
* html dl.details dd {
margin-right: 16em;
float: none;
}
/* Pagination

View File

@@ -442,12 +442,6 @@ dl.faq dt {
color: #BC2A4D;
}
.announce, .unreadpost {
/* Highlight the announcements & unread posts box */
border-left-color: #BC2A4D;
border-right-color: #BC2A4D;
}
/* Post signature */
.signature {
border-top-color: #CCCCCC;

View File

@@ -444,6 +444,7 @@ dl.details {
dl.details dt {
float: left;
clear: left;
width: 16em;
text-align: right;
color: #000000;
@@ -451,10 +452,11 @@ dl.details dt {
}
dl.details dd {
margin-left: 16em;
margin-left: 0;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;
float: left;
}
/* Pagination

View File

@@ -59,3 +59,14 @@ dl.icon {
margin-right: 35px;
}
/* Correctly clear floating for details on profile view */
*:first-child+html dl.details dd {
margin-left: 16em;
float: none;
}
* html dl.details dd {
margin-left: 16em;
float: none;
}