mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
FIX: long titles need a max-width in composer when replying on desktop view
This commit is contained in:
parent
0c71e37aab
commit
bfc52a8e6f
|
@ -373,6 +373,20 @@
|
||||||
|
|
||||||
.reply-to {
|
.reply-to {
|
||||||
margin-bottom: 10px;
|
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 {
|
i {
|
||||||
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user