Body links are (I believe) what is under discussion
Correct. I made that post at 1am after a long day of... stuff.
I am seeing the pattern I'm talking about all over. Today I noticed it on The Gates Notes - [
gatesnotes.com...]
Here's a JS Fiddle based on the Gates version
[
jsfiddle.net...]
This is not simply that links are blue (in not all cases is this true). It's that the underlining is REALLY prominent and obvious on both mobile and desktop. Links are usually styled in this pattern with something like this (this comes from The Gates Notes -- Wired is similar)
.articleContent a {
border-bottom: 0 solid #55acee;
box-shadow: inset 0 -5px 0 #55acee;
color: inherit;
-webkit-transition: background .15s cubic-bezier(0.33,0.66,0.66,1);
transition: background .15s cubic-bezier(0.33,0.66,0.66,1);
}
hover colour for aesthetics, instead of underline or non-hover colour which I thought of as ugly and disruptive.
As I read that, your links would look like text until someone hovers. Surely that's not what you're suggesting?
link is blue underlined text
Yes, but the pattern I'm talking about sets
text-decoration:none so the default system underline (which is small and often ugly) and replaces it with a bolder, much more prominent underline using border and box-shadow and such. Also, the underline and the text is not necessarily the same color. So on The Gates Notes, the *underline* is blue, but the text is black.
On every site I've seen it on, I've found it *much* easier to find the links, but at the same time more aesthetic. I haven't tested it, of course, but I think it's an interesting new design pattern (at least new to me) and I find it effective.
links should be immediately identifiable
I think that's the key - if you vary the UI standard, make that variation adhere to known standards to the extent that graeme_p's standard is upheld, but if you can uphold that standard and *improve* it, that's a win.
What drives me nuts is the number of sites where some designer is so stuck on his/her elegant aesthetic that I can't find the links! I can't count how many sites I have come across where the only way to find links is to hover over all sort of words that might conceivably link. I agree that the default typography in all browser/OS combos I know of is ugly and it's even worse for links.
This pattern allows for nice type while still making sure that the links are immediately recognizable as such (of course those are both subjective judgements, though the second one could be tested easily).
I tested links as SMALL CAPS, blue, underlined. yellow hover,
This is a similar idea - it doesn't violate the UI standard, but it does offer a bit of extra help in locating links.