Tutrix
Thanks for the reply
So, i've try a little trick (and that works) and share here :
"Admin" group is mostly time group id => 1
You can check that with inspect element on the group you want some special background
<div class="Badge Badge--group--1 text-contrast--light" style="--badge-bg: #B72A2A;" title="" aria-label="Admin" data-original-title="Admin"><i aria-hidden="true" class="icon fas fa-hammer Badge-icon"></i></div>
For this example, group admin is id 1
You just need to do custom css, and add :
.Post:has(.Badge--group--1) {
border-left: 6px solid #B72A2A !important;
background: rgba(0, 0, 0, 0.35) !important;
}
(For my example, that add a red left bar to the post, feel free to customize it !)