summaryrefslogtreecommitdiff
path: root/paper/_bootswatch.scss
diff options
context:
space:
mode:
authorRyan Panning <panman82@gmail.com>2015-05-06 10:57:17 -0500
committerRyan Panning <panman82@gmail.com>2015-05-06 10:57:17 -0500
commiteb4beba338def4fd207ddda16c6585ee1171ae52 (patch)
tree1eab96ed933ad978bb4614c9606d50ffcc97e3ea /paper/_bootswatch.scss
parent1ff964b414167dc9e9a274f9bc5482aff9cc5c60 (diff)
paper: fixed selector for table-hover fade effect
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`
Diffstat (limited to 'paper/_bootswatch.scss')
-rw-r--r--paper/_bootswatch.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/paper/_bootswatch.scss b/paper/_bootswatch.scss
index b81e424e..80e50c78 100644
--- a/paper/_bootswatch.scss
+++ b/paper/_bootswatch.scss
@@ -125,9 +125,9 @@ a {
// Tables =====================================================================
.table-hover {
- > tbody > tr:hover,
- > tbody > tr:hover > th,
- > tbody > tr:hover > td {
+ > tbody > tr,
+ > tbody > tr > th,
+ > tbody > tr > td {
@include transition(all 0.2s);
}
}