* Mail/Calendar: show scrollbar, if meeting request does not fit into preview area

This commit is contained in:
ralf 2023-04-04 08:46:39 +02:00
parent 98ae5aac1c
commit 4ccd15a50d

View File

@ -99,42 +99,43 @@
</rows> </rows>
</grid> </grid>
<styles> <styles>
#popupMainDiv { #popupMainDiv {
border: none; border: none;
margin: 0; margin: 0;
} }
form#calendar-meeting {
overflow-y: auto;
}
.meetingRequestMessage {
font-size: 120%;
}
.meetingRequestMessage { table.meetingRequest {
font-size: 120%; border: 2px solid black;
} }
.meetingRequest tr.th {
background-color: #4040FF;
}
.meetingRequest tr.th td {
font-weight: bold;
font-size: 120%;
color: white;
}
.meetingRequest td {
padding: 3px;
}
.meetingRequest a {
display: inline-block;
max-width: 60em;
overflow-wrap: break-word;
vertical-align: text-top;
}
table.meetingRequest { .meetingRequestError {
border: 2px solid black; color: red;
} font-style: italic;
.meetingRequest tr.th { font-size: 120%;
background-color: #4040FF; }
} </styles>
.meetingRequest tr.th td {
font-weight: bold;
font-size: 120%;
color: white;
}
.meetingRequest td {
padding: 3px;
}
.meetingRequest a {
display: inline-block;
max-width: 60em;
overflow-wrap: break-word;
vertical-align: text-top;
}
.meetingRequestError {
color: red;
font-style: italic;
font-size: 120%;
}
</styles>
</template> </template>
</overlay> </overlay>