diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-01-10 20:39:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 20:39:30 +0100 |
commit | f28863f4c3ab15d5df1bde15d6bc003bd4a23d58 (patch) | |
tree | fdc6b5df36e90715e8a5d2088657878e444ea751 /extensions/BugModal | |
parent | ea8ed42747c76f5fdf14c6982d80cf6e316d3c6c (diff) | |
download | bugzilla-f28863f4c3ab15d5df1bde15d6bc003bd4a23d58.tar.gz bugzilla-f28863f4c3ab15d5df1bde15d6bc003bd4a23d58.tar.xz |
Bug 1429290 - allow bug modal to be narrower than 900px
Diffstat (limited to 'extensions/BugModal')
-rw-r--r-- | extensions/BugModal/web/bug_modal.css | 24 |
1 files changed, 24 insertions, 0 deletions
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 */ |