prevent source link overflow

This commit is contained in:
Luna D 2021-02-02 19:58:22 +01:00
parent 3810092a17
commit 4a160e1772
No known key found for this signature in database
GPG key ID: 81AF416F2CC36FC8

View file

@ -219,7 +219,13 @@ span.spoiler div.image-container {
}
.js-source-link {
word-wrap: anywhere;
word-wrap: break-word;
}
#image-source > p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.interaction-user-list-item {
@ -315,4 +321,4 @@ span.spoiler div.image-container {
.full-height {
height: 100%;
}
}