Add archive mailbox management
This commit is contained in:
parent
6ff29d5de7
commit
4616d725f2
2 changed files with 222 additions and 12 deletions
37
frontend-js/dist/style.css
vendored
37
frontend-js/dist/style.css
vendored
|
|
@ -341,7 +341,7 @@ a.tree-node { display: block; color: inherit; text-decoration: none; }
|
|||
}
|
||||
.form-columns {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 14px;
|
||||
}
|
||||
.account-form fieldset {
|
||||
|
|
@ -375,6 +375,41 @@ a.tree-node { display: block; color: inherit; text-decoration: none; }
|
|||
}
|
||||
.form-actions a { text-decoration: none; }
|
||||
.btn.danger { color: #8a1f11; }
|
||||
.archive-manager {
|
||||
padding: 12px;
|
||||
border-bottom: 1px solid var(--ol-border);
|
||||
}
|
||||
.archive-create {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 8px;
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
.archive-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
table-layout: fixed;
|
||||
}
|
||||
.archive-table th,
|
||||
.archive-table td {
|
||||
padding: 7px 8px;
|
||||
border-bottom: 1px solid #ececec;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.archive-table th {
|
||||
color: var(--ol-muted);
|
||||
font-weight: 600;
|
||||
background: #fafafa;
|
||||
}
|
||||
.archive-action {
|
||||
width: 90px;
|
||||
text-align: right;
|
||||
}
|
||||
.archive-action form { margin: 0; }
|
||||
.muted { color: var(--ol-muted); }
|
||||
|
||||
/* Statusleiste */
|
||||
.statusbar {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue