Windows Live メールの画面が狭いので広くした。

userContent.cssです。
行間隔も詰めたいけどそれはまたあとでやる。

@-moz-document url-prefix(http://by126w.bay126.mail.live.com/mail/ApplicationMain_) {
  #RadAd_Banner, #RadAd_TodayPage_Banner {display: none !important;}
  #header {height: 20px !important;}
  #header .inside {padding-top: 0px !important; background: #053679 none !important; height: 32px !important;}
  #header .BrandSection {height: 32px !important;}
  #header .BrandSection #JewelImage {width: 31px !important; height: 31px !important;}
  #header .BrandSection .Beta {left: 0 !important; top: 0 !important;}
  #header .MeSection {height: 32px !important;}
  #header .MeSection br {display: none !important;}
  #header .SearchSection {padding: 0px !important; height: 32px !important; min-height: 32px !important;}
}

url-prefix(...)のところは、自分のWindows Live メールのアドレスに変えるか、「domain(mail.live.com)」に変えるかしないと反映されないかも。

br {display: none}って久しぶりに書いたかも。強制改行したいところって大抵brじゃなくてdisplay: blockな要素になってるから、#element {display: inline}って書くことが多いように思う。