framework/ember/app/styles/app.less
Toby Zerner 74e80ea2df Implement redesign, refactor everything
- Write CSS for everything, update templates.
- Refactor discussion view. Stream is split into two components
(content and scrubber) which have their own responsibilities.
- Extract pane functionality into a mixin.
- Implement global “back button” system. You give a “paneable” target
to the application controller, the back button will modulate its
pane-related properties as necessary, and call an action when the
button is clicked.
- Extract welcome-hero into its own component.
- Lots of other general improvements/refactoring. The code is quite
well-commented so take a look!
2015-01-16 17:26:18 +10:30

24 lines
868 B
Plaintext

// This files is where our LESS journey begins.
// We begin by importing our own configuration variables, which are used all
// throughout the stylesheets. These pertain to
// @import "config-default.less";
@import "config.less";
@flarum-base: "flarum/";
@bootstrap-base: "../../bower_components/bootstrap/less/";
@font-awesome-base: "../../bower_components/font-awesome/less/";
@import "bootstrap/bootstrap.less";
// We want to specify the @fa-font-path variable AFTER we import font awesome
// so that it overrides the default definition.
@import "@{font-awesome-base}font-awesome.less";
@fa-font-path: "../font-awesome/fonts";
// Finally, with our vendor CSS loaded, we can import Flarum-specific stuff.
@import "@{flarum-base}components.less";
@import "@{flarum-base}layout.less";
@import "@{flarum-base}index.less";
@import "@{flarum-base}discussion.less";