Skip to content

Commit b4f8300

Browse files
committed
Social media channel links per user
1 parent b60ac00 commit b4f8300

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

src/style/Textpattern/sass/modules/fluxbb/_layout.scss

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,27 @@ thead th {
360360
}
361361

362362
.usercontacts {
363-
span::before {
364-
content: "| \0020";
365-
}
363+
a {
364+
display: inline-block;
365+
margin: 0.5rem 0.25rem 0 0;
366+
padding: 1px 5px;
367+
border: 1px solid var(--clr-brdr);
368+
border-radius: setup.$border-radius / 2;
369+
background-color: var(--clr-bkgd-box);
366370

367-
span:first-child::before {
368-
content: none;
371+
&:hover {
372+
background-color: var(--clr-nav-interact);
373+
filter: brightness(1.05);
374+
}
375+
376+
&:active {
377+
filter: brightness(0.95);
378+
}
379+
380+
&:focus {
381+
border-color: var(--clr-focus);
382+
outline: 2px solid transparent; // Allows for repainting in high contrast modes.
383+
}
369384
}
370385
}
371386

0 commit comments

Comments
 (0)