From b1e56e1cd600ce2c0e2be8b10cb71372778351c5 Mon Sep 17 00:00:00 2001 From: Murilo Brito Date: Fri, 9 Jan 2026 19:14:44 -0300 Subject: [PATCH] bugfix: fix title lines not rendering in chat messages --- styles/less/ui/chat/action.less | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/styles/less/ui/chat/action.less b/styles/less/ui/chat/action.less index bdc6a0ed..8d309cfe 100644 --- a/styles/less/ui/chat/action.less +++ b/styles/less/ui/chat/action.less @@ -102,17 +102,27 @@ .summons-header { font-size: var(--font-size-14); text-align: center; + display: flex; + align-items: center; + justify-content: center; - span::before, - span::after { - color: @dark-blue; + span { + width: 100%; } + + &:before, + &:after { + content: ' '; + height: 1px; + width: 100%; + } + &:before { - background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @dark-blue 100%); + background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, light-dark(@dark-blue, @golden) 100%); } &:after { - background: linear-gradient(90deg, @dark-blue 0%, rgba(0, 0, 0, 0) 100%); + background: linear-gradient(90deg, light-dark(@dark-blue, @golden) 0%, rgba(0, 0, 0, 0) 100%); } }