diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-06-29 13:00:54 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-06-29 13:00:54 +0000 |
commit | 6f37638caee649060dc9f933af6773652a813035 (patch) | |
tree | 897c7056941c2fc3452bd46053ee56115a6a82fc /phpBB/adm | |
parent | 1c22e7a40728fde76b9b9e5afd168f8eb0313268 (diff) | |
download | forums-6f37638caee649060dc9f933af6773652a813035.tar forums-6f37638caee649060dc9f933af6773652a813035.tar.gz forums-6f37638caee649060dc9f933af6773652a813035.tar.bz2 forums-6f37638caee649060dc9f933af6773652a813035.tar.xz forums-6f37638caee649060dc9f933af6773652a813035.zip |
- fixing some very very nasty opera bugs by changing the clearing method we use.
- also properly apply preg_quote to some strings.
git-svn-id: file:///svn/phpbb/trunk@7808 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/admin.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index f81c56846d..44f89fea33 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1221,20 +1221,19 @@ input.disabled { } /* Nice method for clearing floated blocks without having to insert any extra markup - From http://www.positioniseverything.net/easyclearing.html */ + From http://www.positioniseverything.net/easyclearing.html .clearfix:after, #tabs:after, .row:after, #content:after, fieldset dl:after, #page-body:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; -} +}*/ -/* Hide from Mac IE, Windows IE uses this as it doesn't support the :after method above \*/ .clearfix, #tabs, .row, #content, fieldset dl, #page-body { height: 1%; + overflow: auto; } -/* End hide */ /* Syntax Highlighting ---------------------------------------- */ |