Compare commits

..

5 Commits
2.0.3 ... 2.0.4

Author SHA1 Message Date
Kevin Ansfield
2f385ba5f1 Upgrading Casper to 2.0.4 2017-08-15 18:01:02 +01:00
John O'Nolan
b024b544e4 Fixed janky webkit border-radius bug
Closes https://github.com/TryGhost/Casper/issues/352
2017-08-14 11:22:27 +01:00
John O'Nolan
9caeb2a2e7 Fixed wide blockquote bug when used first in post
Closes https://github.com/TryGhost/Casper/issues/355
2017-08-14 11:11:12 +01:00
John O'Nolan
12d139aa7d Fixed z-index bug on index post-feed
Closes https://github.com/TryGhost/Casper/issues/349, closes https://github.com/TryGhost/Casper/pull/350
2017-08-14 11:03:28 +01:00
Hannah Wolfe
690e1bad1f Added issue template 2017-08-12 13:17:42 -04:00
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"
},