mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 13:38:26 +02:00
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:
@@ -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');
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user