Organized a bunch of stuff, and now properties HIDE
This commit is contained in:
+16
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user