ft-interactive / business-books-of-the-decade-frontend

https://ig.ft.com/sites/business-book-award/
0 stars 0 forks source link

IE7 - search field should be hidden. #38

Open kavanagh opened 10 years ago

kavanagh commented 10 years ago

@kaelig any ideas?

kaelig commented 10 years ago

Are you sure it should be hidden? With jQuery surely this should work in IE7, no?

Otherwise just use a CSS hack.

@if $old-ie {
  // hide the entire filter-bar in IE < 8
  // you might want to only hide the filter form, though
  .filter-bar\ { // IE < 8
    display: none !important;
  }
}