Fix New Google Reader TOC Font Size (Firefox)
Update: I switched to using this Stylish code instead: Google Reader Absolutely Compact
Google just rolled out a new layout for Google Reader. I like it overall, but the TOC uses a font that’s entirely too big for my tastes. This is fixed with the following Stylish (a Firefox extension) CSS code:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix(http://www.google.com/reader/), url-prefix(https://www.google.com/reader/) {
.scroll-tree {
font-size: 10px !important;
}
}