Skip to content

Commit

Permalink
Merge pull request #356 from datavisyn/sidepanel_overflow_bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkh authored Apr 23, 2020
2 parents 2b1f406 + 105f1b7 commit 7c0f14c
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions src/styles/_view_lineup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
flex-direction: row;
height: 100%;

.lu-row, .le-tr {
.lu-row,
.le-tr {
line-height: 1;
}

Expand Down Expand Up @@ -302,12 +303,22 @@ $lu_assets: '~lineupjs/src/assets';
bottom: 0;
right: 0;
left: 0;
overflow-y: auto; // make tab pane scrollable for long content
}
overflow: auto;

&.active {
display: flex;
flex-direction: column;
}

// default = LineUp Ranking Configuration tab
.tab-pane.default {
overflow-y: hidden; // disable scrolling of tab pane, as only the column filters are scrollable
// Add scrollbar to SidePanel higher in the node tree
.lu-side-panel-main {
overflow-y: auto;
overflow-x: hidden;

.lu-side-panel-ranking-main {
overflow: visible;
}
}
}
}

Expand Down

0 comments on commit 7c0f14c

Please sign in to comment.