fix(video-quality-label): push around z-indexes for firefox

This commit is contained in:
Leonard Kim 2017-08-22 11:32:51 -07:00 committed by yanas
parent fdee6dc360
commit c54879d605
2 changed files with 6 additions and 3 deletions

View File

@ -22,10 +22,10 @@
* clickable but its inline dialogs must display over the video state * clickable but its inline dialogs must display over the video state
* indicator when videos are displayed. * indicator when videos are displayed.
*/ */
z-index: $tooltipsZ; z-index: #{$tooltipsZ + 1};
&.hide-videos { &.hide-videos {
z-index: calc(#{$tooltipsZ} - 1); z-index: #{$tooltipsZ - 1};
} }
/** /**

View File

@ -142,11 +142,14 @@
} }
} }
#videoResolutionLabel,
.centeredVideoLabel.moveToCorner { .centeredVideoLabel.moveToCorner {
z-index: $tooltipsZ; z-index: $tooltipsZ;
} }
#videoResolutionLabel {
z-index: #{$tooltipsZ + 1};
}
.centeredVideoLabel { .centeredVideoLabel {
bottom: 45%; bottom: 45%;
border-radius: 2px; border-radius: 2px;