Build mailbox management page
This commit is contained in:
parent
cff776dc8c
commit
c87880c544
3 changed files with 420 additions and 12 deletions
105
frontend-js/dist/style.css
vendored
105
frontend-js/dist/style.css
vendored
|
|
@ -270,6 +270,105 @@ a.tree-node { display: block; color: inherit; text-decoration: none; }
|
|||
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
|
||||
.label { display: block; font-size: 12px; color: var(--ol-muted); margin-bottom: 3px; }
|
||||
|
||||
/* Postfach-Verwaltung */
|
||||
.accounts-page {
|
||||
flex: 1 1 auto;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
background: #fff;
|
||||
}
|
||||
.notice {
|
||||
padding: 8px 16px;
|
||||
border-bottom: 1px solid var(--ol-border);
|
||||
background: #f8fbfd;
|
||||
}
|
||||
.account-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(520px, 1fr) minmax(460px, 560px);
|
||||
min-height: 100%;
|
||||
}
|
||||
.account-list,
|
||||
.account-form-panel {
|
||||
min-width: 0;
|
||||
border-right: 1px solid var(--ol-border);
|
||||
background: #fff;
|
||||
}
|
||||
.account-form-panel { border-right: 0; }
|
||||
.account-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
table-layout: fixed;
|
||||
}
|
||||
.account-table th,
|
||||
.account-table td {
|
||||
padding: 8px 10px;
|
||||
border-bottom: 1px solid #ececec;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.account-table th {
|
||||
color: var(--ol-muted);
|
||||
font-weight: 600;
|
||||
background: #fafafa;
|
||||
}
|
||||
.account-table tr.selected { background: var(--ol-sel); }
|
||||
.account-table a { color: var(--ol-blue-dark); font-weight: 600; text-decoration: none; }
|
||||
.row-actions {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.row-actions form { margin: 0; }
|
||||
.account-form {
|
||||
padding: 14px;
|
||||
}
|
||||
.form-section {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 14px;
|
||||
align-items: end;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.form-columns {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 14px;
|
||||
}
|
||||
.account-form fieldset {
|
||||
border: 1px solid var(--ol-border);
|
||||
padding: 12px;
|
||||
margin: 0;
|
||||
min-width: 0;
|
||||
}
|
||||
.account-form legend {
|
||||
color: var(--ol-blue-dark);
|
||||
font-weight: 700;
|
||||
padding: 0 4px;
|
||||
}
|
||||
.field-row {
|
||||
display: grid;
|
||||
grid-template-columns: 92px minmax(0, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
.check-row {
|
||||
display: flex;
|
||||
gap: 7px;
|
||||
align-items: center;
|
||||
color: var(--ol-text);
|
||||
min-height: 28px;
|
||||
}
|
||||
.check-row input { width: auto; }
|
||||
.form-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
.form-actions a { text-decoration: none; }
|
||||
.btn.danger { color: #8a1f11; }
|
||||
|
||||
/* Statusleiste */
|
||||
.statusbar {
|
||||
flex: 0 0 auto;
|
||||
|
|
@ -302,4 +401,10 @@ a.tree-node { display: block; color: inherit; text-decoration: none; }
|
|||
.pane-resizer { display: none; }
|
||||
.pane-target { grid-column: auto; }
|
||||
.searchbar { top: 30px; }
|
||||
.account-layout,
|
||||
.form-columns,
|
||||
.form-section {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.account-table { min-width: 760px; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue