Skip to content
Snippets Groups Projects
Commit 149094fa authored by Gabriel Engel's avatar Gabriel Engel Committed by GitHub
Browse files

Merge pull request #6367 from MagicTavern/deactivated_users_style

Make deactivated users look different in admin user list
parents 1959e4f3 bb20fbe1
No related branches found
No related tags found
No related merge requests found
......@@ -4920,6 +4920,11 @@ a + br.only-after-a {
}
}
.user-info.deactivated {
text-decoration: line-through;
opacity: 0.8;
}
// MEDIA QUERIES
@media all and(max-width: 1100px) {
......
......@@ -33,7 +33,7 @@
</thead>
<tbody>
{{#each users}}
<tr class="user-info row-link">
<tr class="user-info row-link {{#if not active}}deactivated{{/if}}">
<td class="border-component-color">
<div class="user-image status-{{status}}">
{{> avatar username=username}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment