0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-15 03:01:37 -05:00

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
This commit is contained in:
Sodbileg Gansukh 2023-05-15 15:53:15 +08:00
parent 828c1df6ac
commit 77dda7beba

View file

@ -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%;
}