]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1429290 - allow bug modal to be narrower than 900px
authorDylan William Hardison <dylan@hardison.net>
Wed, 10 Jan 2018 19:39:30 +0000 (14:39 -0500)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2018 19:39:30 +0000 (14:39 -0500)
extensions/BugModal/web/bug_modal.css

index 0fbc536b9b8befeceae25a9cab731f54c0125521..65aeec86d0507a4f504f606bf9cb5fd996dd8fc2 100644 (file)
@@ -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 */