Ghost/core/client
Jason Williams 994dee16d4 Merge pull request #4635 from ikhattab/fix-autosave-whitespace-title
Autosave for whitespace-only titles
2014-12-12 10:19:07 -06:00
..
adapters
assets Merge pull request #4632 from PaulAdamDavis/modal-colour-spacing 2014-12-12 09:49:05 -06:00
components Merge pull request #4613 from felixrieseberg/iss4506-2 2014-12-12 10:46:58 +00:00
controllers Merge pull request #4613 from felixrieseberg/iss4506-2 2014-12-12 10:46:58 +00:00
docs
helpers
html
initializers
mixins Autosave for whitespace-only titles 2014-12-12 16:44:24 +02:00
models Merge pull request #4613 from felixrieseberg/iss4506-2 2014-12-12 10:46:58 +00:00
routes
serializers
templates Merge pull request #4613 from felixrieseberg/iss4506-2 2014-12-12 10:46:58 +00:00
transforms Changed ember models to use moment for dates 2014-06-05 10:30:28 -06:00
utils
validators Add Tag Meta View 2014-12-10 18:12:30 +00:00
views Tag Cover Images 2014-12-10 17:48:18 -08:00
_config.yml
.jshintrc
app.js
config-dev.js
config-prod.js
loader.js
README.md
router.js

Ghost Admin Client

Ember.js application used as a client-side admin for the Ghost blogging platform. This readme is a work in progress guide aimed at explaining the specific nuances of the Ghost Ember app to contributors whose main focus is on this side of things.

Architecture

ToDo: Explain the basic Ember app structure.

client/
├── assets/
│   ├── ghost.css
│   └── ghost.min.css
├── things/
│   ├── things.js
│   └── things.min.js
└── things/
    ├── things.js
    └── things.js

SASS

All CSS is written in SASS and compiled using grunt. We do not follow any strict CSS framework, however our general style is pretty similar to BEM.

Styles are primarily broken up into 4 main categories:

  • Helpers - are pure-sass files. Variables/mixins/things which are generally never compiled to actual CSS, and are simply used to aid development.
  • Patterns - are base level visual styles for HTML elements (eg. Buttons)
  • Components - are groups of patterns used to create a UI component (eg. Modals)
  • Layouts - are groups of components used to create application screens (eg. Settings)
  • Lib - is where we store styles for 3rd party components.

All of these separate files are subsequently imported and compiled in screen.scss.

Front End Standards

  • 4 spaces for HTML & CSS indentation. Never tabs.
  • Double quotes only, never single quotes.
  • Use tags and elements appropriate for an HTML5 doctype (including self-closing tags)
  • Adhere to the Recess CSS property order.
  • Always a space after a property's colon (.e.g, display: block; and not display:block;).
  • End all lines with a semi-colon.
  • For multiple, comma-separated selectors, place each selector on its own line.
  • Use js- prefixed classes for JavaScript hooks into the DOM, and never use these in CSS as per Slightly Obtrusive JavaSript
  • Avoid SASS over-nesting. Never nest more than 3 levels deep.
  • Use comments to explain "why" not "what" (Eg. This requires a z-index in order to appear above mobile navigation. Not: This is a thing which is always on top!)