Ghost/ghost/admin/app
2022-10-17 15:44:18 +02:00
..
adapters 🐛 Fixed settings overriden when updated from multiple tabs (#15536) 2022-10-12 14:03:54 +01:00
authenticators
components Added feedback events to activity feed (#15639) 2022-10-17 15:44:18 +02:00
controllers Fixed PromiseObject related errors thrown from members activity list (#15641) 2022-10-17 15:28:34 +02:00
errors
helpers Added feedback events to activity feed (#15639) 2022-10-17 15:44:18 +02:00
initializers
mixins Updated ValidationEngine to support bare native class models (#15567) 2022-10-07 20:13:42 +01:00
models Added toggle to enable/disable audience feedback in admin (#15601) 2022-10-13 10:24:46 +04:00
modifiers
routes Refactored posts and pages controllers to Octane patterns 2022-10-07 18:39:34 +01:00
serializers 🐛 Fixed settings overriden when updated from multiple tabs (#15536) 2022-10-12 14:03:54 +01:00
services Added fix links in newsletter feature flag 2022-10-11 17:08:41 +02:00
session-stores
styles Fix newsletter links (#15621) 2022-10-14 18:09:42 +02:00
templates Added conversions count and separate analytics page (#15637) 2022-10-17 13:02:39 +02:00
transforms
transitions
utils Removed need for .get() with config service 2022-10-07 16:14:57 +01:00
validators Updated ValidationEngine to support bare native class models (#15567) 2022-10-07 20:13:42 +01:00
app.js
index.html Fixed loading animation for Safari 2022-10-17 10:11:07 +02:00
README.md
router.js Added Ghost Explore in Ghost as iframe app behind feature flag (#15495) 2022-10-07 14:32:54 +01:00
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!)