mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 14:00:42 +08:00
Follow up to https://github.com/discourse/discourse/pull/33253 Switches to the generic `d-table` class instead of using the admin stylesheet. No visual changes, except the badge/status for the API key. | Before | After | |--------|--------| |  |  |
43 lines
580 B
SCSS
Vendored
43 lines
580 B
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
// Styles for /admin/backups
|
|
.admin-backups {
|
|
.before-backup-list-outlet {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.d-table {
|
|
.d-table__cell.--overview {
|
|
max-width: 65%;
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.backup-size {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-backups-logs {
|
|
max-height: 65vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.start-backup-modal {
|
|
.alert {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.backup-message {
|
|
margin-left: auto;
|
|
margin-top: 1em;
|
|
|
|
@include viewport.until(sm) {
|
|
margin: 1.25em 0 0;
|
|
}
|
|
}
|
|
|
|
label.admin-backups-upload {
|
|
font-weight: 400;
|
|
}
|