mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08:00
* Remove `+` added from copying a diff somewhere * Fix font-size
This commit is contained in:
parent
f764966c29
commit
d23a9a56ee
|
@ -47,13 +47,13 @@ export default class ExtensionsPage extends Page {
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
) : ''}
|
) : ''}
|
||||||
<div className="ExtensionListItem-main">
|
<div className="ExtensionListItem-main">
|
||||||
+ <label className="ExtensionListItem-title">
|
<label className="ExtensionListItem-title">
|
||||||
+ <input type="checkbox" checked={this.isEnabled(extension.id)} onclick={this.toggle.bind(this, extension.id)}/> {' '}
|
<input type="checkbox" checked={this.isEnabled(extension.id)} onclick={this.toggle.bind(this, extension.id)}/> {' '}
|
||||||
+ {extension.extra['flarum-extension'].title}
|
{extension.extra['flarum-extension'].title}
|
||||||
+ </label>
|
</label>
|
||||||
+ <div className="ExtensionListItem-version">{extension.version}</div>
|
<div className="ExtensionListItem-version">{extension.version}</div>
|
||||||
+ <div className="ExtensionListItem-description">{extension.description}</div>
|
<div className="ExtensionListItem-description">{extension.description}</div>
|
||||||
+ </div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>;
|
</li>;
|
||||||
})}
|
})}
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
color: @control-color;
|
color: @control-color;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 30px;
|
font-size: 20px;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-left: -50px;
|
margin-left: -50px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user