Accounts: Fetch list of all accounts (optionally filtered by domain)
This commit is contained in:
parent
279f4492e8
commit
985f46c652
6 changed files with 145 additions and 9 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue