diff --git a/app/assets/stylesheets/mobile/lightbox.scss b/app/assets/stylesheets/mobile/lightbox.scss index d1ca00bb4e..5f3d98bfc7 100644 --- a/app/assets/stylesheets/mobile/lightbox.scss +++ b/app/assets/stylesheets/mobile/lightbox.scss @@ -1,6 +1,7 @@ .lightbox .meta, .lightbox:hover .meta { opacity: 0.7; + transition: none; } .meta { @@ -21,8 +22,15 @@ .expand { position: initial; - filter: invert(100%); float: none; height: 16px; + &:before { + // ideally, the SVG used here should be in HTML and reference the SVG sprite + // the SVG used here is the "expand" icon from FontAwesome 4.7.0 + content: svg-uri( + '' + ); + opacity: inherit; + } } }