[feature] Allow user to set "bot" flag; show bot icon on profile (#3135)

* [feature] Allow user to set "bot" flag; show bot icon on profile

* tweak

* update customs
This commit is contained in:
tobi 2024-07-24 10:40:56 +02:00 committed by GitHub
commit 325b4a2b4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 117 additions and 32 deletions

View file

@ -51,7 +51,9 @@ html, body {
border: var(--boxshadow-border);
}
.profile .profile-header .basic-info .namerole .role {
/* Role and bot badge borders */
.profile .profile-header .basic-info .namerole .role,
.profile .profile-header .basic-info .namerole .bot-username-wrapper .bot-legend-wrapper {
border: var(--boxshadow-border);
}

View file

@ -55,8 +55,9 @@ html, body {
color: var(--eggshell);
}
/* Role badge background */
.profile .profile-header .basic-info .namerole .role {
/* Role and bot badge backgrounds */
.profile .profile-header .basic-info .namerole .role,
.profile .profile-header .basic-info .namerole .bot-username-wrapper .bot-legend-wrapper {
background: var(--eggshell);
}