aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/theme
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-08-13 12:14:07 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-08-13 12:14:07 +0000
commite9188d4e05eeadfd9246d9dc44160736f6fa64d6 (patch)
tree7fcdcc5cd7c7e90e2ae4f8abc309fc74101b025b /phpBB/styles/prosilver/theme
parent11f05e3513f4133cce57d4177f9616c1ef32cd34 (diff)
downloadforums-e9188d4e05eeadfd9246d9dc44160736f6fa64d6.tar
forums-e9188d4e05eeadfd9246d9dc44160736f6fa64d6.tar.gz
forums-e9188d4e05eeadfd9246d9dc44160736f6fa64d6.tar.bz2
forums-e9188d4e05eeadfd9246d9dc44160736f6fa64d6.tar.xz
forums-e9188d4e05eeadfd9246d9dc44160736f6fa64d6.zip
Some changes... non-invasive...
git-svn-id: file:///svn/phpbb/trunk@8025 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r--phpBB/styles/prosilver/theme/bidi.css14
-rw-r--r--phpBB/styles/prosilver/theme/colours.css6
-rw-r--r--phpBB/styles/prosilver/theme/common.css4
-rw-r--r--phpBB/styles/prosilver/theme/tweaks.css11
4 files changed, 27 insertions, 8 deletions
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css
index 623ecc1226..17c0baf006 100644
--- a/phpBB/styles/prosilver/theme/bidi.css
+++ b/phpBB/styles/prosilver/theme/bidi.css
@@ -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
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index ba089c7ce6..cda2ed9d07 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -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;
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index e46bbba836..9ba258b7df 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -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
diff --git a/phpBB/styles/prosilver/theme/tweaks.css b/phpBB/styles/prosilver/theme/tweaks.css
index 52bdb1baaa..cfbb680997 100644
--- a/phpBB/styles/prosilver/theme/tweaks.css
+++ b/phpBB/styles/prosilver/theme/tweaks.css
@@ -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;
+}
+