Better responsive design on many comment children

pull/525/head
Chocobozzz 2018-04-18 15:00:42 +02:00
parent 80109b2ddb
commit c9ffd53217
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 33 additions and 7 deletions

View File

@ -14,6 +14,8 @@
.comment {
flex-grow: 1;
// Fix word-wrap with flex
min-width: 1px;
.highlighted-comment {
display: inline-block;
@ -44,8 +46,8 @@
}
.comment-html {
word-wrap: initial;
word-break: normal;
word-wrap: break-word;
text-align: justify;
/deep/ a {
@ -76,3 +78,26 @@
}
}
}
// Decrease the space of child comments on small screens
@media screen and (max-width: 1600px) {
.children {
margin-left: -20px;
}
}
@media screen and (max-width: 1200px) {
.children {
margin-left: -30px;
}
}
@media screen and (max-width: 600px) {
.children {
margin-left: -40px;
}
.root-comment {
img { margin-right: 10px; }
}
}

View File

@ -19,8 +19,8 @@
font-size: 13px;
}
.comment-html {
word-wrap: normal;
word-break: normal;
text-align: justify;
}
@media screen and (max-width: 600px) {
.view-replies {
margin-left: 46px;
}
}

View File

@ -215,7 +215,8 @@
font-size: 15px;
.video-info-description-html {
word-wrap: break-word;
word-break: normal;
word-wrap: normal;
text-align: justify;
}