Compare commits

...

3 Commits

Author SHA1 Message Date
b28258d0c8 v5.2.3 2022-08-02 14:23:57 +08:00
f3c0526ea5 Increase the width of header on author and tag page
The width used to be equal to one post card width and it wasn't enough for longer author name and description.
2022-07-28 12:37:32 +08:00
129a578751 Fix author profile social link hover color on dark mode 2022-07-28 12:35:23 +08:00
4 changed files with 24 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1636,6 +1636,13 @@ iframe.instagram-media + script + :not([id]) {
height: 16px;
}
@media (min-width: 1001px) {
.author-template .post-card-large .post-card-content {
grid-column: span 2;
max-width: 640px;
}
}
/* 8. Tag Template
/* ---------------------------------------------------------- */
@ -1649,6 +1656,12 @@ iframe.instagram-media + script + :not([id]) {
order: 1;
}
@media (min-width: 1001px) {
.tag-template .post-card-large .post-card-content {
grid-column: span 2;
max-width: 640px;
}
}
/* 9. Error Template
/* ---------------------------------------------------------- */
@ -1861,6 +1874,10 @@ html.dark-mode .author-profile-location {
color: #fff;
}
html.dark-mode .author-profile-social-link:hover {
color: #fff;
}
html.dark-mode .article-title {
color: #fff;
}
@ -2037,6 +2054,10 @@ html.dark-mode .footer-cta-title {
color: #fff;
}
html.auto-color .author-profile-social-link:hover {
color: #fff;
}
html.auto-color .article-title {
color: #fff;
}

View File

@ -2,7 +2,7 @@
"name": "casper",
"description": "A clean, minimal default theme for the Ghost publishing platform",
"demo": "https://demo.ghost.io",
"version": "5.2.2",
"version": "5.2.3",
"engines": {
"ghost": ">=5.0.0"
},