Hm. This is breaking my brain. I can create a td class for comments that enables an independent hover effect, but I get a large space in the preceding subtext class cell, which I can't seem to resolve.
Using spanclass the spacing is conserved, but I only get some attributes onto the comment, but not hover. Here's where I am working, with a spanclass comref that only seems to be able to override the color of the subtext class.
(def commentlink (i user)
(when (cansee user i)
(pr bar*)
(tag (a href (item-url i!id))
(let n (- (visible-family user i) 1)
(if (> n 0)
(spanclass comref
(do (pr (plural n "comment"))
(awhen (and show-threadavg* (admin user) (threadavg i))
(pr " (@(num it 1 t t))"))))
(pr "Add comment"))))))
I tried to define an ID class, but #class doesn't seem to work as a declaration? Not sure if it is a failing of my CSS, Arc, or both. :/
If anyone has an idea how to create a hover effect on comments when n<0, please throw me a bone. :)