Merge pull request #5198 from opf/fix/24679-WP-toolbar-menu-not-visible-on-small-screens

[24679] WP toolbar menu not visible on small screens
pull/5215/head
Oliver Günther 8 years ago committed by GitHub
commit e66591215d
  1. 10
      app/assets/stylesheets/layout/_work_package.sass

@ -306,6 +306,16 @@
width: rem-calc(354)
display: inline-block
// Workaround to make the toolbar menu accessible even on very small screens
@media screen and (max-height: 25em)
.controller-work_packages.action-show,
.controller-work_packages.action-details,
.controller-work_packages.action-index
#main
overflow: overlay
#content
overflow-y: auto
// Implement two column layout for WP full screen view
@media screen and (min-width: 90rem)
.action-show .attributes-group,

Loading…
Cancel
Save