Make dive/undive button clickable along the whole row

このコミットが含まれているのは:
Tusooa Zhu 2021-08-08 13:29:49 -04:00
コミット 0e4a7c3d05
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 7B467EDE43A08224
2個のファイルの変更8行の追加0行の削除

ファイルの表示

@ -134,6 +134,10 @@
border-bottom-style: solid;
border-bottom-color: var(--border, $fallback--border);
border-radius: 0;
/* Make the button stretch along the whole row */
display: flex;
align-items: stretch;
flex-direction: column;
}
/* HACK: we want the border width to scale with the status *below it* */

ファイルの表示

@ -119,5 +119,9 @@
.thread-tree-replies-hidden {
padding: $status-margin;
border-top: 1px solid var(--border, $fallback--border);
/* Make the button stretch along the whole row */
display: flex;
align-items: stretch;
flex-direction: column;
}
</style>