Compare commits

...

5 Commits
2.0.3 ... 2.0.4

5 changed files with 30 additions and 4 deletions

19
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,19 @@
Do you need help or have a question? Please come chat in Slack: https://ghost.org/slack 👫.
If you're filing a bug 🐛, please include the following information:
### Screenshot
![]()
### Steps to Reproduce
1. This is the first step
2. This may be the post content used to cause an issue...
### Technical details
* Casper Version:
* Ghost Version:
* Browser Version:
* OS Version:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -358,6 +358,10 @@ The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px o
/* 6. Post Feed
/* ---------------------------------------------------------- */
.site-main {
z-index: 100;
}
.post-feed {
position: relative;
display: flex;
@ -388,6 +392,9 @@ The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px o
.post-card-image-link {
position: relative;
display: block;
overflow: hidden;
border-radius: 5px 5px 0 0;
}
.post-card-image {
@ -759,7 +766,7 @@ Usage (In Ghost editor):
}
@media (min-width: 1000px) {
.post-full-content blockquote {
.post-full-content blockquote:not(:first-of-type) {
width: 100vw;
max-width: 1060px;
}

View File

@ -2,7 +2,7 @@
"name": "casper",
"description": "The default personal blogging theme for Ghost. Beautiful, minimal and responsive.",
"demo": "https://demo.ghost.io",
"version": "2.0.3",
"version": "2.0.4",
"engines": {
"ghost": ">=1.2.0"
},