aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-06-16 21:25:12 -0500
committerubq323 <ubq323@ubq323.website>2025-06-17 12:05:16 +0100
commitb84b42ea4a61784dd45f4781530f0dee86f51578 (patch)
tree6a41135f897c7d484e22c0f9bedd651e04556c26
parent831f93b5e6eb4b44985426ce19c8ad3bcc70c1d0 (diff)
use flexbox for thread top bar
this fixes some strange and frustrating interactions
-rw-r--r--apioforum/static/style.css14
1 files changed, 13 insertions, 1 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css
index 3a7824b..8d0f2e3 100644
--- a/apioforum/static/style.css
+++ b/apioforum/static/style.css
@@ -97,11 +97,23 @@ div.deleted-post {
}
.thread-top-bar, .user-top-bar {
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ display: flex;
margin-bottom: 4px;
}
+.thread-top-bar-a {
+ flex-basis: fill;
+ flex-wrap: wrap;
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
.thread-top-bar-b {
- float: right;
+ flex-basis: fill;
+ margin-left: auto;
margin-right: -2px;
}