Better responsive design on many comment children
This commit is contained in:
parent
80109b2ddb
commit
c9ffd53217
3 changed files with 33 additions and 7 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -215,7 +215,8 @@
|
|||
font-size: 15px;
|
||||
|
||||
.video-info-description-html {
|
||||
word-wrap: break-word;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue