mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-06 01:12:03 +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:
@@ -539,11 +539,11 @@ class SharedRepoListItem extends React.Component {
|
||||
onMouseMove={(e) => {e.stopPropagation();}}
|
||||
>
|
||||
<DropdownToggle
|
||||
caret
|
||||
className="dropdown-item font-weight-normal rounded-0 d-flex justify-content-between align-items-center pr-2"
|
||||
onMouseEnter={this.toggleAdvancedMenuShown}
|
||||
>
|
||||
{this.translateMenuItem(item)}
|
||||
<i className="sf3-font-down sf3-font rotate-270"></i>
|
||||
</DropdownToggle>
|
||||
<DropdownMenu>
|
||||
{advancedOperations.map((item, index)=> {
|
||||
|
@@ -59,7 +59,7 @@ class SharedRepoListView extends React.Component {
|
||||
sortByName: this.props.sortBy == 'name',
|
||||
sortByTime: this.props.sortBy == 'time',
|
||||
sortBySize: this.props.sortBy == 'size',
|
||||
sortIcon: this.props.sortOrder == 'asc' ? <span className="fas fa-caret-up"></span> : <span className="fas fa-caret-down"></span>
|
||||
sortIcon: this.props.sortOrder == 'asc' ? <span className="sf3-font sf3-font-down rotate-180 d-inline-block"></span> : <span className="sf3-font sf3-font-down"></span>
|
||||
};
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user