Files

17 lines
447 B
CSS

/* Hide Properties and show on Hover */
markdown-preview-view, .markdown-source-view { /* Both edit and preview mode */
.metadata-container {
max-height: 2.7rem;
opacity: 0.6;
overflow: hidden;
transition: max-height 250ms ease-in-out, opacity 250ms;
margin-bottom: 0;
}
.metadata-container:hover,
.metadata-container:focus-within {
max-height: 1000px;
opacity: 1;
transition: max-height 300ms ease-in-out, opacity 300ms;
}
}