downstyler icon indicating copy to clipboard operation
downstyler copied to clipboard

Investigate mini.css's table rules

Open waldyrious opened this issue 8 years ago • 1 comments

and whether there's something we'd want to adopt/adapt.

https://chalarangelo.github.io/mini.css/table.html (project home page)

waldyrious avatar Apr 26 '17 18:04 waldyrious

Another table enhancement, which could be an interesting addition to this baseline style, is highlighting the current (hovered) row. This seems similar to the behavior implemented for links (they get underlined on hover).

Two possible ways to do this:

tr:hover::after { content: "◂"; font-weight: normal; color: #ccc; margin-left: .3em; position: absolute; }
tr:hover, tr:hover th { background: AliceBlue; }

waldyrious avatar Nov 11 '17 15:11 waldyrious