Delicious.com Date Display

Oct 27, 2008 15:08

So, is anyone unsatisfied with the date display? Personally, I really really miss seeing the exact time, and I'm also not so sure I like seeing each date displayed just once. Or maybe I *am* ok with that, but I don't like the way it takes up so much space on the left ( Read more... )

code for a better tomorrow, satisfy my curiosity, wishes are fishes

Leave a comment

Comments 10

wistfuljane October 27 2008, 22:56:58 UTC
I too am dissatisfied with the date display. I like how the each date is displayed once, but I also want the exact time, not only the date! And for the date to be displayed in search results! That's where I miss it the most; I constantly have to click or look up the url history to find when a link was bookmarked.

Reply

murklins October 28 2008, 00:02:03 UTC
Regarding the date in search results, do you mean the date it was first posted?

Reply

wistfuljane October 28 2008, 01:22:28 UTC
Yes! In everyone's bookmarks search results, the date it was first bookmarked and in your bookmarks search results, the date you first bookmarked.

Reply


ext_69049 October 28 2008, 12:12:14 UTC
I really miss having the exact time displayed in network view; that's how I figure out who's online!

Reply

murklins October 28 2008, 16:45:05 UTC
Yes, me too! And that's a page where I think it would be pretty easy to add it in with greasemonkey.

Reply


turlough October 28 2008, 17:37:20 UTC
I would ideally like to get rid of it completely for my own bookmarks since I use tags for when I recced something. I only want to see it on the network and subscription views and if I'm viewing someone else's bookmarks. And even then I would like for it to be in a tiny font in a very narrow column, as it is it's stealing valuable screen space from more important things. My way of using Delicious might be a bit unusual though :-)

Reply

murklins October 29 2008, 18:37:37 UTC
I think you could do all of these things without javascript. so no greasemonkey required, just a quick bit of CSS in Stylish:

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("delicious.com") {
ul.bookmarks .dateGroup span {
font-size:60% !important;
}
ul.bookmarks .dateGroup {
left: -40px !important;
}
ul.bookmarks li.post {
margin-left: 3.5em !important;
}
}

@-moz-document url-prefix("http://delicious.com/murklins") {
ul.bookmarks .dateGroup {
display: none;
}
ul.bookmarks li.post {
margin-left: 0 !important;
}
}
ETA: But, uh, change "murklins" to your del name, of course.

Reply

turlough October 30 2008, 16:51:35 UTC
THANK YOU!!! It's exactly what I wanted and it's working perfectly!!

Just looking at Delicious's CSS gives me a headache so I'm incredibly grateful to anyone who'll do it voluntarily :-)

Reply

murklins October 30 2008, 17:00:14 UTC
\o/ And god, the Delicious CSS, I KNOW. I have the basics worked out now, so I can do minor things to the posts, but that's about it.

Reply


Leave a comment

Up