mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 17:31:10 -05:00
- move versions to a tab in the files sidebar - added mechanism to auto-update the row in the FileList whenever values are set to the FileInfoModel given to the sidebar - updated tags/favorite action to make use of that new mechanism
58 lines
1 KiB
CSS
58 lines
1 KiB
CSS
.versionsTabView .clear-float {
|
|
clear: both;
|
|
}
|
|
.versionsTabView li {
|
|
width: 100%;
|
|
cursor: default;
|
|
height: 56px;
|
|
float: left;
|
|
border-bottom: 1px solid rgba(100,100,100,.1);
|
|
}
|
|
.versionsTabView li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.versionsTabView li > * {
|
|
padding: 7px;
|
|
float: left;
|
|
vertical-align: top;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
|
filter: alpha(opacity=50);
|
|
opacity: .5;
|
|
}
|
|
|
|
.versionsTabView li > a,
|
|
.versionsTabView li > span {
|
|
padding: 17px 7px;
|
|
}
|
|
|
|
.versionsTabView li > *:hover,
|
|
.versionsTabView li > *:focus {
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
|
filter: alpha(opacity=100);
|
|
opacity: 1;
|
|
}
|
|
|
|
.versionsTabView img {
|
|
cursor: pointer;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.versionsTabView img.preview {
|
|
cursor: default;
|
|
opacity: 1;
|
|
}
|
|
|
|
.versionsTabView .versionDate {
|
|
min-width: 100px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.versionsTabView .revertVersion {
|
|
cursor: pointer;
|
|
float: right;
|
|
max-width: 130px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|