From eb4beba338def4fd207ddda16c6585ee1171ae52 Mon Sep 17 00:00:00 2001 From: Ryan Panning Date: Wed, 6 May 2015 10:57:17 -0500 Subject: paper: fixed selector for table-hover fade effect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed `:hover` from selector for table-hover `.transition()`. That caused the fade effect to only apply on “mouseover” but not “mouseout”. Updated both .less and .scss files and ran `grunt swatch:paper` --- paper/bootstrap.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'paper/bootstrap.css') diff --git a/paper/bootstrap.css b/paper/bootstrap.css index 612b46c4..471bdf4d 100644 --- a/paper/bootstrap.css +++ b/paper/bootstrap.css @@ -6785,9 +6785,9 @@ a { -o-transition: all 0.2s; transition: all 0.2s; } -.table-hover > tbody > tr:hover, -.table-hover > tbody > tr:hover > th, -.table-hover > tbody > tr:hover > td { +.table-hover > tbody > tr, +.table-hover > tbody > tr > th, +.table-hover > tbody > tr > td { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; -- cgit v1.2.3