/*
 * Keep the supplied white transparent logo readable on Roundcube's light login
 * screen while leaving it white in the dark Elastic navigation rail.
 */
body.task-login #logo {
    filter: invert(1);
    max-height: 112px;
    max-width: 240px;
    object-fit: contain;
}

html.dark-mode body.task-login #logo {
    filter: none;
}

#layout-menu .popover-header img#logo,
#layout-menu .popover-header #logo {
    object-fit: contain;
}
