Admin: make awaiting approval actions work

This commit is contained in:
Alex Gleason 2020-12-29 18:22:31 -06:00
parent 1ad3ea4437
commit a3f208c1be
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
4 changed files with 27 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View file

@ -67,3 +67,30 @@
border-bottom: 1px solid var(--accent-color--med);
}
}
.unapproved-account {
padding: 15px 20px;
font-size: 14px;
display: flex;
&__nickname {
font-weight: bold;
}
&__reason {
padding: 5px 0 5px 15px;
border-left: 3px solid hsla(var(--primary-text-color_hsl), 0.4);
color: var(--primary-text-color--faint);
}
&__actions {
margin-left: auto;
padding-left: 20px;
display: flex;
flex-wrap: nowrap;
}
}
.slist .item-list article:nth-child(2n-1) .unapproved-account {
background-color: hsla(var(--accent-color_hsl), 0.07);
}