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:
@@ -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%;
|
||||
|
Reference in New Issue
Block a user