mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 21:34:50 +00:00
This is the first iteration of an effort towards making a very good dashboard. Until we feel confident this is good, this dashboard will only be accessible through /admin/dashboard_next
144 lines
2.4 KiB
SCSS
144 lines
2.4 KiB
SCSS
.dashboard-next {
|
|
|
|
&.admin-contents {
|
|
margin: 0;
|
|
}
|
|
|
|
.section-columns {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.section-column {
|
|
flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.section {
|
|
.section-title {
|
|
h2 {
|
|
margin: 0 .5em 0 0;
|
|
}
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid $primary-low-mid;
|
|
margin-bottom: .5em;
|
|
padding-bottom: .5em;
|
|
}
|
|
|
|
.section-body {
|
|
padding: 1em 0;
|
|
}
|
|
}
|
|
|
|
.mini-table {
|
|
.table-title {
|
|
align-items: center;
|
|
display: flex;
|
|
margin: .5em;
|
|
justify-content: space-between;
|
|
|
|
h3 {
|
|
margin: 0 .5em 0 0;
|
|
}
|
|
}
|
|
|
|
table {
|
|
border: 1px solid $primary-low-mid;
|
|
table-layout: fixed;
|
|
|
|
thead {
|
|
tr {
|
|
background: $primary-low;
|
|
th {
|
|
border: 1px solid $primary-low-mid;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
tr {
|
|
td {
|
|
border: 1px solid $primary-low-mid;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.charts {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
|
|
.mini-chart {
|
|
flex-grow: 1;
|
|
width: calc(100% * (1/3) - 1px);
|
|
margin-bottom: 1em;
|
|
|
|
.chart-title {
|
|
align-items: center;
|
|
display: flex;
|
|
margin: .5em;
|
|
|
|
h3 {
|
|
margin: 0 .5em 0 0;
|
|
}
|
|
}
|
|
|
|
&.double-up, &.up {
|
|
.chart-trend, .data-point {
|
|
color: rgb(17, 141, 0);
|
|
}
|
|
}
|
|
|
|
&.double-down, &.down {
|
|
.chart-trend, .data-point {
|
|
color: $danger;
|
|
}
|
|
}
|
|
|
|
&.one-data-point {
|
|
.chart-container {
|
|
height: 100px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.data-point {
|
|
font-size: $font-up-5;
|
|
font-weight: bold;
|
|
padding: 1em;
|
|
border-radius: 3px;
|
|
background: rgba(200,220,240,0.3);
|
|
}
|
|
}
|
|
}
|
|
|
|
.chart-container {
|
|
position: relative;
|
|
}
|
|
|
|
.chart-trend {
|
|
font-size: $font-up-5;
|
|
position: absolute;
|
|
left: 1.5em;
|
|
top: .5em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.chart-canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|