From 8966e9e2208166a4d835d5dd7939bf346a59fefd Mon Sep 17 00:00:00 2001 From: oltionchampari Date: Tue, 21 Apr 2020 16:37:14 +0200 Subject: [PATCH 1/2] Change overflow of the sidepanel --- src/styles/_view_lineup.scss | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/styles/_view_lineup.scss b/src/styles/_view_lineup.scss index 0badac0f7..2e6af1379 100644 --- a/src/styles/_view_lineup.scss +++ b/src/styles/_view_lineup.scss @@ -302,12 +302,20 @@ $lu_assets: '~lineupjs/src/assets'; bottom: 0; right: 0; left: 0; - overflow-y: auto; // make tab pane scrollable for long content - } + 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; + + .lu-side-panel-ranking-main { + overflow: visible; + } + } + + &.active { + display: flex; + } } } From 105f1b74592c40979ae7a8307f26955fc356e28e Mon Sep 17 00:00:00 2001 From: oltionchampari Date: Wed, 22 Apr 2020 14:47:06 +0200 Subject: [PATCH 2/2] Include tourdino in css oveflow settings datavisyn/tdp_core#356 --- src/styles/_view_lineup.scss | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/styles/_view_lineup.scss b/src/styles/_view_lineup.scss index 2e6af1379..419666667 100644 --- a/src/styles/_view_lineup.scss +++ b/src/styles/_view_lineup.scss @@ -7,7 +7,8 @@ flex-direction: row; height: 100%; - .lu-row, .le-tr { + .lu-row, + .le-tr { line-height: 1; } @@ -302,20 +303,22 @@ $lu_assets: '~lineupjs/src/assets'; bottom: 0; right: 0; left: 0; - flex-direction: column; + overflow: auto; + + &.active { + display: flex; + flex-direction: column; + } // 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; } } - - &.active { - display: flex; - } } }