Display hovered filename over the metadata instead of pushing down.

Previously the expanding filename would push the metadata down
and out of the card div. Now it displays on top.
master
voussoir 2019-07-12 13:57:52 -07:00
parent 62f36151c4
commit 928e64fe08
1 changed files with 9 additions and 0 deletions

View File

@ -136,6 +136,7 @@
justify-self: start;
grid-area: filename;
position: relative;
overflow: hidden;
min-width: 100%;
@ -157,6 +158,14 @@
{
overflow: visible;
max-height: none;
}
.photo_card_filename:hover a
{
position: absolute;
top: 0;
left: 0;
right: 0;
background-color: inherit;
z-index: 1;
}
.photo_card_tags