mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-17 15:53:28 +00:00
[library decryption dialog] fixed the 'close' icon after the upgrade of seafile-ui.css (#7654)
This commit is contained in:
15
frontend/src/components/common/seahub-modal-close.js
Normal file
15
frontend/src/components/common/seahub-modal-close.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react';
|
||||
import { gettext } from '../../utils/constants';
|
||||
import '../../css/seahub-modal-header.css';
|
||||
|
||||
const SeahubModalCloseIcon = (props) => {
|
||||
return (
|
||||
<button type="button" className={`close seahub-modal-btn ${props.className ? props.className : ''}`} data-dismiss="modal" aria-label={gettext('Close')} onClick={props.toggle}>
|
||||
<span className="seahub-modal-btn-inner">
|
||||
<i className="sf3-font sf3-font-x-01" aria-hidden="true"></i>
|
||||
</span>
|
||||
</button>
|
||||
);
|
||||
};
|
||||
|
||||
export default SeahubModalCloseIcon;
|
@@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
|
||||
import { Modal, ModalBody, Form } from 'reactstrap';
|
||||
import { gettext, siteRoot, mediaUrl } from '../../utils/constants';
|
||||
import { seafileAPI } from '../../utils/seafile-api';
|
||||
import SeahubModalCloseIcon from '../../components/common/seahub-modal-close';
|
||||
|
||||
import '../../css/lib-decrypt.css';
|
||||
|
||||
@@ -56,7 +57,7 @@ class LibDecryptDialog extends React.Component {
|
||||
return (
|
||||
<Modal isOpen={true} toggle={this.toggle}>
|
||||
<ModalBody>
|
||||
<button type="button" className="close" onClick={this.toggle}><span aria-hidden="true">×</span></button>
|
||||
<SeahubModalCloseIcon className="position-absolute top-0 end-0 m-0" toggle={this.toggle} />
|
||||
<Form className="lib-decrypt-form text-center">
|
||||
<img src={`${mediaUrl}img/lock.png`} alt="" aria-hidden="true" />
|
||||
<p className="intro">{gettext('This library is password protected')}</p>
|
||||
|
Reference in New Issue
Block a user