左が自分の投稿、右が他所のサーバの投稿
Stylus アドオンでこれでいけた。将来的に壊れる可能性はあるが今のところはたぶん機能する。
```css
/* 「投稿へのリンクをコピー」を強調 */
.dropdown-menu__item:has(> a[role="button"][href^="https://"]) + * {
font-weight: bolder;
background: darkgreen !important;
}
```
`[href^="https://"]` の部分は `:not([href="#"])` とかでも良いのかもしれない
ともあれ欲しいものはできたのでヨシ!