fix: add logic for hiding the dropdown of protocol options

This commit is contained in:
Parkreiner
2024-06-25 21:20:42 +00:00
parent f3c30abeb4
commit 8aff87fdf7

View File

@@ -381,8 +381,14 @@ function hideFormForInitialSubmission() {
$${cssOpacityVariableName}: 0;
}
/* web-client-form is the container for the main session form */
web-client-form {
/*
web-client-form is the container for the main session form, while
the div is for the dropdown that is used for selecting the protocol.
The dropdown is not inside of the form for CSS styling reasons, so we
need to select both.
*/
web-client-form,
body > div.p-overlay {
opacity: calc(100% * var($${cssOpacityVariableName})) !important;
}
`;