1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-10 03:11:07 +00:00

change file path max-height (#3814)

This commit is contained in:
Michael An
2019-07-15 14:42:18 +08:00
committed by Daniel Pan
parent 5f2382ff0d
commit 09abcfa5e0
3 changed files with 22 additions and 5 deletions

View File

@@ -286,3 +286,20 @@ img[src=""],img:not([src]){ /* for first loading img*/
color: #999;
}
.path-container {
display: flex;
word-break: keep-all;
width: 90%;
}
.path-container a {
max-height: 50px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.path-container span, .path-container a {
flex-shrink: 1;
}
.path-container span:first-child, .path-container span:last-child {
flex-shrink: 0;
}