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

feat: metadata custom select font (#6674)

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-30 11:38:22 +08:00
committed by GitHub
parent c06d51a596
commit b7f0310883
3 changed files with 1 additions and 6 deletions

View File

@@ -44,7 +44,6 @@ class FileAccessLog extends React.Component {
const avatarSize = 24 * 2; const avatarSize = 24 * 2;
fileAccessLogAPI.listFileAccessLog(repoID, filePath, page, perPage, avatarSize).then((res) => { fileAccessLogAPI.listFileAccessLog(repoID, filePath, page, perPage, avatarSize).then((res) => {
const { data: newItems } = res.data; const { data: newItems } = res.data;
console.log(newItems);
this.setState({ this.setState({
isLoading: false, isLoading: false,
isLoadingMore: false, isLoadingMore: false,

View File

@@ -32,4 +32,5 @@
.sf-metadata-select.custom-select { .sf-metadata-select.custom-select {
font-size: 14px; font-size: 14px;
color: #212529;
} }

View File

@@ -440,8 +440,3 @@
font-size: 13px; font-size: 13px;
color: #666; color: #666;
} }
.sf-metadata-select.custom-select,
.sf-metadata-select.custom-select .select-option-name {
color: #212529;
}