From 76d488b8b8f5bc973f6e49d2bb70b99eb5054294 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Sat, 25 Sep 2010 16:07:33 +0000 Subject: [PATCH] Critical IE fixes --- static/css/modern/iefixes.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/static/css/modern/iefixes.css b/static/css/modern/iefixes.css index 93ecea7..28adf23 100644 --- a/static/css/modern/iefixes.css +++ b/static/css/modern/iefixes.css @@ -3,10 +3,10 @@ } .avatar, .userbar_avatar { height:expression((this.scrollHeight >= 90) ? '90px' : 'auto'); - width:expression((this.scrollHeight >= 90) ? '90px' : 'auto'); + width:expression((this.scrollWidth >= 90) ? '90px' : 'auto'); } .userbarcontainer { - width:expression((this.scrollHeight >= 90) ? '90px' : 'auto'); + width:expression((this.scrollWidth >= 90) ? '90px' : 'auto'); } .categorycontainer { display:inline; @@ -23,8 +23,12 @@ } .threadcontainer .avatar, .threadcontainer .userbar_avatar { height:expression((this.scrollHeight >= 45) ? '45px' : 'auto'); - width:expression((this.scrollHeight >= 60) ? '60px' : 'auto'); + width:expression((this.scrollWidth >= 60) ? '60px' : 'auto'); } .threadcontainer .userbarcontainer { - width:expression((this.scrollHeight >= 60) ? '60px' : 'auto'); + width:expression((this.scrollWidth >= 60) ? '60px' : 'auto'); +} +.threadcontainer_additionalcontainer { + width:0px; + max-width:0px; }