From a62f97efe0ee5d4da31d5fca486045be2e7a581a Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 2 Mar 2024 23:59:54 -0500 Subject: [PATCH] Fix disambiguatedProfile overflow on ReplyTile --- res/css/_sc/views/rooms/_IRCLayout.pcss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/res/css/_sc/views/rooms/_IRCLayout.pcss b/res/css/_sc/views/rooms/_IRCLayout.pcss index 1b024babefb..c7f5f920780 100644 --- a/res/css/_sc/views/rooms/_IRCLayout.pcss +++ b/res/css/_sc/views/rooms/_IRCLayout.pcss @@ -14,6 +14,12 @@ See the License for the specific language governing permissions and limitations under the License. */ +@define-mixin mx_ReplyChain_disambiguatedProfile { + .mx_ReplyChain .mx_DisambiguatedProfile:hover { + overflow: hidden; /* Override "overflow: visible" specified by the upstream */ + } +} + /* This mixin defines border radius for corders */ @define-mixin sc_borderRadius { .mx_DisambiguatedProfile { @@ -100,6 +106,8 @@ limitations under the License. @define-mixin sc_ReplyChain { .mx_ReplyChain_wrapper { + @mixin mx_ReplyChain_disambiguatedProfile; + /* "In reply to" line */ blockquote:first-of-type { padding-bottom: 2px; /* Add padding between "In reply to" line and the replied content */