1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-21 08:25:21 +00:00
seahub/frontend/src/css/grid-view.css

74 lines
1.1 KiB
CSS
Raw Normal View History

2019-04-18 14:36:07 +00:00
.grid-view {
padding-top: 10px;
list-style: none;
display: flex;
flex-wrap: wrap;
flex: 1;
align-content: flex-start;
}
.grid-item {
width: 134px;
padding: 10px 4px;
text-align: center;
position: relative;
line-height: 0;
}
.grid-item:hover .grid-file-img-link {
background: #f8f8f8;
}
.grid-item:hover a {
color: #eb8205;
}
.grid-file-img-link {
width: 100px;
height: 100px;
margin: 0 auto 6px;
position: relative;
border-radius: 3px;
font-size: 0;
text-align: center;
line-height: 0;
padding: 2px;
}
.grid-file-img-link .thumbnail {
max-width: 96px;
max-height: 96px;
padding: 1px;
border: 1px solid #ddd;
border-radius: 3px;
}
.grid-file-img-link::before {
content: '';
display: inline-block;
vertical-align: middle;
height: 100%;
}
.grid-file-name {
display: inline-block;
max-width: 100%;
overflow: hidden;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 17px;
font-size: 14px;
}
.grid-file-name-link {
color: #333;
font-size: 0.875rem;
}
.grid-file-locked-icon {
position: absolute;
bottom: 5px;
right: 10px;
width: 16px;
}