Merge pull request #1858 from gnestor/table-hover

Add hover styles to HTML table row
This commit is contained in:
Matthias Bussonnier 2016-10-31 06:34:26 -07:00 committed by GitHub
commit a68f3c0aef

View File

@ -87,6 +87,9 @@
tbody tr:nth-child(odd) {
background: #f5f5f5;
}
tbody tr:hover {
background: rgba(66, 165, 245, 0.2);
}
* + table {margin-top: 1em;}
p {text-align: left;}