louischan / simplewhite

A minimal theme for Mozilla Firefox.
https://addons.mozilla.org/addon/simplewhite/
Mozilla Public License 2.0
77 stars 20 forks source link

Option to disable '3d' new tab page style #21

Closed bwat47 closed 9 years ago

bwat47 commented 9 years ago

I absolutely love this theme, hands down the most polished and usable firefox theme I've ever used :) However I personally really dislike the new 3d style new tab page that was introduced in an update. It would be really cool if there was an option for a flat style.

louischan commented 9 years ago

Thank you for the feedback :) It is possible to disable the 3D effect by applying the following CSS rule using userChrome.css or Stylish add-on.

@-moz-document url("about:newtab"){
  #newtab-grid {
    perspective: none;
  }
}

Enjoy!

bwat47 commented 9 years ago

Thanks!