Increased preset list max height

Fixes possible overlapping when multiple tag references are expanded.
New max-height 190 px = button 80 px + content 110 px

Closes #4023
This commit is contained in:
Juuso Lehtinen
2017-10-08 16:13:53 +03:00
parent bfda2c5438
commit 20d5e8a30d
+1 -1
View File
@@ -223,7 +223,7 @@ export function uiPresetList(context) {
box.transition()
.duration(200)
.style('opacity', '1')
.style('max-height', 200 + preset.members.collection.length * 80 + 'px')
.style('max-height', 200 + preset.members.collection.length * 190 + 'px')
.style('padding-bottom', '20px');
}
};