Hello,
I have been setting up my first flarum instance and I wanted to experiment a bit.
So I added a post badge that looks like this
The code I used for it
.PostStream-item::before {
content: "";
position: absolute;
display: block;
width: 300px;
height: 120px;
opacity: .1;
scale: 1.12;
margin-top: 8px;
transform: rotate(-15deg);
background: no-repeat center;
background-image: url(/assets/logo/watermark_logo.svg);
background-size: contain;
}
However, is there a way to have this only applied to admins/mods? I have checked the markup and it doesn't seem that admins or mods have an extra HTML Attribute that would make it easier to select with css, for example:
[data-group="admin"]
Any help is appreciated!