Skip to content

Commit

Permalink
Fix autocomplete when used in bootstrap modal
Browse files Browse the repository at this point in the history
Right now, the bootstrap modal dialogs use a z-index of 1055, so the autocomplete list shows behind the dialog. https://github.com/twbs/bootstrap/blob/a9b34450601b017b27cacd9ff750aa9c12aac82c/scss/_variables.scss#L1042

This change will put the z-index that will work with bootstrap and align with the bootstrap toast z-index.
  • Loading branch information
ejohnson-dotnet committed Mar 4, 2022
1 parent 54074fc commit c8a84aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/base/core.css
Expand Up @@ -54,7 +54,7 @@
}

.ui-front {
z-index: 100;
z-index: 1090;
}


Expand Down

0 comments on commit c8a84aa

Please sign in to comment.