Organized a bunch of stuff, and now properties HIDE

This commit is contained in:
2026-07-24 06:12:29 -04:00
parent 369e4fef4e
commit e2b8524780
14 changed files with 97 additions and 49 deletions
+16
View File
@@ -0,0 +1,16 @@
/* 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;
}
}