Jeff Barr posted a lazy web request for a better view of Twitter contacts and Wes Maldonado responded with a slick Greasemonkey script. Well, not to be outdone by the scripting folks, I made two similar scripts for Stylish, a Firefox plugin that allows you to apply custom CSS on certain webpages (see what I did for Tangler a couple days ago). To apply these styles, install the extension and then add either of these styles to Twitter.com: .code { border: 1px solid #ccc; list-style-type: decimal-leading-zero; padding: 5px; margin: 0; } .code code { display: block; padding: 3px; margin-bottom: 0; } .code li { background: #ddd; border: 1px solid #ccc; margin: 0 0 2px 2.2em; }
No avatars
@-moz-document domain("twitter.com") {#friends {margin-top: 12px;}#friends a[rel=contact] {display:block;text-decoration: none !important;margin-bottom:3px;}#friends a[rel=contact] img {display:none;}#friends a[rel=contact]:after {content: attr(title);}}
With avatars
@-moz-document domain("twitter.com") {#friends a[rel=contact] {display:block;text-decoration: none !important;margin-bottom:3px;}#friends a[rel=contact] img {margin-right: 3px; text-decoration: none !important;}#friends a[rel=contact]:after {content: attr(title);}}
💬 Comments from the original post