From fe60d7abbc4f6754426c0aac007118f01738d678 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Thu, 14 Sep 2017 10:25:34 -0700 Subject: [PATCH] [Front-end] Fix CSS targeting Fixes #1704 Pause/play and New Tab buttons now display properly; --- platform/commonUI/general/res/sass/user-environ/_frame.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/commonUI/general/res/sass/user-environ/_frame.scss b/platform/commonUI/general/res/sass/user-environ/_frame.scss index 37dad0d21d..e05f30177e 100644 --- a/platform/commonUI/general/res/sass/user-environ/_frame.scss +++ b/platform/commonUI/general/res/sass/user-environ/_frame.scss @@ -142,7 +142,7 @@ body.desktop .frame { // Hide local controls initially and show it them on hover when they're in an element that's in a frame context // Frame template is used because we need to target the lowest nested frame - .right { + .object-browse-bar .btn-bar { opacity: 0; pointer-events: none; } @@ -150,7 +150,7 @@ body.desktop .frame { // Target the first descendant so that we only show the elements in the outermost container. // Handles the case where we have layouts in layouts. &:hover > .object-browse-bar { - .right { + .btn-bar { opacity: 1; pointer-events: inherit; }