Ghost/ghost/admin/app
Aileen Nowak 37383fde90 Moved Milestone emails to GA
- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA Moved Milestone emails to GA

- Moves Milestone emails from public beta to GA
2023-03-23 17:35:23 +00:00
..
adapters
authenticators
components Allowed version build info to be shown in Admin 2023-03-23 16:31:43 +01:00
controllers Added user notification toggle for Milestone emails 2023-03-21 15:41:32 +02:00
decorators
errors
helpers
initializers
instance-initializers
mixins
models Added user notification toggle for Milestone emails 2023-03-21 15:41:32 +02:00
modifiers
routes 🐛 Fixed broken editor breadcrumbs when opening a new post from analytics (#16463) 2023-03-22 00:12:15 -07:00
serializers
services Moved Milestone emails to GA 2023-03-23 17:35:23 +00:00
session-stores
styles Added latest posts UI to newsletter preview 2023-03-22 11:06:08 +01:00
templates Moved Milestone emails to GA 2023-03-23 17:35:23 +00:00
transforms
transitions
utils
validators
app.js
index.html Fixed loading animation for Safari 2022-10-17 10:11:07 +02:00
README.md
router.js
transitions.js

Ghost Admin App

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.

CSS

We use pure CSS, which is pre-processed for backwards compatibility by Myth. 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:

  • 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)

All of these separate files are subsequently imported and compiled in app.css.

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 over-nesting CSS. Never nest more than 3 levels deep.
  • Use comments to explain "why" not "what" (Good: This requires a z-index in order to appear above mobile navigation. Bad: This is a thing which is always on top!)