1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-18 00:00:00 +00:00

File view op (#4836)

* [file view] added 'Details' & 'open via client'

* [file view] adjusted places of operations

* [file view] 'open via client': use a new icon

* [file view] 'open via client': updated the icon
This commit is contained in:
llj
2021-03-18 17:31:21 +08:00
committed by GitHub
parent 2405ba671e
commit 06254447e4
12 changed files with 232 additions and 27 deletions

View File

@@ -40,6 +40,27 @@ body {
.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%;