show mobile replying only for touch devices

This commit is contained in:
igoradamenko
2018-05-11 23:49:28 +03:00
parent 2328c28213
commit 01cfbcfd49
2 changed files with 25 additions and 33 deletions
@@ -7,10 +7,8 @@ $step: 24px;
&.comment_replying {
.comment__input {
margin-left: -$i * $step;
@media (min-width: 768px) {
margin-left: 0;
@media (hover: none) and (max-width: 768px) {
margin-left: -$i * $step;
}
}
}
@@ -1,38 +1,32 @@
.comment_replying {
border: 8px solid #eee;
padding-bottom: 0;
@media (min-width: 768px) {
border: 0;
padding-top: 0;
}
.comment__body {
padding: 8px 8px 0;
@media (min-width: 768px) {
padding: 0;
}
}
.comment__input {
border-left-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-top-width: 8px;
@media (min-width: 768px) {
border: 12px solid #eee;
}
border: 12px solid #eee;
}
.comment__score {
top: 12px;
right: 8px;
top: 4px;
right: 0;
}
@media (min-width: 768px) {
top: 4px;
right: 0;
// it isn't mobile first, but it's fine here
@media (hover: none) and (max-width: 768px) {
border: 8px solid #eee;
padding-bottom: 0;
.comment__body {
padding: 8px 8px 0;
}
.comment__input {
border-left-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-top-width: 8px;
}
.comment__score {
top: 12px;
right: 8px;
}
}
}