1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-13 13:50:07 +00:00

update detail btn style (#3234)

This commit is contained in:
Michael An
2019-04-10 17:53:43 +08:00
committed by Daniel Pan
parent cb68f43ac0
commit 768ee27163
2 changed files with 6 additions and 5 deletions

View File

@@ -27,8 +27,8 @@ class ViewModeToolbar extends React.Component {
{/* <button className={`${baseClass} sf2-icon-grid-view ${this.props.currentMode === 'grid' ? 'current-mode' : ''}`} id='grid' title={gettext('Grid')} onClick={this.switchViewMode}></button> */}
<button className={`${baseClass} sf2-icon-two-columns ${this.props.currentMode === 'column' ? 'current-mode' : ''}`} id='column' title={gettext('Column')} onClick={this.switchViewMode}></button>
</div>
<div className="dirent-detail-btn btn-group">
<button className={`${baseClass} ml-1 fas fa-info`} id='detail' title={gettext('Detail')} onClick={this.switchViewMode}></button>
<div className="detail-btn btn-group">
<button className="btn btn-secondary btn-icon ml-1 fas fa-info" id='detail' title={gettext('Detail')} onClick={this.switchViewMode}></button>
</div>
</React.Fragment>
);