[Frontend] Support for hover on FP sub-objects in browse mode

Fixes #1849
This commit is contained in:
Charles Hacskaylo 2018-01-08 15:15:46 -08:00 committed by Victor Woeltjen
parent 54a453e5a0
commit d03f323a9b
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,6 @@
$ohH: $btnFrameH; $ohH: $btnFrameH;
$bc: $colorInteriorBorder; $bc: $colorInteriorBorder;
&.child-frame.panel { &.child-frame.panel {
border: 1px solid transparent;
z-index: 0; // Needed to prevent child-frame controls from showing through when another child-frame is above z-index: 0; // Needed to prevent child-frame controls from showing through when another child-frame is above
&:not(.no-frame) { &:not(.no-frame) {
background: $colorBodyBg; background: $colorBodyBg;
@ -91,7 +90,7 @@
&.no-frame { &.no-frame {
background: transparent !important; background: transparent !important;
border: none; border-color: transparent;
.object-browse-bar .right { .object-browse-bar .right {
$m: 0; $m: 0;
background: rgba(black, 0.3); background: rgba(black, 0.3);

View File

@ -20,6 +20,7 @@
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
.s-hover-border { .s-hover-border {
border: 1px solid transparent;
&:hover { &:hover {
border-color: rgba($colorSelectableSelectedPrimary, 0.5) !important; border-color: rgba($colorSelectableSelectedPrimary, 0.5) !important;
} }