Skip to content

Commit

Permalink
Merge pull request #46 from vaadin/fix/remove-edge-transparent-outlin…
Browse files Browse the repository at this point in the history
…e-workaround

fix(edge): transparent outline: 1px -> 0px
  • Loading branch information
Limon Monte authored Oct 16, 2018
2 parents b66e269 + 01041c1 commit 012936c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mixins/overlay.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
bottom: var(--lumo-space-m);
left: var(--lumo-space-m);
/* Workaround for Edge issue (only on Surface), where an overflowing vaadin-list-box inside vaadin-dropdown-menu-overlay makes the overlay transparent */
outline: 1px solid transparent;
outline: 0px solid transparent;
/* Workaround for Chrome on macOS, prevent jumpiness when scrolling */
will-change: transform;
}

[part="overlay"] {
Expand Down

0 comments on commit 012936c

Please sign in to comment.