0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Added in the new copy for the empty state for new Dashboard

refs: https://github.com/TryGhost/Team/issues/1594
This commit is contained in:
James Morris 2022-05-09 16:35:13 +01:00
parent d6e98eca68
commit 53235a2c33
2 changed files with 20 additions and 5 deletions

View file

@ -1,6 +1,7 @@
<div class="gh-dashboard5-zero"> <div class="gh-dashboard5-zero">
<div class="gh-dashboard5-zero-message"> <div class="gh-dashboard5-zero-message">
<h4>Get your first member to unlock analytics!</h4> <h4>Welcome to your Dashboard</h4>
<p>Analytics will appear here as soon as someone<br />subscribes to your site.</p> <p>You'll find member analytics here once someone signs up.</p>
<p><LinkTo @route="member.new">Add yourself as a member &rarr;</LinkTo></p>
</div> </div>
</div> </div>

View file

@ -907,7 +907,7 @@ Dashboard v5 Zero */
background: #fff url(icons/analytics.svg) no-repeat 50% 36px; background: #fff url(icons/analytics.svg) no-repeat 50% 36px;
background-size: 48px 48px; background-size: 48px 48px;
min-width: 400px; min-width: 400px;
padding: 96px 48px 48px; padding: 96px 64px 48px;
border-radius: 8px; border-radius: 8px;
text-align: center; text-align: center;
box-shadow: 0 4px 24px rgba(0,0,0,0.066); box-shadow: 0 4px 24px rgba(0,0,0,0.066);
@ -928,10 +928,24 @@ Dashboard v5 Zero */
font-size: 1.2rem; font-size: 1.2rem;
font-weight: 600; font-weight: 600;
line-height: 1.5em; line-height: 1.5em;
color: var(--black); color: var(--middarkgrey);
letter-spacing: -.1px; letter-spacing: -.1px;
padding: 0; padding: 0;
margin: 0; margin: 0 0 8px;
}
.gh-dashboard5-zero-message a {
background: rgb(174,90,239);
background: linear-gradient(90deg, rgba(174,90,239,1) 0%, rgba(233,84,179,1) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: filter 100ms linear;
filter: brightness(1);
}
.gh-dashboard5-zero-message a:hover {
filter: brightness(0.8);
} }