mirror of
https://github.com/flarum/framework.git
synced 2025-01-27 12:41:07 +08:00
chore: Minor Readme CSS code tidy up (#3138)
This commit is contained in:
parent
a4499678d9
commit
47a800e724
|
@ -203,7 +203,7 @@ export default class ExtensionPage extends AdminPage {
|
||||||
Button.component(
|
Button.component(
|
||||||
{
|
{
|
||||||
icon: 'fab fa-readme',
|
icon: 'fab fa-readme',
|
||||||
class: 'Readme-link',
|
class: 'Button Button--text',
|
||||||
onclick() {
|
onclick() {
|
||||||
app.modal.show(ReadmeModal, { extension });
|
app.modal.show(ReadmeModal, { extension });
|
||||||
},
|
},
|
||||||
|
|
|
@ -19,7 +19,7 @@ export default class ReadmeModal extends Modal {
|
||||||
}
|
}
|
||||||
|
|
||||||
className() {
|
className() {
|
||||||
return 'ReadmeModal Modal--large';
|
return 'ReadmeModal Modal--large Modal--inverted';
|
||||||
}
|
}
|
||||||
|
|
||||||
title() {
|
title() {
|
||||||
|
@ -32,7 +32,7 @@ export default class ReadmeModal extends Modal {
|
||||||
const text = app.translator.trans('core.admin.extension.readme.no_readme');
|
const text = app.translator.trans('core.admin.extension.readme.no_readme');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="Modal-body">
|
||||||
{this.loading ? (
|
{this.loading ? (
|
||||||
<div className="ReadmeModal-loading">{LoadingIndicator.component()}</div>
|
<div className="ReadmeModal-loading">{LoadingIndicator.component()}</div>
|
||||||
) : (
|
) : (
|
||||||
|
|
|
@ -11,5 +11,4 @@
|
||||||
@import "admin/AppearancePage";
|
@import "admin/AppearancePage";
|
||||||
@import "admin/MailPage";
|
@import "admin/MailPage";
|
||||||
@import "admin/NoJs";
|
@import "admin/NoJs";
|
||||||
@import "admin/ReadmeModal";
|
|
||||||
@import "admin/UsersListPage";
|
@import "admin/UsersListPage";
|
||||||
|
|
|
@ -150,19 +150,12 @@
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.Readme-link {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
color: @muted-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ReadmeModal {
|
.ReadmeModal {
|
||||||
.Modal-header {
|
.Placeholder {
|
||||||
background: @control-bg;
|
margin-bottom: 40px;
|
||||||
color: @muted-color
|
}
|
||||||
}
|
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
.ReadmeModal {
|
|
||||||
.Placeholder {
|
|
||||||
margin-bottom: 40px;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -134,6 +134,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Modal--inverted {
|
||||||
|
.Modal-header {
|
||||||
|
background-color: @control-bg;
|
||||||
|
color: @control-color;
|
||||||
|
}
|
||||||
|
.Modal-body {
|
||||||
|
background-color: transparent;
|
||||||
|
color: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media @phone {
|
@media @phone {
|
||||||
.ModalManager.fade {
|
.ModalManager.fade {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user