mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 08:26:11 +00:00
scroll_bar: Flip max-width queries for min-width.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
ae0afa2390
commit
d679aa015d
@@ -42,10 +42,10 @@ exports.initialize = function () {
|
||||
if (sbWidth > 0) {
|
||||
$(".header").css("left", "-" + sbWidth + "px");
|
||||
$(".header-main").css("left", sbWidth + "px");
|
||||
$(".header-main .column-middle").css("margin-right", 250 + sbWidth + "px");
|
||||
$(".header-main .column-middle").css("margin-right", 7 + sbWidth + "px");
|
||||
|
||||
$(".fixed-app").css("left", "-" + sbWidth + "px");
|
||||
$(".fixed-app .column-middle").css("margin-left", 250 + sbWidth + "px");
|
||||
$(".fixed-app .column-middle").css("margin-left", 7 + sbWidth + "px");
|
||||
|
||||
$(".column-right").css("right", sbWidth + "px");
|
||||
$(".app-main .right-sidebar").css({
|
||||
@@ -54,19 +54,19 @@ exports.initialize = function () {
|
||||
});
|
||||
|
||||
$("#compose").css("left", "-" + sbWidth + "px");
|
||||
$(".compose-content").css({left: sbWidth + "px", "margin-right": 250 + sbWidth + "px"});
|
||||
$(".compose-content").css({left: sbWidth + "px", "margin-right": 7 + sbWidth + "px"});
|
||||
$("#keyboard-icon").css({right: sbWidth + 35 + "px"});
|
||||
|
||||
$("head").append(
|
||||
"<style> @media (max-width: " +
|
||||
media_breakpoints.xl_max +
|
||||
"<style> @media (min-width: " +
|
||||
media_breakpoints.xl_min +
|
||||
") { .compose-content, .header-main .column-middle { margin-right: " +
|
||||
(7 + sbWidth) +
|
||||
(250 + sbWidth) +
|
||||
"px !important; } } " +
|
||||
"@media (max-width: " +
|
||||
media_breakpoints.md_max +
|
||||
"@media (min-width: " +
|
||||
media_breakpoints.md_min +
|
||||
") { .fixed-app .column-middle { margin-left: " +
|
||||
(7 + sbWidth) +
|
||||
(250 + sbWidth) +
|
||||
"px !important; } } " +
|
||||
"</style>",
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user