0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Correct broken Google webfont in editor

Fixes #4162
This commit is contained in:
John O'Nolan 2014-09-25 18:33:57 +03:00
parent 45824dfbac
commit 07f7c7f56f
3 changed files with 7 additions and 6 deletions

View file

@ -23,7 +23,7 @@ Ghost uses a number of third party services for specific functionality within Gh
### Google Fonts ### Google Fonts
Ghost makes use of the Open Sans and Inconsolata [Google Fonts](https://www.google.com/fonts). These are loaded into the Ghost admin area to provide a typographically stimulating experience. Ghost makes use of the Open Sans [Google Font](https://www.google.com/fonts), which is loaded into the Ghost admin area to provide a typographically stimulating experience.
### Gravatar ### Gravatar

View file

@ -39,7 +39,7 @@ $default-transition-duration: 0.3s;
$side-outlet-transition-duration: 0.4s; $side-outlet-transition-duration: 0.4s;
$font-family: 'Open Sans', sans-serif; $font-family: 'Open Sans', sans-serif;
$font-family-mono: Inconsolata, monospace; $font-family-mono: monospace;
$at2x: 2 device-pixel-ratio; $at2x: 2 device-pixel-ratio;

View file

@ -194,7 +194,7 @@
bottom: 0; bottom: 0;
font-family: $font-family-mono; font-family: $font-family-mono;
font-size: 1.4em; font-size: 1.4em;
line-height: 1.3em; line-height: 1.56em;
color: lighten($darkgrey, 10%); color: lighten($darkgrey, 10%);
.CodeMirror-focused, .CodeMirror-focused,
@ -326,8 +326,9 @@
// TODO: These should just be defaults, overridden by editor.hbs in theme dir // TODO: These should just be defaults, overridden by editor.hbs in theme dir
.entry-preview-content, .entry-preview-content,
.content-preview-content { .content-preview-content {
font-size: 1.4em; font-size: 1.8rem;
line-height: 1.5em; line-height: 1.5em;
font-weight: 200;
a { a {
color: $blue; color: $blue;