Merge pull request #285 from Situphen/dropdown

Use visibility:hidden; instead of display:none; for the dropdown menu
pull/293/head
Jeroen Akkerman 3 years ago committed by GitHub
commit 65f66138c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -360,7 +360,8 @@
}
.easymde-dropdown-content {
display: none;
display: block;
visibility: hidden;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
@ -371,7 +372,7 @@
.easymde-dropdown:active .easymde-dropdown-content,
.easymde-dropdown:focus .easymde-dropdown-content {
display: block;
visibility: visible;
}
span[data-img-src]::after{

Loading…
Cancel
Save