mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-09 10:50:24 +00:00
modify filt-tag style
This commit is contained in:
@@ -84,14 +84,14 @@ class DetailListView extends React.Component {
|
||||
<ul className="file-tag-list">
|
||||
{fileTagList.map((fileTag) => {
|
||||
return (
|
||||
<li key={fileTag.id}>
|
||||
<li key={fileTag.id} className="file-tag-item">
|
||||
<span className={`file-tag bg-${fileTag.color}`}></span>
|
||||
<span className="tag-name">{fileTag.name}</span>
|
||||
<span className="tag-name" title={fileTag.name}>{fileTag.name}</span>
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ul>
|
||||
<i className='fa fa-pencil' onClick={this.onEditFileTagToggle}></i>
|
||||
<i className='fa fa-pencil tag-edit-icon' onClick={this.onEditFileTagToggle}></i>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user