adopted-ember-addons / adopted-ember-addons/ember-paper
Fixed position paper-select in conflict with css transform on paper-dialog
Aberta
- Linguagem predominante
- JavaScript
- Estrelas
- 879
- Forks
- 327
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
paper-dialogs have a transform: translate(0,0) on them which is causing the fixed position paper-select dropdown to be displayed relative to the dialog and not the viewport.
This CSS example corrects the issue by forcing the select to use absolute and !important position while inside a dialog.
`.md-dialog-container .md-select-menu-container {
position: absolute;
top: 0 !important;
left: 0 !important;
}`
Guia de contribuição
Avaliação
Esta issue ainda não foi avaliada.