Compare commits

...

4 Commits
2.0.5 ... 2.0.6

Author SHA1 Message Date
a7d5c885bd Upgrading Casper to 2.0.6 2017-08-22 12:38:02 +01:00
9bc5c92628 Fix z-index bug with header author profile image
no issue
- add z-index to `.site-header-content .author-profile-image` so it isn't covered by the header overlay
2017-08-22 12:05:09 +01:00
0f3651c23f 🎨 Do not stretch author profile image (#365)
- add `object-fit: cover` to `.author-profile-image` to prevent non-square images being stretched/squashed
2017-08-22 11:56:38 +01:00
d739bb52a4 Fixed z-index bug with header social links on author page (#370)
no issue
- add z-index to `.author-bio` and `.author-meta` so they aren't covered by the header image overlay
2017-08-22 11:49:49 +01:00
4 changed files with 7 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

@ -459,6 +459,7 @@ The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px o
height: 25px;
margin-right: 5px;
border-radius: 100%;
object-fit: cover;
}
.post-card-author {
@ -1524,10 +1525,12 @@ Usage (In Ghost editor):
height: 100px;
margin: 0 0 20px 0;
box-shadow: rgba(255,255,255,0.1) 0 0 0 6px;
z-index: 10;
}
.site-header-content .author-bio {
flex-shrink: 0;
z-index: 10;
max-width: 600px;
margin: 5px 0 10px 0;
font-size: 2rem;
@ -1539,6 +1542,7 @@ Usage (In Ghost editor):
.site-header-content .author-meta {
flex-shrink: 0;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;

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.5",
"version": "2.0.6",
"engines": {
"ghost": ">=1.2.0"
},