Critical IE fixes

main
Inga 🏳‍🌈 14 years ago
parent 1b0d176648
commit 76d488b8b8
  1. 12
      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;
}

Loading…
Cancel
Save