framework/less/admin/DashboardPage.less

47 lines
794 B
Plaintext
Raw Normal View History

2015-07-29 19:28:22 +08:00
.DashboardPage {
background: var(--body-bg);
color: var(--control-color);
2015-08-27 09:20:15 +08:00
min-height: 100vh;
padding-bottom: 30px;
}
.Widget {
background: var(--control-bg);
color: var(--text-color);
border-radius: var(--border-radius);
padding: 20px;
margin-bottom: 20px;
2020-12-08 04:14:22 +08:00
.Button {
.Button--color-auto('button-inverted');
2020-12-08 04:14:22 +08:00
}
}
.StatusWidget {
color: var(--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;
}
}
}
}