1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 10:58:33 +00:00
Files
seahub/frontend/src/css/file-view.css

52 lines
797 B
CSS
Raw Normal View History

body {
overflow: hidden;
}
#wrapper {
height: 100%;
}
.file-view-header {
padding: 4px 10px;
border-bottom: 1px solid #c9c9c9;
flex-shrink: 0;
}
.file-title {
font-size: 1.2rem;
font-weight: bold;
2019-05-15 16:13:11 +08:00
line-height: 1.5;
margin-bottom: 0;
}
.file-star,
.file-internal-link {
font-size: .875rem;
2019-02-28 17:53:43 +08:00
color: #999;
margin-left: .5rem;
}
.file-star:hover,
.file-star:focus {
text-decoration: none;
2019-02-28 17:53:43 +08:00
color: #999;
}
.file-locked-icon {
margin-left: .5rem;
}
.meta-info {
font-size: .8125rem;
}
.file-view-content {
padding: 30px 0;
background: #f4f4f4;
border-right: 4px solid transparent;
}
.tip {
color: #808080;
}
2019-04-18 18:19:54 +08:00
/* for mobile */
2020-12-22 12:04:03 +08:00
.file-view-body .seafile-comment {
2019-04-18 18:19:54 +08:00
width: 100%;
}
@media (min-width: 768px) {
2020-12-22 12:04:03 +08:00
.file-view-body .seafile-comment {
2019-04-18 18:19:54 +08:00
width: 29%;
}
}