1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-10 11:21:29 +00:00

12.0 change triangle icon (#6233)

* change main page

* change main panel icon to #666666

* change wiki icon

* change sort icons

* change hidden header table

* change style
This commit is contained in:
Michael An
2024-06-21 12:07:58 +08:00
committed by GitHub
parent bcc0576014
commit b7e686786a
52 changed files with 102 additions and 169 deletions

View File

@@ -304,9 +304,9 @@ class TreeNodeView extends React.Component {
style={{paddingLeft: leftIndent}}
>{node.object.name}</div>
<div className="left-icon" style={{left: leftIndent - 45}}>
{type === 'dir' && (!node.isLoaded || (node.isLoaded && node.hasChildren())) && (
{type === 'dir' && (!node.isLoaded || (node.isLoaded && node.hasChildren())) && (
<i
className={`folder-toggle-icon fa ${node.isExpanded ? 'fa-caret-down' : 'fa-caret-right'}`}
className={`folder-toggle-icon sf3-font sf3-font-down ${node.isExpanded ? '' : 'rotate-270'}`}
onMouseDown={e => e.stopPropagation()}
onClick={this.onLoadToggle}
></i>