mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 06:03:39 +08:00
c3989cc952
- Extensions now have their own pages - The API for extensions to register permissions and settings has been overhauled via the `flarum/admin/utils/ExtensionData` util - An extension grid has been added as a widget to the Dashboard page
41 lines
674 B
Plaintext
41 lines
674 B
Plaintext
.DashboardPage {
|
|
background: @body-bg;
|
|
color: @control-color;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.Widget {
|
|
background: @control-bg;
|
|
color: @text-color;
|
|
border-radius: @border-radius;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.StatusWidget {
|
|
color: @muted-color;
|
|
|
|
> ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
|
|
> li {
|
|
display: inline-block;
|
|
margin-right: 30px;
|
|
vertical-align: middle;
|
|
|
|
&[class^="item-version-"] {
|
|
max-width: 100px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
&.item-tools {
|
|
float: right;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|