A place where to share some CSS/JS snippets I create to change BA look & behavior. You need Greasemonkey, Tampermonkey, etc for JS scripts and Stylish, Stylus, userContent.css, etc for CSS changes.
Some simple look changes as start:
CSS for square avatars:
img.avatar {
border-radius: 0;
}
CSS for showing full date without hover (not 100% happy with this, WIP for @Gumboots :
Cheers for that. I’ll play around with it. One thing worth noting (because otherwise it can drive people nuts) is that any CSS in Stylish or useContent.css will need !important as part of the declaration if it is trying to override the site’s CSS.
BTW, userChrome.css is for tweaking the browser’s interface.
As for Arial, don’t get me started on font stacks. I’ve gone with this:
Good on Windoze, and Neue is a better online font for Apples than the original Helvetica. Arial is basically a cheap and nasty version of the old Helvetica. Come to think of it, if the Linux people have any consistency in their fonts these days I might declare a good one for them too. Some of the DejaVu and Droid fonts are good. BTW, Roboto is much better on small screens than Helvetica.
Might be browser-dependent. I’ve noticed that Pale Moon seems to require !important in some declarations where Firefox doesn’t. PM is running off userContent.css, while FF is running Stylus. But FF still seems to require !important on some things if I want to avoid daft levels of specificity in my code (I hate excessive specificity).
Ah yes, I see what you mean about not being 100% happy with the titles thing. It’s a tad gruesome on the topic listing.
I’ve played around with it a bit. Hiding the span is easy. Setting the anchor to block display and absolute positioning is easy. That cleans things up and makes for a nice big linked area. But, the problems are:
1/ Can’t control the flow of the title text, so not formatted on two lines all the time. This looks messy.
2/ To fit a long first post date (ie: September) on one line requires about 260px width.
You could use a before and an after with hidden overflow, to try and split it into two lines, but the inconsistent width will screw that.
The only real solution here is to hack the js and/or markup.