From 795e267aabe64b03fdd869caf536a88d149adaab Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Fri, 28 Oct 2016 07:26:23 -0700 Subject: [PATCH] Add hover styles to HTML table row --- notebook/static/notebook/less/renderedhtml.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/notebook/static/notebook/less/renderedhtml.less b/notebook/static/notebook/less/renderedhtml.less index e48e5ef71..4e3462c03 100644 --- a/notebook/static/notebook/less/renderedhtml.less +++ b/notebook/static/notebook/less/renderedhtml.less @@ -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;}