FIX: long titles need a max-width in composer when replying on desktop view

This commit is contained in:
Neil Lalonde 2017-01-17 15:14:58 -05:00
parent 0c71e37aab
commit bfc52a8e6f
1 changed files with 14 additions and 0 deletions

View File

@ -373,6 +373,20 @@
.reply-to {
margin-bottom: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: $tertiary;
@media (min-width: 1101px) {
max-width: 80%;
}
@media (max-width: 1100px) {
max-width: 500px;
}
@media (max-width: 600px) {
max-width: 300px;
}
i {
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));