mirror of https://github.com/zulip/zulip.git
compose: Move related media queries to zulip.css.
This commit is contained in:
parent
af25709e30
commit
5f1f0f9eb0
|
@ -1347,26 +1347,6 @@ textarea.new_message_textarea,
|
|||
}
|
||||
}
|
||||
|
||||
@media (width < $xl_min) {
|
||||
#compose-content {
|
||||
margin-right: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width < $md_min) {
|
||||
#compose-content {
|
||||
margin-right: 7px;
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width < $mm_min) {
|
||||
#compose-content {
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
#compose.compose-fullscreen {
|
||||
z-index: 99;
|
||||
|
||||
|
|
|
@ -2446,6 +2446,10 @@ select.invite-as {
|
|||
/* = (width of button, square with header) * 4 (number of buttons) + 10px extra margin. */
|
||||
margin-right: calc(var(--header-height) * 4 + 10px);
|
||||
}
|
||||
|
||||
#compose-content {
|
||||
margin-right: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2508,6 +2512,10 @@ select.invite-as {
|
|||
left: 5%;
|
||||
top: 5%;
|
||||
}
|
||||
|
||||
#compose-content {
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2569,13 +2577,18 @@ select.invite-as {
|
|||
}
|
||||
|
||||
/* We don't want user to experience Zulip below this width since
|
||||
we don't don't develop features for below this width. */
|
||||
we don't develop features for below this width. */
|
||||
body,
|
||||
html,
|
||||
.app-main,
|
||||
.header-main {
|
||||
min-width: 320px;
|
||||
}
|
||||
|
||||
#compose #compose-content {
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
#scroll-to-bottom-button-container {
|
||||
|
|
Loading…
Reference in New Issue