mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 01:44:02 +08:00
98a3e7d6e2
* UX: Apply admin table classes for consistent mobile styling on custom flags * UX: Apply admin table classes for consistent mobile styling on custom flags * UX: Apply admin table classes for consistent mobile styling on backups * UX: Apply admin table classes for consistent mobile styling on plugins list * DEV: tweaks on admin table * UX: Apply admin table classes for consistent mobile styling on chat plugin * apply prettier * apply lint * DEV: removed commented out code * DEV: removed unnecessary div element * scroll to the element * remove the workaround * revert * add an extra assertion * add enabled check * improve switching * rm --------- Co-authored-by: Jarek Radosz <jradosz@gmail.com>
42 lines
563 B
SCSS
42 lines
563 B
SCSS
// Styles for /admin/backups
|
|
|
|
.admin-backups {
|
|
.before-backup-list-outlet {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.d-admin-table {
|
|
.backup-size {
|
|
text-align: right;
|
|
}
|
|
|
|
.backup-filename {
|
|
width: 80%;
|
|
text-wrap: balance;
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-backups-logs {
|
|
max-height: 65vh;
|
|
overflow: auto;
|
|
}
|
|
|
|
.start-backup-modal {
|
|
.alert {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.backup-message {
|
|
margin-left: auto;
|
|
margin-top: 1em;
|
|
@include breakpoint(mobile-extra-large) {
|
|
margin: 1.25em 0 0;
|
|
}
|
|
}
|
|
|
|
label.admin-backups-upload {
|
|
font-weight: 400;
|
|
}
|