/* Bridging prototype to production is sometimes best done through a monkey patch. */
/* For each patch here, please provide a ticket ref and short description, */
/* so that we can more easily audit and remove patches in the future. */

/* https://github.com/syslabcom/quaive.prototype/issues/392 */
/* External apps should only be visibile on mobile when explicitly */
/* configured as .mobile */
@media only screen and (max-width: 767px) {
    .tiles.apps .tile.external:not(.mobile) {
        display: none;
    }
}

/* https://github.com/quaive/ploneintranet/issues/5725 */
/* https://proto.quaivecloud.com/apps/calendar/panel-accept-event-sharing-request.html */
/* Show the details of the moderated event; without showing the event view itself (b/c permission issues). */
.DEV-panel-moderate-event > .event-details {
    margin: 1em 0;
    padding: 1em;
    border: solid grey 1px;
    border-radius: 0.5em;
}
.DEV-panel-moderate-event > p {
    text-align: center;
}
.DEV-panel-moderate-event {
    margin-bottom: 1rem;
}
