[Front-end] Fix CSS targeting

Fixes #1704
Pause/play and New Tab buttons now
display properly;
This commit is contained in:
Charles Hacskaylo 2017-09-14 10:25:34 -07:00
parent 54b975f242
commit fe60d7abbc

View File

@ -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;
}