1e6e807f94
Merge pull request #163 from janoskk/gist_fix
...
Fix gist line numbering issue #162
2015-01-22 11:17:34 -08:00
9cf7aea47c
Merge pull request #141 from rglyall/master
...
Add conditional around 'bio' in author.hbs
2015-01-22 08:51:14 -08:00
6db90c9fec
Fix gist line numbering issue #162
2015-01-22 11:49:02 +01:00
bc7b44f01b
Merge pull request #159 from crepererum/css_warnings
...
Fix multiple CSS problems, mostly reported by Firefox
2015-01-15 07:33:45 -08:00
db4979d32d
Fix multiple CSS problems, mostly reported by Firefox
...
- typo: `*zoom: ...;` should be `zoom: ...;`
- outdated prefix: `white-space: -moz-pre-wrap;` is [not required as of Firefox 3.0](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space )
- outdated prefix: `-moz-border-radius: ...;` is [not required as of Firefox 4.0](https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius )
- outdated prefix: `-webkit-border-radius: ...;` is [not required as of Chrome 4.0 and Safari 5.0](https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius )
- outdated prefix: for `background` `-moz-radial-gradient`, `-webkit-radial-gradient` and `-webkit-gradient` is [not required as of Firefox 16, Chrome 26 and Safari 6.1](http://www.w3schools.com/Css/css3_gradients.asp )
- wrong attribute: `word-break: break-word;` should be `word-wrap: break-word;` (this makes sense because `hyphens: auto;` is set)
- missing prefix: add `-moz-hyphens: auto;`, `-ms-hyphens: auto;` and `-webkit-hyphens: auto;` to `hyphens: auto;` (other browser [do not support `auto` mode](http://caniuse.com/#feat=css-hyphens ))
2015-01-15 14:38:24 +01:00
dd4ca42280
Version bump to 1.1.5
2015-01-12 17:20:31 +00:00
3bdd10a37a
Merge pull request #155 from razzius/master
...
Fix indentation in footer
2015-01-05 07:34:08 +02:00
56c766303f
Fix indentation
2015-01-04 19:57:11 -06:00
bf37631aa2
Update copyright
2015-01-02 16:12:55 +02:00
82253b06f2
Derp
2014-12-23 14:21:53 +02:00
969a20ef6d
Add tag mgmt support to Casper
2014-12-23 13:50:59 +02:00
dbaaf955af
Version bump to 1.1.3
2014-12-04 15:32:09 +00:00
de94edc8a8
Merge pull request #149 from conradkleinespel/master
...
Support for Pastebin embeds
2014-11-29 11:12:20 +01:00
1292f2e22b
support for pastebin
2014-11-29 00:09:46 +01:00
933ebb86ca
Version bump to 1.1.2
2014-11-17 17:24:50 +00:00
cb1196630b
Merge pull request #147 from novaugust/page-fix
...
Move page #post helper to encapsulate image references
2014-11-11 07:34:45 +01:00
bcdbdab861
Move page #post helper to encapsulate image references
...
Ref #143
- Fixes header images for static pages
2014-11-10 22:02:52 -07:00
9a1988aa6d
Merge pull request #143 from cubb/master
...
Fixes to visual bugs on static pages
2014-10-29 18:31:04 +01:00
e2911f2d46
Changed button background fix to match post.hbs
...
As per JohnONolan’s suggestion, I have edited the nav to match the code
in post.hbs: https://github.com/TryGhost/Casper/blob/master/post.hbs#L9
2014-10-29 10:14:00 -07:00
df09b7c375
Fixed bottom margin on static page post-title h1
...
Static pages were previously missing a margin on the bottom of the
post-title h1. By adding <header> with a post-header class around the
h1, we gain the exact same bottom margin as seen on post (non-static)
pages.
2014-10-29 09:24:31 -07:00
09d827249f
Removed button backgrounds on static pages
...
The home and subscribe buttons had backgrounds on static pages, but not
post pages. The backgrounds are now removed from these buttons on
static pages.
2014-10-29 09:17:57 -07:00
ff591092e2
Add conditional around 'bio' in author.hbs
2014-10-21 16:10:20 +01:00
e264f609de
Version bump to 1.1.1
2014-10-18 21:43:45 +02:00
12ad5f5404
Merge pull request #136 from novaugust/master
...
Remove old reference to medium desktop media queries from ToC
2014-09-29 09:09:01 +02:00
ba798581ec
Remove old reference to medium desktop media queries from ToC
2014-09-28 14:19:58 -06:00
8bf2b72e69
Remove MS specific font feature styling
2014-09-25 19:28:43 +03:00
5968231807
Fix IE font feature rendering
...
See #124 (again)
2014-09-25 19:23:25 +03:00
e07d0d8775
Post image support
2014-09-25 17:35:06 +03:00
63535cf5ce
1.1.0
2014-09-25 16:42:27 +03:00
75c81be9c3
Typography overhaul
2014-09-25 16:41:04 +03:00
144be310a0
Merge pull request #132 from jeremija/image-width-fix
...
Fixed bug where image width changes on refresh
2014-09-15 20:57:47 +01:00
a149b03a2f
Fixes variable image width bug
...
closes #95
- added onload event listeners to images
2014-09-15 21:51:59 +02:00
72ba094f2f
Merge pull request #130 from jillesme/master
...
Optimize index.js and add style consistency
2014-09-15 18:46:46 +01:00
2cf5c0cb87
Optimize index.js and add style consistency
...
Declared all jQuery objects once where needed instead of diving into the DOM multiple times for the same object.
Added style consistency between variable declarations, if/else statements and functions.
2014-09-07 23:34:40 +02:00
e669b29895
Merge pull request #129 from Douten/patch-1
...
Fix bouncing scroll-down arrow bug in webkit
2014-09-03 13:13:01 +01:00
bcce1e9a08
Fix bouncing scroll-down arrow bug in webkit
...
Webkit transform currently requires a vendor prefix. Without it, the arrow bounces and rotate to the original un-rotated state. See https://www.dropbox.com/s/46sjiihtjya42s8/wk-rotate.mov
2014-09-03 01:16:53 -04:00
f55a5a202f
Version bump to 1.0.1
2014-08-26 21:07:46 +01:00
5d0db596f8
Merge pull request #125 from designbyjake/master
...
Swap Noto Serif to PT Serif
2014-08-25 14:36:59 +02:00
eb860f0755
Merge pull request #127 from PaulAdamDavis/emoji-icon-fix
...
Rename icon assets & references
2014-08-19 18:04:45 +02:00
094c09ade4
Rename icon assets & references
...
Closes #120
- Renames icon fonts and unicode references
This uses the same basic theory behind 8b25a3d07c
which has been proven to work
2014-08-19 16:22:55 +01:00
c7554d995b
Swap Noto Serif to PT Serif
2014-08-17 16:01:47 +01:00
3950251944
Merge pull request #119 from rossta/post_hbs_typo
...
Fix link tag typo
2014-08-13 09:21:49 +02:00
1d494fddd1
fix link tag typo
2014-08-12 22:14:54 -04:00
15d2aa09f4
Merge pull request #118 from PaulAdamDavis/nowrap-fix
...
Add nowrap to date & rss button
2014-08-12 13:13:35 +02:00
869a4e25f9
Add nowrap to date & rss button
...
Closes #117 , Closes https://github.com/TryGhost/Ghost/issues/3755
- Adds white-space: nowrap; to prevent strings wrapping and breaking onto multiple lines
2014-08-12 09:54:43 +01:00
ad2ffd878c
Adding download instructions to readme
2014-08-11 08:16:40 +01:00
5da18ddb3b
Fix bug where footer text would wrap to a new line
2014-08-07 16:16:51 +03:00
8fd21ea939
Merge pull request #113 from ErisDS/helper-updates
...
Updating Casper's use of title and author helpers
2014-08-05 23:43:08 +02:00
ba881b059f
Updating Casper's use of title and author helpers
...
Related to TryGhost/Ghost#3599 and TryGhost/Ghost#3389
- The title helper no longer needs triple-stashes to be safe
- The #author can now be used as a context block again
2014-08-05 20:49:37 +01:00
b84309f482
Stop text from wrapping to a new line with icon
...
Fixes #112
2014-08-04 12:49:41 +03:00