Fix task modal with when attachments are present
continuous-integration/drone/push Build was killed Details

This commit is contained in:
kolaente 2020-05-06 21:41:42 +02:00
parent 815844fe2a
commit ff70696111
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 11 additions and 2 deletions

View File

@ -18,11 +18,11 @@
overflow: auto; overflow: auto;
.scrolling-content { .scrolling-content {
max-width: 800px; max-width: 1024px;
width: 100%; width: 100%;
margin: 4rem auto; margin: 4rem auto;
@media screen and (max-width: 800px) { @media screen and (max-width: 1024px) {
margin: 0; margin: 0;
.close { .close {

View File

@ -53,6 +53,15 @@
} }
} }
table {
table-layout: fixed;
td {
overflow: hidden;
word-break: break-all;
}
}
.details { .details {
padding-bottom: 0.75em; padding-bottom: 0.75em;
flex-flow: row wrap; flex-flow: row wrap;