summaryrefslogtreecommitdiff
path: root/web/source/settings/style.css
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-04-13 13:25:10 +0200
committerLibravatar GitHub <noreply@github.com>2024-04-13 13:25:10 +0200
commit89e0cfd8741b6763ca04e90558bccf4c3c380cfa (patch)
tree5858ada73473816fa1982f12717b66996d163f9d /web/source/settings/style.css
parent[performance] update GetAccountsByIDs() to use the new multi cache loader end... (diff)
downloadgotosocial-89e0cfd8741b6763ca04e90558bccf4c3c380cfa.tar.xz
[feature] Admin accounts endpoints; approve/reject sign-ups (#2826)
* update settings panels, add pending overview + approve/deny functions * add admin accounts get, approve, reject * send approved/rejected emails * use signup URL * docs! * email * swagger * web linting * fix email tests * wee lil fixerinos * use new paging logic for GetAccounts() series of admin endpoints, small changes to query building * shuffle useAccountIDIn check *before* adding to query * fix parse from toot react error * use `netip.Addr` * put valid slices in globals * optimistic updates for account state --------- Co-authored-by: kim <grufwub@gmail.com>
Diffstat (limited to 'web/source/settings/style.css')
-rw-r--r--web/source/settings/style.css41
1 files changed, 35 insertions, 6 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css
index 372031203..894d879ad 100644
--- a/web/source/settings/style.css
+++ b/web/source/settings/style.css
@@ -804,16 +804,12 @@ span.form-info {
.info {
color: $info-fg;
background: $info-bg;
- padding: 0.5rem;
+ padding: 0.25rem;
border-radius: $br;
display: flex;
gap: 0.5rem;
align-items: center;
-
- i {
- margin-top: 0.1em;
- }
a {
color: $info-link;
@@ -1145,7 +1141,7 @@ button.with-padding {
}
}
-.account-search {
+.accounts-view {
form {
margin-bottom: 1rem;
}
@@ -1175,9 +1171,42 @@ button.with-padding {
max-width: 60rem;
}
+ h4, h3, h2 {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .info-list {
+ border: 0.1rem solid $gray1;
+ display: flex;
+ flex-direction: column;
+
+ .info-list-entry {
+ background: $list-entry-bg;
+ border: 0.1rem solid transparent;
+ padding: 0.25rem;
+
+ &:nth-child(even) {
+ background: $list-entry-alternate-bg;
+ }
+
+ display: grid;
+ grid-template-columns: max(20%, 10rem) 1fr;
+
+ dt {
+ font-weight: bold;
+ }
+
+ dd {
+ word-break: break-word;
+ }
+ }
+ }
+
.action-buttons {
display: flex;
gap: 0.5rem;
+ align-items: center;
}
}