diff options
author | citrons <citrons@mondecitronne.com> | 2025-06-16 21:25:14 -0500 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2025-06-17 12:05:16 +0100 |
commit | c839cb41730e8130b4282ac121d3daf7af08a5e6 (patch) | |
tree | d63f96928a0179e0f265effaa4011afcdf100375 | |
parent | 52cbecab5197d672c40a0f3ee479f079ee56fc48 (diff) |
limit display width of tags
-rw-r--r-- | apioforum/static/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css index e909a54..f96c494 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -358,10 +358,14 @@ fieldset { margin-bottom: 15px; } } .tag { + display: inline-block; font-size: .75rem; padding: 1px 3px; border: 1px solid var(--dark-colour); white-space: nowrap; + max-width: 10ch; + overflow: hidden; + text-overflow: ellipsis; } .tag-editor { margin-left: 20px; display: inline-block; } |