From 285e32465e80383f0614c06a0402583b9a853203 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 8 Apr 2014 08:33:09 -0700 Subject: [PATCH] Orbit: Fix for links not working on some devices When a user wraps an image in a link inside Orbit, the link should be set to display:block. I have limited this styles to only links that are direct children of the
  • . We don't want to set all links inside Orbit to be display:block (such as links inside a caption). --- scss/foundation/components/_orbit.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/foundation/components/_orbit.scss b/scss/foundation/components/_orbit.scss index 1c2aa91a7..2eb6889f1 100644 --- a/scss/foundation/components/_orbit.scss +++ b/scss/foundation/components/_orbit.scss @@ -188,6 +188,8 @@ $orbit-timer-hide-for-small: true !default; width: 100%; @include translate3d(100%,0,0); + > a { display: block; } + &.active { opacity: 1; // "relative" positioning is required for variable height of children. -- 2.47.2