[CSS] Scrollable panels. Attachments width is retained on view now.

This commit is contained in:
Eliseu Amaro 2021-09-16 16:57:10 +01:00 committed by Diogo Peralta Cordeiro
parent 42f9a6a79c
commit b8e66aa9bf
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 8 additions and 2 deletions

View File

@ -409,11 +409,15 @@ summary:hover .icon-details-open {
background-color: var(--translucent);
padding: var(--small-size);
width: auto;
height: auto;
max-width: 100%;
}
.note-attachments > figure > img,
.note-attachments > figure > video {
width: min-content;
height: auto;
}
.note-attachments > figure figcaption {
display: flex;
max-width: 100%;
@ -758,6 +762,8 @@ input[type=file] {
height: calc(100% - 3rem);
padding: var(--unit-size);
overflow-y: auto;
}