mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 02:07:38 +08:00
968ece2c61
Removed unused Widget (which is duplicate of DashboardWidget), made DashboardWidget abstract
48 lines
772 B
Plaintext
48 lines
772 B
Plaintext
.DashboardPage {
|
|
background: @control-bg;
|
|
color: @control-color;
|
|
min-height: 100vh;
|
|
|
|
@media @desktop-up {
|
|
.container {
|
|
padding: 30px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.DashboardWidget {
|
|
background: @body-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;
|
|
}
|
|
}
|
|
}
|
|
}
|