GUACAMOLE-346: Display "seek in progress" notification when seeking in playback example.

This commit is contained in:
Michael Jumper
2017-07-15 16:50:02 -07:00
parent b41311f1ed
commit 25de43391a
3 changed files with 54 additions and 2 deletions

View File

@@ -21,6 +21,41 @@
width: 640px;
}
.player #display {
position: relative;
}
.player .notification-container {
position: absolute;
z-index: 1;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
.player .seek-notification {
color: white;
background: rgba(0, 0, 0, 0.75);
display: none; /* Initially hidden */
width: 100%;
height: 100%;
}
.player #display.seeking .seek-notification {
display: table;
}
.player .seek-notification p {
display: table-cell;
text-align: center;
vertical-align: middle;
font-family: sans-serif;
}
.player .controls {
width: 100%;