Skip to content
This repository has been archived by the owner on Dec 1, 2017. It is now read-only.

Commit

Permalink
Bug 1228728 - Fix bad layout on conversation windows when using the '…
Browse files Browse the repository at this point in the history
…Medium' size in Windows' display settings. r=dcritch
  • Loading branch information
Standard8 committed Dec 23, 2015
1 parent 56531fb commit 6efd673
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions shared/css/conversation.css
Expand Up @@ -809,8 +809,11 @@ body[platform="win"] .share-service-dropdown.overflow > .dropdown-menu-item {
}
}

/* e.g. very narrow widths similar to conversation window */
@media screen and (max-width:350px) {
/* e.g. very narrow widths similar to conversation window.
Note: on some displays (e.g. windows / medium size) the width
may be very slightly over the expected width, so we add on 2px
just in case. */
@media screen and (max-width:352px) {
.media-layout > .media-wrapper {
flex-flow: column nowrap;
}
Expand Down Expand Up @@ -1127,8 +1130,11 @@ html[dir="rtl"] .text-chat-entry.received .text-chat-arrow {
border-top: 1px solid #66c9f2;
}

/* e.g. very narrow widths similar to conversation window */
@media screen and (max-width:350px) {
/* e.g. very narrow widths similar to conversation window.
Note: on some displays (e.g. windows / medium size) the width
may be very slightly over the expected width, so we add on 2px
just in case. */
@media screen and (max-width:352px) {
.text-chat-view {
display: flex;
flex-flow: column nowrap;
Expand Down

0 comments on commit 6efd673

Please sign in to comment.