adopted-ember-addons / adopted-ember-addons/ember-paper
Fixed position paper-select in conflict with css transform on paper-dialog
Ouverte
- Langage dominant
- JavaScript
- Étoiles
- 879
- Forks
- 327
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
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;
}`
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.