Accounts: Fetch list of all accounts (optionally filtered by domain)

This commit is contained in:
Lexi / Zoe 2021-07-30 03:46:43 +02:00
parent 279f4492e8
commit 985f46c652
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
6 changed files with 145 additions and 9 deletions

View file

@ -112,6 +112,10 @@ a:hover, a:focus {
padding: 1em;
}
.gray {
color: gray;
}
button {
padding: 0.2em 1em;
}
@ -121,3 +125,27 @@ table, tr, td, th {
border-collapse: collapse;
padding: 0.25em 0.5em;
}
.inactive {
color: gray;
}
/* --- Filter options --- */
.filter_options {
border: 1px solid #999999;
padding: 1em;
margin: 1em 0;
}
.filter_options h4 {
margin: 0 0 0.5em 0;
}
/* --- Detail columns --- */
input#show_details_checkbox {
margin-bottom: 1em;
}
input#show_details_checkbox:not(:checked) ~ table .detail_column {
display: none;
}