From 0ade0668183f24937714b5d00cd30e509d73d143 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Tue, 8 Mar 2016 16:44:35 -0800 Subject: [PATCH] Add pointer-events: none to tooltips Out tooltips often are covering other interactive elements on the page, this allows interacting with those elements "through" the tooltip. Without this hovering over our rows of edit buttons feels clunky. --- .../stylesheets/spree/backend/plugins/_bootstrap_tooltip.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/app/assets/stylesheets/spree/backend/plugins/_bootstrap_tooltip.scss b/backend/app/assets/stylesheets/spree/backend/plugins/_bootstrap_tooltip.scss index 55339bd4aca..3916a852d07 100644 --- a/backend/app/assets/stylesheets/spree/backend/plugins/_bootstrap_tooltip.scss +++ b/backend/app/assets/stylesheets/spree/backend/plugins/_bootstrap_tooltip.scss @@ -33,6 +33,8 @@ } .tooltip { + pointer-events: none; + &.action-edit, &.action-save, &.action-capture, &.action-add { @include bootstrap-tooltip-color($brand-success); }