Add nsfw checkbox for posts

This commit is contained in:
r 2019-12-22 16:27:49 +00:00
parent 2506615f42
commit 05daa6a148
7 changed files with 42 additions and 20 deletions

View file

@ -234,6 +234,8 @@
.user-profile-img {
max-height: 100px;
max-width: 100px;
object-fit: contain;
vertical-align: top;
}
.user-profile-decription {
@ -284,6 +286,11 @@
position: relative;
}
.status-profile-img-container .img-link {
width: 48px;
overflow: hidden;
}
.status-nsfw-overlay {
height: 100%;
width: 100%;
@ -305,3 +312,7 @@
.status-video-container:hover .status-nsfw-overlay {
display: none;
}
.post-form-field>* {
vertical-align: middle;
}