framework/less/admin/DashboardPage.less

46 lines
735 B
Plaintext
Raw Normal View History

2015-07-29 19:28:22 +08:00
.DashboardPage {
background: @body-bg;
2015-08-27 09:20:15 +08:00
color: @control-color;
min-height: 100vh;
}
.Widget {
background: @control-bg;
color: @text-color;
border-radius: @border-radius;
padding: 20px;
margin-bottom: 20px;
2020-12-08 04:14:22 +08:00
.Button {
.Button--color(@control-color, @body-bg)
}
}
.StatusWidget {
color: @muted-color;
2020-12-08 04:14:22 +08:00
>ul {
margin: 0;
padding: 0;
list-style-type: none;
2020-12-08 04:14:22 +08:00
>li {
display: inline-block;
margin-right: 30px;
vertical-align: middle;
&[class^="item-version-"] {
max-width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2020-12-08 04:14:22 +08:00
2018-11-22 05:33:43 +08:00
&.item-tools {
float: right;
margin-right: 0;
}
}
}
}