1
0
mirror of https://github.com/flarum/core.git synced 2025-07-24 02:01:19 +02:00

fix: overflow notifications group header text with ellipses (#3500)

Fixes #3408
This commit is contained in:
David Sevilla Martin
2022-07-04 07:16:59 -04:00
committed by GitHub
parent 9a62c32c28
commit 709c5566bb

View File

@@ -68,14 +68,17 @@
color: var(--heading-color) !important; color: var(--heading-color) !important;
padding: 8px 16px; padding: 8px 16px;
white-space: nowrap; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: flex; display: flex;
align-items: center; align-items: center;
// Prevent outline overflowing parent // Prevent outline overflowing parent
.add-keyboard-focus-ring-offset(-1px); .add-keyboard-focus-ring-offset(-1px);
&, span {
overflow: hidden;
text-overflow: ellipsis;
}
} }
&-badges { &-badges {