Commit 2a62c238 authored by Phil Hughes's avatar Phil Hughes

Merge branch '2680-focus-mode-of-issues-board-hides-scrollbar' into 'master'

Issue Boards: Ensure that horizontal scroll bars are shown on overflow

Closes #2680

See merge request gitlab-org/gitlab-ee!4944
parents c8c76ee8 56e5160e
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
white-space: nowrap; white-space: nowrap;
} }
@media (min-width: $screen-sm-min) { @media (min-width: $screen-md-min) {
.issue-boards-content.is-focused { .issue-boards-content.is-focused {
position: fixed; position: fixed;
width: 100%; width: 100%;
...@@ -79,7 +79,8 @@ ...@@ -79,7 +79,8 @@
z-index: 9000; z-index: 9000;
.boards-list { .boards-list {
height: calc(100vh - 50px); height: calc(100vh - #{$issue-boards-filter-height});
overflow-x: scroll;
} }
.issue-boards-sidebar { .issue-boards-sidebar {
...@@ -690,7 +691,6 @@ ...@@ -690,7 +691,6 @@
font-size: 9px; font-size: 9px;
line-height: 15px; line-height: 15px;
border-radius: 50%; border-radius: 50%;
} }
.modal-filters { .modal-filters {
......
---
title: 'Issue Boards: Ensure that horizontal scroll bars are shown on overflow'
merge_request: 4944
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment