2018-07-03 11:14:53 +08:00
|
|
|
.admin-reports,
|
|
|
|
.dashboard-next {
|
|
|
|
&.admin-contents {
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-16 16:42:06 +08:00
|
|
|
.dashboard-next {
|
2018-07-20 02:33:11 +08:00
|
|
|
.navigation {
|
|
|
|
display: flex;
|
2021-06-29 05:35:31 +08:00
|
|
|
margin: 0 0 1em 0;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-bottom: 1px solid var(--primary-low-mid);
|
2018-07-20 02:33:11 +08:00
|
|
|
|
|
|
|
.navigation-item {
|
|
|
|
display: inline;
|
2018-08-10 08:43:18 +08:00
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--primary-very-low);
|
2018-08-10 08:43:18 +08:00
|
|
|
}
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-link {
|
2018-08-10 08:43:18 +08:00
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
2018-08-10 08:45:47 +08:00
|
|
|
padding: 0.6em 1em 0.5em 1em;
|
2023-11-27 06:32:28 +08:00
|
|
|
|
|
|
|
.emoji {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin active-navigation-item {
|
2018-08-10 08:43:18 +08:00
|
|
|
.navigation-link {
|
2020-08-04 10:57:10 +08:00
|
|
|
border-bottom: 0.4em solid var(--tertiary);
|
2018-08-10 08:43:18 +08:00
|
|
|
}
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
&.dashboard-moderation .navigation-item.moderation {
|
2018-07-20 02:33:11 +08:00
|
|
|
@include active-navigation-item;
|
|
|
|
}
|
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
&.dashboard-security .navigation-item.security {
|
2018-12-14 20:47:59 +08:00
|
|
|
@include active-navigation-item;
|
|
|
|
}
|
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
&.dashboard-reports .navigation-item.reports {
|
2018-12-19 21:44:43 +08:00
|
|
|
@include active-navigation-item;
|
|
|
|
}
|
|
|
|
|
2023-11-20 06:59:04 +08:00
|
|
|
&.dashboard-new-features .navigation-item.new-features {
|
|
|
|
@include active-navigation-item;
|
|
|
|
}
|
|
|
|
|
2018-07-20 02:33:11 +08:00
|
|
|
&.general .navigation-item.general {
|
|
|
|
@include active-navigation-item;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sections {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-04-16 16:42:06 +08:00
|
|
|
.section-columns {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2018-07-13 04:38:51 +08:00
|
|
|
@include breakpoint(medium) {
|
2018-05-03 21:41:41 +08:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-04-16 16:42:06 +08:00
|
|
|
.section-column {
|
2018-06-08 17:49:31 +08:00
|
|
|
min-width: calc(50% - 0.5em);
|
2018-05-17 12:01:13 +08:00
|
|
|
max-width: 100%;
|
2018-05-03 21:41:41 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
&:last-child {
|
2018-08-17 22:19:25 +08:00
|
|
|
margin-left: 0.5em;
|
2018-05-18 04:44:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
2018-08-17 22:19:25 +08:00
|
|
|
margin-right: 0.5em;
|
2018-05-18 04:44:33 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 04:38:51 +08:00
|
|
|
@include breakpoint(medium) {
|
2018-05-03 21:41:41 +08:00
|
|
|
min-width: 100%;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
}
|
2018-04-20 00:19:21 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 04:38:51 +08:00
|
|
|
@include breakpoint(medium) {
|
2018-05-18 04:44:33 +08:00
|
|
|
.section-column:last-child,
|
|
|
|
.section-column:first-child {
|
2018-05-03 21:41:41 +08:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.section {
|
|
|
|
.section-title {
|
2021-06-29 05:35:31 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2018-04-16 16:42:06 +08:00
|
|
|
h2 {
|
2018-06-08 17:49:31 +08:00
|
|
|
margin: 0 0.5em 0 0;
|
2018-07-20 07:29:58 +08:00
|
|
|
|
|
|
|
a {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-07-20 07:29:58 +08:00
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-body {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-top: 1em;
|
|
|
|
|
2018-08-10 08:43:18 +08:00
|
|
|
> p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.admin-report .header {
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2018-05-16 22:45:21 +08:00
|
|
|
.charts {
|
2018-08-17 22:19:25 +08:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
grid-column-gap: 1em;
|
|
|
|
grid-row-gap: 1em;
|
2018-04-16 19:03:43 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.admin-report {
|
|
|
|
grid-column: span 4;
|
2019-01-21 22:17:04 +08:00
|
|
|
|
|
|
|
&.consolidated-page-views {
|
|
|
|
grid-column: span 12;
|
|
|
|
}
|
2018-05-14 20:23:51 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 04:38:51 +08:00
|
|
|
@include breakpoint(medium) {
|
2018-08-17 22:19:25 +08:00
|
|
|
.admin-report {
|
|
|
|
grid-column: span 12;
|
2018-05-03 21:41:41 +08:00
|
|
|
}
|
2018-04-26 20:49:41 +08:00
|
|
|
}
|
|
|
|
|
2018-05-16 22:45:21 +08:00
|
|
|
.chart-canvas-container {
|
|
|
|
position: relative;
|
2018-05-17 03:06:23 +08:00
|
|
|
margin-left: -5px;
|
2018-04-16 22:01:29 +08:00
|
|
|
}
|
|
|
|
|
2018-05-16 22:45:21 +08:00
|
|
|
.chart-canvas {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.misc {
|
2018-05-17 03:49:02 +08:00
|
|
|
display: flex;
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2018-05-17 03:49:02 +08:00
|
|
|
|
2018-12-15 06:14:46 +08:00
|
|
|
.storage-stats,
|
2018-06-08 17:49:31 +08:00
|
|
|
.last-dashboard-update {
|
2018-05-17 03:49:02 +08:00
|
|
|
flex: 1 1 50%;
|
|
|
|
box-sizing: border-box;
|
2018-05-18 04:44:33 +08:00
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0 1em;
|
2018-05-17 03:49:02 +08:00
|
|
|
}
|
|
|
|
|
2018-12-15 06:14:46 +08:00
|
|
|
.storage-stats {
|
2018-04-16 16:42:06 +08:00
|
|
|
display: flex;
|
2018-05-17 03:49:02 +08:00
|
|
|
flex-wrap: wrap;
|
2018-04-16 16:42:06 +08:00
|
|
|
justify-content: space-between;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-right: 1px solid var(--primary-low);
|
2018-05-18 04:44:33 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.backups,
|
|
|
|
.uploads {
|
2018-05-18 04:44:33 +08:00
|
|
|
flex: 1 1 100%;
|
2018-05-17 03:49:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.uploads p:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
2018-05-17 03:49:02 +08:00
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
flex-wrap: wrap;
|
2018-12-15 06:14:46 +08:00
|
|
|
.storage-stats,
|
2018-06-08 17:49:31 +08:00
|
|
|
.last-dashboard-update {
|
2018-05-17 03:49:02 +08:00
|
|
|
flex: 1 1 100%;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.last-dashboard-update {
|
|
|
|
display: block;
|
|
|
|
margin: 0 20px 20px 20px;
|
|
|
|
padding: 20px 0 0 0;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-top: 1px solid var(--primary-low);
|
2018-05-17 03:49:02 +08:00
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.last-dashboard-update {
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
2019-05-17 13:42:45 +08:00
|
|
|
flex-direction: column;
|
2018-05-18 04:44:33 +08:00
|
|
|
justify-content: center;
|
2018-05-17 03:49:02 +08:00
|
|
|
div {
|
|
|
|
align-self: center;
|
|
|
|
h4 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-16 22:45:21 +08:00
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.top-referred-topics {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.top-referred-topics,
|
|
|
|
.trending-search {
|
2018-05-18 04:44:33 +08:00
|
|
|
th:first-of-type {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
2018-05-17 03:49:02 +08:00
|
|
|
|
2021-09-09 23:01:56 +08:00
|
|
|
.period-chooser .period-chooser-header {
|
|
|
|
font-size: var(--font-down-2);
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
2018-06-12 18:47:03 +08:00
|
|
|
|
|
|
|
.dashboard-problems {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
|
|
|
|
2022-01-04 08:14:33 +08:00
|
|
|
.problem-messages {
|
2022-01-04 11:00:58 +08:00
|
|
|
margin-bottom: 1em;
|
2022-01-04 08:14:33 +08:00
|
|
|
|
|
|
|
&.priority-high {
|
|
|
|
background-color: var(--danger-low);
|
|
|
|
border: 1px solid var(--danger-medium);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0 0 0 1.25em;
|
|
|
|
|
|
|
|
li.dashboard-problem {
|
|
|
|
padding: 0.5em 0.5em;
|
|
|
|
}
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
}
|
2018-06-12 18:47:03 +08:00
|
|
|
|
|
|
|
.d-icon-exclamation-triangle {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--danger);
|
2018-06-12 18:47:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
2019-01-12 08:41:09 +08:00
|
|
|
margin: 1em 0 0 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2019-01-12 08:41:09 +08:00
|
|
|
.btn {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
2018-06-12 18:47:03 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-16 22:45:21 +08:00
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.counters-list {
|
|
|
|
display: flex;
|
2019-01-22 02:40:55 +08:00
|
|
|
flex: 1 0 0px;
|
2018-08-17 22:19:25 +08:00
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.counters-header {
|
|
|
|
display: grid;
|
2018-11-06 01:51:26 +08:00
|
|
|
flex: 1 0 auto;
|
2018-08-17 22:19:25 +08:00
|
|
|
grid-template-columns: 33% repeat(auto-fit, minmax(20px, 1fr));
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2018-08-17 22:19:25 +08:00
|
|
|
border-bottom: 0;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: right;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0.65em 0.25em;
|
2018-05-16 22:45:21 +08:00
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.admin-report .main {
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2018-08-17 22:19:25 +08:00
|
|
|
|
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--primary-very-low);
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-report:not(:last-child) {
|
|
|
|
.main {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conditional-loading-section.is-loading {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-report .conditional-loading-section.is-loading {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 0.5em 0.25em;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-start;
|
2020-08-04 10:57:10 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2018-08-17 22:19:25 +08:00
|
|
|
|
|
|
|
.title {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-0);
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
margin: 0;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
margin-left: 0.5em;
|
2018-05-16 22:45:21 +08:00
|
|
|
}
|
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.admin-report .main .report-alert {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
padding: 0.5em 0.25em;
|
|
|
|
align-items: center;
|
2018-08-22 17:25:12 +08:00
|
|
|
text-align: left;
|
2018-08-17 22:19:25 +08:00
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
background-color: var(--primary-very-low);
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.d-icon {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-1);
|
2018-08-17 22:19:25 +08:00
|
|
|
margin: 0 0.25em 0 0;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-low-mid);
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
2018-05-16 22:45:21 +08:00
|
|
|
}
|
2018-04-16 16:42:06 +08:00
|
|
|
}
|
2018-05-18 04:44:33 +08:00
|
|
|
|
2018-08-07 04:57:40 +08:00
|
|
|
.activity-metrics {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
2018-08-07 04:57:40 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 03:33:06 +08:00
|
|
|
.user-metrics {
|
2018-05-25 18:09:30 +08:00
|
|
|
display: flex;
|
2018-05-23 03:33:06 +08:00
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
2018-07-20 02:33:11 +08:00
|
|
|
flex-direction: column;
|
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
.dashboard-inline-table {
|
2018-05-23 03:33:06 +08:00
|
|
|
flex: 1 0 auto;
|
|
|
|
max-width: 95%;
|
|
|
|
}
|
2020-06-01 17:21:07 +08:00
|
|
|
|
2018-05-24 04:55:57 +08:00
|
|
|
.table-cell {
|
|
|
|
display: flex;
|
|
|
|
flex: 0 1 auto;
|
2018-05-24 06:46:25 +08:00
|
|
|
margin: 0 10px 5px 0;
|
2020-06-01 17:21:07 +08:00
|
|
|
padding: 1px;
|
2018-05-24 04:55:57 +08:00
|
|
|
border-radius: 10px;
|
2020-06-01 17:21:07 +08:00
|
|
|
|
2018-05-24 04:55:57 +08:00
|
|
|
.label {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary);
|
2018-05-24 04:55:57 +08:00
|
|
|
justify-content: center;
|
2018-05-24 06:46:25 +08:00
|
|
|
border-radius: 9px 0 0 9px;
|
|
|
|
padding: 0 5px 0 8px;
|
2018-05-25 18:09:30 +08:00
|
|
|
|
2018-05-24 04:55:57 +08:00
|
|
|
.d-icon {
|
|
|
|
margin-right: 5px;
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-down-1);
|
2018-05-24 04:55:57 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-24 06:46:25 +08:00
|
|
|
|
|
|
|
.value {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--secondary);
|
2020-06-01 17:21:07 +08:00
|
|
|
border-radius: 0 9px 9px 0;
|
2018-05-24 06:46:25 +08:00
|
|
|
padding: 0 8px 0 5px;
|
|
|
|
}
|
2020-06-01 17:21:07 +08:00
|
|
|
|
2018-06-08 17:49:31 +08:00
|
|
|
&.user-newuser {
|
2018-05-24 04:55:57 +08:00
|
|
|
.label {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-high);
|
2018-05-24 04:55:57 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
&.user-basic,
|
|
|
|
&.user-member {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--bronze);
|
2018-05-24 04:55:57 +08:00
|
|
|
.label {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--secondary);
|
2018-05-25 18:09:30 +08:00
|
|
|
}
|
2018-05-24 04:55:57 +08:00
|
|
|
}
|
|
|
|
&.user-regular {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--silver);
|
2018-05-24 04:55:57 +08:00
|
|
|
.label {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--secondary);
|
2018-05-25 18:09:30 +08:00
|
|
|
}
|
2018-05-24 04:55:57 +08:00
|
|
|
}
|
2018-05-25 18:09:30 +08:00
|
|
|
&.user-leader {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--gold);
|
2018-05-24 04:55:57 +08:00
|
|
|
.label {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--secondary);
|
2018-05-24 04:55:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-24 06:46:25 +08:00
|
|
|
}
|
2018-05-24 04:55:57 +08:00
|
|
|
|
2018-05-29 16:22:31 +08:00
|
|
|
.rtl .dashboard-next {
|
|
|
|
.section-column {
|
2018-06-08 17:49:31 +08:00
|
|
|
&:last-child {
|
2018-05-29 16:22:31 +08:00
|
|
|
margin-right: 1em;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-metrics .table-cell {
|
|
|
|
margin: 0 0 5px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-cell {
|
|
|
|
.label {
|
|
|
|
border-radius: 0 9px 9px 0;
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2022-10-18 01:27:22 +08:00
|
|
|
|
|
|
|
.value {
|
|
|
|
border-radius: 9px 0 0 9px;
|
|
|
|
padding: 0 5px 0 8px;
|
|
|
|
}
|
2018-05-29 16:22:31 +08:00
|
|
|
}
|
|
|
|
}
|
2018-07-20 02:33:11 +08:00
|
|
|
|
2018-08-17 22:19:25 +08:00
|
|
|
.users-by-trust-level,
|
|
|
|
.users-by-type {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
2018-08-17 22:19:25 +08:00
|
|
|
}
|
|
|
|
|
2018-07-20 02:33:11 +08:00
|
|
|
.community-health.section {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.dashboard-moderation,
|
|
|
|
.dashboard-security {
|
2018-08-17 22:19:25 +08:00
|
|
|
.section-body {
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-section {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
grid-column-gap: 1em;
|
2018-08-17 22:19:25 +08:00
|
|
|
grid-row-gap: 1em;
|
2018-07-20 02:33:11 +08:00
|
|
|
|
|
|
|
> * {
|
|
|
|
grid-column: span 12;
|
|
|
|
}
|
|
|
|
|
2018-12-14 20:47:59 +08:00
|
|
|
.admin-dashboard-security-bottom-outlet,
|
2018-07-20 02:33:11 +08:00
|
|
|
.admin-dashboard-moderation-bottom-outlet {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
grid-column-gap: 1em;
|
2018-08-17 22:19:25 +08:00
|
|
|
grid-row-gap: 1em;
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 20:47:59 +08:00
|
|
|
.admin-report {
|
2018-07-20 07:29:58 +08:00
|
|
|
grid-column: span 12;
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
2018-12-14 20:47:59 +08:00
|
|
|
}
|
2018-07-20 02:33:11 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.dashboard-moderation {
|
2018-12-14 20:47:59 +08:00
|
|
|
.admin-dashboard-moderation-top {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
grid-column-gap: 1em;
|
|
|
|
grid-row-gap: 1em;
|
2018-07-20 02:33:11 +08:00
|
|
|
}
|
|
|
|
}
|
2018-12-19 21:44:43 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.version-checks {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.section-title {
|
|
|
|
flex: 1 1 100%;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-bottom: 1px solid var(--primary-low);
|
2021-06-29 05:35:31 +08:00
|
|
|
padding-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin: 0;
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.version-check {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 50%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
|
|
|
align-self: flex-start;
|
|
|
|
justify-content: space-between;
|
2021-06-29 05:35:31 +08:00
|
|
|
padding-top: 1em;
|
|
|
|
|
2024-04-02 22:34:37 +08:00
|
|
|
.update-header {
|
2019-04-01 18:39:49 +08:00
|
|
|
flex: 1 1 100%;
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
@media screen and (max-width: 650px) {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
tr {
|
|
|
|
border: none;
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
th {
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
h2 {
|
|
|
|
flex: 1 1 100%;
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.version-number {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-2);
|
2022-10-12 22:05:42 +08:00
|
|
|
line-height: var(--line-height-small);
|
2019-04-01 18:39:49 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
font-weight: bold;
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 2em;
|
|
|
|
margin-right: 1em;
|
2019-04-01 18:39:49 +08:00
|
|
|
flex: 1 1 27%;
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
h3 {
|
|
|
|
flex: 1 0 auto;
|
2021-06-29 05:35:31 +08:00
|
|
|
margin: 0;
|
2019-04-01 18:39:49 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
|
|
|
h4 {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-down-2);
|
2021-06-29 05:35:31 +08:00
|
|
|
margin-bottom: 0.5em;
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-09-11 02:59:51 +08:00
|
|
|
.sha-link {
|
2021-06-29 05:35:31 +08:00
|
|
|
display: inline-flex;
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-down-2);
|
2019-09-11 02:59:51 +08:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2019-04-01 18:39:49 +08:00
|
|
|
.version-status {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0 0 1em 0;
|
|
|
|
flex: 1 1 24%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 20px;
|
|
|
|
min-width: 250px;
|
|
|
|
@include breakpoint(medium) {
|
|
|
|
max-width: unset;
|
|
|
|
}
|
|
|
|
.face {
|
|
|
|
margin: 0 0.75em 0 0;
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-3);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.critical .version-notes .normal-note {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&.normal .version-notes .critical-note {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.fa {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-4);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
.up-to-date {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--success);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
.updates-available {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--danger);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
.critical-updates-available {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--danger);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.update-nag {
|
|
|
|
.d-icon {
|
2022-10-12 21:31:59 +08:00
|
|
|
font-size: var(--font-up-3);
|
2019-04-01 18:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-22 23:09:02 +08:00
|
|
|
|
2021-02-11 02:12:04 +08:00
|
|
|
.dashboard-next.general {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2021-06-29 05:35:31 +08:00
|
|
|
|
2021-01-22 23:09:02 +08:00
|
|
|
.dashboard-new-features {
|
2021-02-11 02:12:04 +08:00
|
|
|
&.ordered-first {
|
|
|
|
order: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.ordered-first) {
|
|
|
|
.new-features-dismiss {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 23:09:02 +08:00
|
|
|
.section-footer {
|
|
|
|
margin: 1.5em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
.btn {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-new-feature-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2023-11-20 06:59:04 +08:00
|
|
|
margin-bottom: 1.5em;
|
|
|
|
background-color: var(--primary-very-low);
|
|
|
|
padding: 1em;
|
2024-02-14 01:17:17 +08:00
|
|
|
max-width: 45rem;
|
2021-01-22 23:09:02 +08:00
|
|
|
|
2023-11-20 06:59:04 +08:00
|
|
|
&__new-feature-emoji {
|
2023-11-20 13:08:10 +08:00
|
|
|
font-size: 1.2em;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0.5em;
|
2021-01-22 23:09:02 +08:00
|
|
|
}
|
|
|
|
|
2023-11-20 06:59:04 +08:00
|
|
|
&__content {
|
2021-01-22 23:09:02 +08:00
|
|
|
padding-right: 0.5em;
|
2023-11-20 06:59:04 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
font-size: var(--font-up-1);
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
|
|
|
&__screenshot {
|
|
|
|
width: 100%;
|
2021-01-22 23:09:02 +08:00
|
|
|
}
|
|
|
|
}
|