discourse/app/assets/stylesheets/common/admin/backups.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.3 KiB
SCSS
Raw Normal View History

2018-07-03 11:14:53 +08:00
// Styles for /admin/backups
.admin-backups {
.before-backup-list-outlet {
margin-top: 1em;
2018-07-03 11:14:53 +08:00
}
table {
@media screen and (min-width: 550px) {
td.backup-filename {
grid-column-start: 1;
grid-column-end: 6;
}
td.backup-size {
grid-column-end: -1;
text-align: right;
}
td.backup-controls {
margin-top: 0.25em;
grid-row: 2;
grid-column-start: 1;
grid-column-end: 5;
text-align: right;
.btn {
margin-top: 0.25em;
}
}
}
2019-07-11 21:57:53 +08:00
@include breakpoint(mobile-extra-large) {
2018-07-03 11:14:53 +08:00
td.backup-filename {
grid-column-start: 1;
grid-column-end: 3;
}
td.backup-size {
text-align: right;
}
td.backup-controls {
grid-column-start: 1;
grid-column-end: 4;
}
}
2018-07-13 04:38:51 +08:00
@include breakpoint(tablet) {
2018-07-03 11:14:53 +08:00
td.backup-controls {
text-align: left;
}
}
}
}
.admin-backups-logs {
max-height: 65vh;
2018-07-03 11:14:53 +08:00
overflow: auto;
}
.start-backup-modal {
.alert {
margin-bottom: 0;
2018-07-03 11:14:53 +08:00
}
}
.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;
}