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
+2 -2
View File
@@ -22,10 +22,10 @@
* clickable but its inline dialogs must display over the video state
* indicator when videos are displayed.
*/
z-index: $tooltipsZ;
z-index: #{$tooltipsZ + 1};
&.hide-videos {
z-index: calc(#{$tooltipsZ} - 1);
z-index: #{$tooltipsZ - 1};
}
/**
+4 -1
View File
@@ -142,11 +142,14 @@
}
}
#videoResolutionLabel,
.centeredVideoLabel.moveToCorner {
z-index: $tooltipsZ;
}
#videoResolutionLabel {
z-index: #{$tooltipsZ + 1};
}
.centeredVideoLabel {
bottom: 45%;
border-radius: 2px;