mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
71ccdc00e6
* AdminPage * More fixes * Settings Modal Drop * Translation and docblock * settingS * Convert Fieldset to JSX * info -> headerInfo, className * Overflow fixes * MailPage * Admin Less * Basics Page * Changes * Cleanup * Permission Page * Add padding
47 lines
759 B
Plaintext
47 lines
759 B
Plaintext
.DashboardPage {
|
|
background: @body-bg;
|
|
color: @control-color;
|
|
min-height: 100vh;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.Widget {
|
|
background: @control-bg;
|
|
color: @text-color;
|
|
border-radius: @border-radius;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
|
|
.Button {
|
|
.Button--color(@control-color, @body-bg)
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|