チャットワーク用のスタイルシートを更新

チャットワーク用のスタイルシートを更新したのでメモしておきます。
スタイルの適用には、Chrome拡張の「Stylus」を使っています。
全体的に高さを縮めて、一覧性を高くしています。

※チャットワーク自体の更新などによってスタイルが使えなくなる可能性があります。その場合はスタイルを削除してください

#_roomListArea [role=listitem]
{
    height: 26px !important;
    border-bottom: #AAA solid 1px !important;
}

#_roomListArea [role=listitem]>div {
    margin-top: -12px;
}

/* ブックマーク部分の高さも縮める */
#sidebarSwitch > div > button {
    height: 30px;
}

/* チャンネル選択部分も縮める */
#_roomListContainer > div {
    height: 35px;
}

/* 名前によって非表示にする */
[aria-label='xxxx'], [aria-label='xxx']
{
    display: none;
}

適用後
f:id:asane:20210730155711p:plain

適用前
f:id:asane:20210730155735p:plain