1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-04-28 03:10:45 +00:00

change button style

This commit is contained in:
Michael An 2025-02-26 11:42:54 +08:00
parent 47f016e6e9
commit e44962be9a
2 changed files with 13 additions and 3 deletions

View File

@ -87,8 +87,8 @@ class GroupInviteMembersDialog extends React.Component {
<div className="invite-link-copy">
<Button color="primary" onClick={this.copyLink} className="invite-link-copy-btn text-truncate">{gettext('Copy')}</Button>
</div>
<Button color="secondary" onClick={this.deleteLink.bind(this, link.token)} className="delete-link-btn ml-2">
<i className="sf2-icon-delete"></i>
<Button color="primary" outline onClick={this.deleteLink.bind(this, link.token)} className="delete-link-btn ml-2">
<i className="sf3-font-delete1 sf3-font"></i>
</Button>
</div>
</>

View File

@ -30,5 +30,15 @@
}
.invite-link-item .delete-link-btn {
color: #999;
border-color: #ff9800;
color: #ff9800;
font-size: 16px;
padding: 0;
}
.invite-link-item .delete-link-btn:hover {
background-color: #d98100;
border-color: #d98100;
box-shadow: none;
color: #fff;
}