Fix task modal with when attachments are present
This commit is contained in:
parent
815844fe2a
commit
ff70696111
2 changed files with 11 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue