mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
ca9a23f2d6
Closes #2276 - Adds the images to `core/client/assets/img` - Adds css with ember hacks to `core/client/assets/css` - Configures middleware to provide assets as static files at url `/ghost/ember` - Adds ember option to assets helper - Modifies default-ember.hbs to use ember option on asset helper - Remove inline style definition in editor.hbs - Modifies .gitignore to include ember-hacks.css (in ignored `core/client/assets/css` folder)
20 lines
No EOL
390 B
CSS
20 lines
No EOL
390 B
CSS
/*
|
|
Cosmetic changes to ghost styles, that help during development.
|
|
The contents should be solved properly or moved into ghost-ui package.
|
|
*/
|
|
|
|
.post-settings-menu {
|
|
display: none !important;
|
|
}
|
|
|
|
#entry-markdown,
|
|
.entry-preview,
|
|
.CodeMirror.cm-s-default {
|
|
height: 500px !important;
|
|
}
|
|
|
|
.editor input {
|
|
-webkit-transition: none;
|
|
-moz-transition: none;
|
|
transition: none;
|
|
} |