1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 10:26:17 +00:00

change file page icons style (#6493)

* change file page icons style

* change save icon style

* change Open parent folder menu
This commit is contained in:
Michael An
2024-08-06 14:16:23 +08:00
committed by GitHub
parent 113389230d
commit fd12baeea1
3 changed files with 46 additions and 30 deletions

View File

@@ -13,11 +13,31 @@ body {
flex-shrink: 0;
}
.file-view-header .btn {
color: #666;
.file-view-header .file-toolbar-btn {
width: 28px;
height: 28px;
margin-right: 10px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.file-view-header .btn#save-file {
.file-view-header .file-toolbar-btn:hover {
background-color: #EFEFEF;
border-radius: 3px;
}
.file-view-header .file-toolbar-btn.disabled {
opacity: 0.65;
cursor: default;
}
.file-view-header .file-toolbar-btn.disabled:hover {
background-color: #fff;
}
.file-view-header .file-toolbar-btn#save-file {
color: #eb8205;
}