Merge pull request #16 from kasmtech/feature/KASM-1946_default_noVNC_elements

KASM-1946 Fix default noVNC dialogs appearing shortly before the kasm…
This commit is contained in:
j-travis 2021-10-12 11:20:46 -04:00 committed by GitHub
commit 3022d19851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 9 deletions

View File

@ -278,9 +278,6 @@ select:active {
max-width: 90%;
padding: 15px;
transition: 0.5s ease-in-out;
transform: translateY(-50px);
opacity: 0;
text-align: center;
@ -291,7 +288,7 @@ select:active {
background: rgba(33, 130, 177, 0.8);
}
#noVNC_fallback_error.noVNC_open > div {
transform: translateY(0);
transition: 0.5s ease-in-out;
opacity: 1;
}
@ -862,17 +859,24 @@ select:active {
#noVNC_credentials_dlg {
position: relative;
}
transform: translateY(-50px);
}
#noVNC_credentials_dlg.noVNC_open {
transform: translateY(0);
}
#noVNC_credentials_dlg ul {
list-style: none;
margin: 0px;
padding: 0px;
}
#noVNC_credentials_dlg.noVNC_panel {
transition: none;
transform: none;
}
#noVNC_credentials_dlg.noVNC_panel.noVNC_open {
transition: none;
transform: none;
}
.noVNC_hidden {
display: none;
}