Fix file info cutting off the image shadow on hover even if it doesn't expand.

This commit is contained in:
ccd0 2016-09-28 19:28:19 -07:00
parent 7bba1a8670
commit dec107eefb

View File

@ -839,22 +839,24 @@ div.catalog-post {
left: 0;
right: 0;
top: 0;
min-height: 20px;
background-color: inherit;
}
.catalog-post > * > .fileText {
min-height: 16px;
position: relative;
padding: 2px;
background-color: inherit;
}
.catalog-small .catalog-post > * .fileText {
font-size: 10px;
}
.catalog-post > .file:not(:hover) > .fileText {
.catalog-post > * > .fileText:not(:hover) {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.catalog-post > .file:hover {
.catalog-post > * > .fileText:hover {
z-index: 2;
background-color: inherit;
}
div.catalog-post > div.postInfo {
width: auto;