mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 18:34:39 +03:00
d4f131ee26
Refs https://github.com/TryGhost/Team/issues/459 - Updated styles for Facebook, Twitter and Google - Added mockup for tweets, posts, and Google search results - Got rid of browser mockup on desktop preview - Changed button-group active style from blue to black
486 lines
9.3 KiB
CSS
486 lines
9.3 KiB
CSS
.gh-post-preview-header {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 9999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 72px;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 18px 32px;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
background: var(--white);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.gh-post-preview-header h2 {
|
|
flex: 1;
|
|
margin: 0;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.gh-post-preview-header-border {
|
|
border-bottom: 1px solid var(--whitegrey);
|
|
}
|
|
|
|
.gh-post-preview-btn-group {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
justify-content: center;
|
|
}
|
|
|
|
.gh-post-preview-btn-group button {
|
|
width: 64px;
|
|
}
|
|
|
|
.gh-post-preview-btn-group button span {
|
|
height: 40px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.gh-post-preview-mode svg {
|
|
max-height: 20px;
|
|
max-width: 20px;
|
|
vertical-align: middle;
|
|
fill: var(--midgrey);
|
|
}
|
|
|
|
|
|
/* Browser preview */
|
|
.gh-post-preview-browser-container {
|
|
position: relative;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
overflow: auto;
|
|
margin: 0;
|
|
background: var(--whitegrey-l1);
|
|
}
|
|
|
|
.gh-post-preview-browser-container iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
|
|
.gh-post-preview-url-container {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 38px;
|
|
max-width: 520px;
|
|
padding: 5px 4px 5px 8px;
|
|
color: var(--midgrey);
|
|
font-size: 1.4rem;
|
|
border: 1px solid var(--whitegrey);
|
|
background: var(--whitegrey-l2);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.gh-post-preview-copy {
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 32px;
|
|
padding: 0 8px 0 9px;
|
|
}
|
|
|
|
.gh-post-preview-copy span {
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.gh-post-preview-browser-footer,
|
|
.gh-post-preview-email-footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-top: 1px solid var(--whitegrey);
|
|
padding: 2.8rem 2rem;
|
|
}
|
|
|
|
|
|
/* Mobile preview */
|
|
.gh-post-preview-iframe {
|
|
transform: scale(0.8);
|
|
transform-origin: 0 0;
|
|
overflow-x: hidden;
|
|
width: 361px;
|
|
height: 786px;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.gh-post-preview-iframe .left-col {
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* Email preview */
|
|
.gh-post-preview-email-container {
|
|
position: relative;
|
|
height: calc(100vh - 135px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: var(--whitegrey-l1);
|
|
padding: 30px 30px 40px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.gh-post-preview-email-mockup {
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
max-width: 740px;
|
|
width: 100%;
|
|
padding: 0;
|
|
background: var(--white);
|
|
box-shadow:
|
|
0 0 0 1px rgba(0,0,0,0.02),
|
|
0 2.8px 2.2px rgba(0, 0, 0, 0.02),
|
|
0 6.7px 5.3px rgba(0, 0, 0, 0.028),
|
|
0 12.5px 10px rgba(0, 0, 0, 0.035),
|
|
0 22.3px 17.9px rgba(0, 0, 0, 0.042),
|
|
0 41.8px 33.4px rgba(0, 0, 0, 0.05),
|
|
0 100px 80px rgba(0, 0, 0, 0.07);
|
|
;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.gh-post-preview-email-container iframe {
|
|
border: none;
|
|
width: 100%;
|
|
height: calc(100% - 67px);
|
|
}
|
|
|
|
.gh-post-preview-email-input {
|
|
width: 100%;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.gh-post-preview-email-input {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.gh-post-preview-email-trigger,
|
|
.gh-post-preview-copy-url-trigger {
|
|
height: 38px;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.gh-post-preview-email-trigger span {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Social preview */
|
|
.gh-post-preview-social-container {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
padding: 3.2rem;
|
|
overflow-y: scroll;
|
|
background: var(--whitegrey-l1);
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
}
|
|
|
|
.social-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.gh-social-og-container {
|
|
width: 476px;
|
|
margin-right: 1.2rem;
|
|
border: 1px solid #e5e5e5;
|
|
background: #fff;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.gh-social-og-title {
|
|
color: #385898;
|
|
font-size: 14;
|
|
line-height: 1.38;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.gh-social-og-time {
|
|
color: #616770;
|
|
font-size: 12px;
|
|
line-height: 1.34;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.gh-social-og-desc {
|
|
display: inline-block;
|
|
height: 10px;
|
|
background: #E9EBEE;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.gh-social-og-preview {
|
|
background: #f2f3f5;
|
|
}
|
|
|
|
.gh-social-og-preview-image {
|
|
width: 100%;
|
|
height: 247px;
|
|
border-top: 1px solid #dddfe2;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.gh-social-og-preview-content {
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid #dddfe2;
|
|
}
|
|
|
|
.gh-social-og-preview-meta {
|
|
overflow: hidden;
|
|
color: #606770;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
text-transform: uppercase;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.gh-social-og-preview-title {
|
|
max-height: 110px;
|
|
overflow: hidden;
|
|
margin: 3px 0 0;
|
|
padding-top: 2px;
|
|
color: #1d2129;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
font-weight: 600;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.gh-social-og-preview-desc {
|
|
max-height: 20px;
|
|
overflow: hidden;
|
|
margin-top: 3px;
|
|
color: #4b4f56;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
word-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.gh-social-og-reactions {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 12px;
|
|
}
|
|
|
|
.gh-social-og-likes {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
color: #606770;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.gh-social-og-likes svg {
|
|
width: 20px;
|
|
height: auto;
|
|
}
|
|
|
|
.gh-social-og-comments {
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
color: #606770;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.gh-social-twitter-container {
|
|
width: 600px;
|
|
margin-left: 1.2rem;
|
|
border: 1px solid #ebeef0;
|
|
background: #fff;
|
|
}
|
|
|
|
.gh-social-twitter-post-preview {
|
|
overflow: hidden;
|
|
color: #292f33;
|
|
font-size: 1.4rem;
|
|
line-height: 1.3em;
|
|
border: 1px solid #c4cfd6;
|
|
background: #fff;
|
|
border-radius: 16px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.gh-social-twitter-preview-image {
|
|
width: 100%;
|
|
height: 265px;
|
|
border-bottom: solid 1px #c4cfd6;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.gh-social-twitter-preview-title {
|
|
max-width: 487px;
|
|
max-height: 1.3em;
|
|
overflow: hidden;
|
|
overflow-wrap: break-word;
|
|
margin: 0 0 0.15em;
|
|
color: #0f1419;
|
|
font-size: 15px;
|
|
line-height: 1.3125;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.gh-social-twitter-preview-desc {
|
|
max-height: 40px;
|
|
overflow: hidden;
|
|
overflow-wrap: break-word;
|
|
margin-top: 0.32333em;
|
|
color: #5b7083;
|
|
font-size: 15px;
|
|
line-height: 1.3125;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.gh-social-twitter-preview-meta {
|
|
display: flex;
|
|
overflow: hidden;
|
|
overflow-wrap: break-word;
|
|
margin-top: 2px;
|
|
color: #5b7083;
|
|
font-size: 15px;
|
|
line-height: 1.3125;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.gh-social-twitter-preview-meta svg {
|
|
width: 16px;
|
|
height: auto;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.gh-social-twitter-reactions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
flex-shrink: 0;
|
|
max-width: 425px;
|
|
margin-top: 10px;
|
|
color: #5b7083;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.gh-social-twitter-reactions svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-right: 12px;
|
|
fill: #5b7083;
|
|
}
|
|
|
|
.gh-seo-preview-container {
|
|
display: flex;
|
|
width: 100%;
|
|
max-width: 1108px;
|
|
padding: 20px 30px;
|
|
border: 1px solid var(--whitegrey);
|
|
font-family: Arial, sans-serif;
|
|
background: #fff;
|
|
}
|
|
|
|
.gh-seo-preview-container svg {
|
|
width: 92px;
|
|
height: 30px;
|
|
margin-right: 48px;
|
|
}
|
|
|
|
.gh-seo-preview {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 600px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.gh-seo-search-bar {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 28px;
|
|
margin-bottom: 48px;
|
|
background: var(--whitegrey-l1);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.gh-seo-search-bar svg {
|
|
width: 20px;
|
|
height: auto;
|
|
margin-right: 12px;
|
|
fill: #80868b;
|
|
}
|
|
|
|
.gh-seo-preview-link {
|
|
width: 340px;
|
|
overflow: hidden;
|
|
margin: 2px 0;
|
|
color: #202124;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.3;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.gh-seo-preview-title {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
margin-bottom: 3px;
|
|
padding-top: 4px;
|
|
color: #1a0dab;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 20px;
|
|
line-height: 1.3;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
word-wrap: break-word;
|
|
-webkit-text-overflow: ellipsis;
|
|
}
|
|
|
|
.gh-seo-preview-desc {
|
|
max-height: 45px;
|
|
overflow: hidden;
|
|
color: #4d5156;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.58;
|
|
font-weight: 400;
|
|
text-overflow: ellipsis;
|
|
} |