From 77dda7beba9a7055c8877ed886c3611d3c8d6975 Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Mon, 15 May 2023 15:53:15 +0800 Subject: [PATCH] Fixed long URL scrolling in members activity refs https://github.com/TryGhost/Team/issues/2616 - long urls were causing scrolls in the members activity - now the urls are broke into multiple lines, so that it's easier to understand/copy them --- ghost/admin/app/styles/layouts/member-activity.css | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/ghost/admin/app/styles/layouts/member-activity.css b/ghost/admin/app/styles/layouts/member-activity.css index 4006b2dff6..99fc969dd7 100644 --- a/ghost/admin/app/styles/layouts/member-activity.css +++ b/ghost/admin/app/styles/layouts/member-activity.css @@ -227,6 +227,7 @@ padding: 0; margin: 0; text-align: left; + word-break: break-word; } .ghost-members-activity-event-url::before { @@ -243,18 +244,6 @@ transition: all 250ms ease-out; } -.ghost-members-activity-event-url::after { - content: ''; - position: absolute; - top: 0; - right: 0; - width: 20px; - height: 100%; - background: rgb(255,255,255); - background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); - z-index: 999; -} - .ghost-members-activity-event-url.scroller:hover::before { opacity: 1; left: 0; @@ -312,7 +301,6 @@ display: inline-block; color: var(--middarkgrey); font-weight: 500; - white-space: nowrap; width: 100%; }