mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-17 15:53:28 +00:00
[system admin] settings: modification for some browsers (#4227)
This commit is contained in:
@@ -12,3 +12,6 @@
|
|||||||
.web-setting-textarea {
|
.web-setting-textarea {
|
||||||
min-height: 7rem;
|
min-height: 7rem;
|
||||||
}
|
}
|
||||||
|
.web-setting-label {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
@@ -21,7 +21,7 @@ class SettingItemBase extends Component {
|
|||||||
<Fragment>
|
<Fragment>
|
||||||
<Row className="my-4">
|
<Row className="my-4">
|
||||||
<Col md="3">
|
<Col md="3">
|
||||||
<Label>{displayName}</Label>
|
<Label className="web-setting-label">{displayName}</Label>
|
||||||
</Col>
|
</Col>
|
||||||
<Col md="5">
|
<Col md="5">
|
||||||
{mainContent}
|
{mainContent}
|
||||||
|
@@ -107,7 +107,7 @@ class WebSettings extends Component {
|
|||||||
<div className="cur-view-path">
|
<div className="cur-view-path">
|
||||||
<h3 className="sf-heading">{gettext('Settings')}</h3>
|
<h3 className="sf-heading">{gettext('Settings')}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div className="cur-view-content container">
|
<div className="cur-view-content container mw-100">
|
||||||
{loading && <Loading />}
|
{loading && <Loading />}
|
||||||
{errorMsg && <p className="error text-center mt-4">{errorMsg}</p>}
|
{errorMsg && <p className="error text-center mt-4">{errorMsg}</p>}
|
||||||
{(!loading && !errorMsg) && config_dict &&
|
{(!loading && !errorMsg) && config_dict &&
|
||||||
|
Reference in New Issue
Block a user