From: Dylan William Hardison Date: Wed, 10 Jan 2018 19:39:30 +0000 (-0500) Subject: Bug 1429290 - allow bug modal to be narrower than 900px X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f28863f4c3ab15d5df1bde15d6bc003bd4a23d58;p=thirdparty%2Fbugzilla.git Bug 1429290 - allow bug modal to be narrower than 900px --- diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index 0fbc536b9..65aeec86d 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -989,3 +989,27 @@ div.ui-tooltip { #user-guide { padding-top: 5px; } + + +/* even narrower displays */ +@media screen and (max-width: 900px) { + #wrapper { + position: initial !important; + } + + #header .inner { + width: auto !important; + } + + .module .fields-lhs, .module .fields-rhs { + min-width: 380px; + } + + #main-inner { + min-width: auto; + } + .spin-latch { + display: none; + } +} +/* end even narrower displays */