djibe / material

Material Design 2 for Bootstrap 4 (active fork of Daemonite Material)
https://djibe.github.io/material/
MIT License
68 stars 11 forks source link

Card overflow is messing with dropdown menu #40

Closed stsrki closed 3 years ago

stsrki commented 3 years ago

If a dropdown is placed inside of card element it will be hidden when it is too large

image

When I disable overflow it seems to work

.card {
    overflow: initial;
}

image

Also, I was comparing Material with regular Bootstrap and in Bootstrap, there is no overflow attribute on .card element.

djibe commented 3 years ago

Hi, fixed in latest commit. Thanks a lot for your debugging !

By the way, if you are looking for an Autocomplete, have you tried Select2 from the Plugins menu ?

stsrki commented 3 years ago

Thanks!

Yes I saw Select2 plugin and I have a plan to implement it as an extension for Blazorise at some point. But I always prefer to have native Blazor components instead of depending too mich on javascript.