mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Tweaks to how click events are handled based on feedback
refs https://github.com/TryGhost/Team/issues/1981
This commit is contained in:
parent
e98dda15f9
commit
ec9e61dc2f
@ -31,15 +31,16 @@
|
||||
{{/if}}
|
||||
{{#if event.url}}
|
||||
<span class="gh-members-activity-event-join">{{event.join}}</span>
|
||||
{{#if (feature "emailClicks")}}<span class="gh-members-activity-event-dash">–</span>{{/if}}
|
||||
<a class="ghost-members-activity-object-link" href="{{event.url}}" target="_blank" rel="noopener noreferrer">{{event.object}}</a>
|
||||
{{/if}}
|
||||
{{#if event.email}}
|
||||
{{#if (feature "emailClicks")}}<span class="gh-members-activity-event-dash">–</span>{{/if}}
|
||||
<GhEmailPreviewLink @data={{event.email}} />
|
||||
{{/if}}
|
||||
</span>
|
||||
{{#if event.description}}
|
||||
<div class="ghost-members-activity-event-description {{if (feature "memberAttribution") 'feature-memberAttribution'}}">
|
||||
<div class="ghost-members-activity-event-prefix">URL</div>
|
||||
<div class="ghost-members-activity-event-url" {{on "mouseenter" this.enterLinkURL}} {{on "mouseleave" this.leaveLinkURL}}>
|
||||
<span>{{event.description}}</span>
|
||||
</div>
|
||||
|
@ -26,15 +26,16 @@
|
||||
{{/if}}
|
||||
{{#if event.url}}
|
||||
<span class="gh-members-activity-event-join">{{event.join}}</span>
|
||||
{{#if (feature "emailClicks")}}<span class="gh-members-activity-event-dash">–</span>{{/if}}
|
||||
<a class="ghost-members-activity-object-link" href="{{event.url}}" target="_blank" rel="noopener noreferrer">{{event.object}}</a>
|
||||
{{/if}}
|
||||
{{#if event.email}}
|
||||
<span class="{{if (feature "memberAttribution") 'hidden'}}"><GhEmailPreviewLink @data={{event.email}} /></span>
|
||||
{{#if (feature "emailClicks")}}<span class="gh-members-activity-event-dash">–</span>{{/if}}
|
||||
<GhEmailPreviewLink @data={{event.email}} />
|
||||
{{/if}}
|
||||
</span>
|
||||
{{#if event.description}}
|
||||
<div class="ghost-members-activity-event-description {{if (feature "memberAttribution") 'feature-memberAttribution'}}">
|
||||
<div class="ghost-members-activity-event-prefix">URL</div>
|
||||
<div class="ghost-members-activity-event-url" {{on "mouseenter" this.enterLinkURL}} {{on "mouseleave" this.leaveLinkURL}}>
|
||||
<span>{{event.description}}</span>
|
||||
</div>
|
||||
|
@ -157,7 +157,7 @@ export default class ParseMemberEventHelper extends Helper {
|
||||
}
|
||||
|
||||
if (event.type === 'click_event') {
|
||||
return 'clicked in email';
|
||||
return 'clicked link in email';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -455,6 +455,7 @@ ul.nostyle li {
|
||||
background: var(--main-bg-color);
|
||||
background: linear-gradient(90deg, rgba(255,255,255,1) 90%, rgba(255,255,255,0) 100%);
|
||||
padding: 0 60px 0 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.gh-list-scrolling thead th:first-child::before,
|
||||
|
@ -36,6 +36,14 @@
|
||||
color: var(--darkgrey);
|
||||
}
|
||||
|
||||
.gh-members-activity .gh-list-data {
|
||||
height: 84px;
|
||||
}
|
||||
|
||||
.gh-members-activity.gh-members-activity-single .gh-list-data {
|
||||
height: 68px;
|
||||
}
|
||||
|
||||
.no-posts .gh-members-placeholder {
|
||||
fill: var(--lightgrey);
|
||||
width: 60px;
|
||||
@ -141,7 +149,6 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 1.25rem 0;
|
||||
}
|
||||
|
||||
.gh-members-activity-detail {
|
||||
@ -153,6 +160,7 @@
|
||||
display: block;
|
||||
font-weight: 500;
|
||||
font-size: 1.4rem;
|
||||
letter-spacing: 0;
|
||||
color: var(--middarkgrey);
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
@ -179,6 +187,10 @@
|
||||
color: var(--darkgrey);
|
||||
}
|
||||
|
||||
.gh-members-activity-event-dash {
|
||||
color: var(--midgrey);
|
||||
}
|
||||
|
||||
.gh-members-activity-event-join {
|
||||
font-weight: 500;
|
||||
color: var(--middarkgrey);
|
||||
@ -190,10 +202,7 @@
|
||||
}
|
||||
|
||||
.ghost-members-activity-event-description {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: baseline;
|
||||
gap: 6px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.ghost-members-activity-event-prefix {
|
||||
@ -254,7 +263,7 @@
|
||||
.ghost-members-activity-event-url > span {
|
||||
display: inline-block;
|
||||
font-weight: 400;
|
||||
font-size: 1.2rem;
|
||||
font-size: 1.3rem;
|
||||
color: var(--midgrey);
|
||||
letter-spacing: 0;
|
||||
line-height: 1.3em;
|
||||
|
Loading…
Reference in New Issue
Block a user