Skip to content

Commit

Permalink
fix(FEC-11713): playback rate options are overlaid by dual screen menu (
Browse files Browse the repository at this point in the history
#4252)

**the issue:**
some playback rate options are overlaid by dual screen menu and can't be chosen.

**solution:**
moving z-index from .controlBarContainer.hover to .controlBarContainer css class.

Solves FEC-11713
  • Loading branch information
lianbenjamin authored Nov 22, 2021
1 parent e2b6cfd commit 054786b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skins/kdark/css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ body {
position: absolute;
bottom: 0;
width: 100%;
z-index: 100;

-webkit-transition: bottom 0.3s ease-in, visibility 0.3s ease-in, opacity 0.3s ease-in;
-moz-transition: bottom 0.3s ease-in, visibility 0.3s ease-in, opacity 0.3s ease-in;
Expand All @@ -262,7 +263,6 @@ body {

.controlBarContainer.hover {
opacity: 0;
z-index: 100;
}
.controlBarContainer.open {
opacity: 1;
Expand Down

0 comments on commit 054786b

Please sign in to comment.