1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 02:48:51 +00:00
Files
seahub/frontend/src/css/file-view.css
Michael An 6233649970 12.0 remove font awesome (#6257)
* remove font-awesome

* remove font awesome 3.2.1
2024-06-28 08:39:44 +08:00

91 lines
1.2 KiB
CSS

body {
overflow: hidden;
}
#wrapper {
height: 100%;
}
.file-view-header {
padding: 4px 10px;
background: #fff;
border-bottom: 1px solid #c9c9c9;
flex-shrink: 0;
}
.file-view-header .file-toolbar-more-operations {
height: 38px;
padding: 0;
}
.file-title {
font-size: 1.2rem;
font-weight: bold;
line-height: 1.5;
margin-bottom: 0;
}
.file-star {
font-size: .875rem;
color: #999;
margin-left: .5rem;
}
.file-star:hover,
.file-star:focus {
text-decoration: none;
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;
}
.file-details-container {
position: absolute;
right: 0;
background-color: #fff;
width: 300px;
height: 100%;
box-shadow: -1px 0 3px 0 #ccc;
animation: move .5s ease-in-out 1;
z-index: 50;
}
@keyframes move {
from {
right: -500px;
opacity: 0.5;
}
to {
right: 0px;
opacity: 1;
}
}
/* for mobile */
.file-view-body .seafile-comment {
width: 100%;
}
@media (min-width: 768px) {
.file-view-body .seafile-comment {
width: 300px;
border-left: 1px solid #e6e6dd;
}
}