framework/ember/app/styles/bootstrap/bootstrap.less
Toby Zerner c28307903b Upgrade to Ember 1.11-beta.1
HTMLBars goodness! Since there was some breakage and a lot of fiddling
around to get some things working, I took this opportunity to do a big
cleanup of the whole Ember app. I accidentally worked on some new
features too :3

Note that the app is still broken right now, pending on
https://github.com/emberjs/ember.js/issues/10401

Cleanup:
- Restructuring of components
- Consolidation of some stuff into mixins, cleanup of some APIs that
will be public
- Change all instances of .property() / .observes() / .on() to
Ember.computed() / Ember.observer() / Ember.on() respectively (I think
it is more readable)
- More comments
- Start conforming to a code style (2 spaces for indentation)

New features:
- Post hiding/restoring
- Mark individual discussions as read by clicking
- Clicking on a read discussion jumps to the end
- Mark all discussions as read
- Progressively mark the discussion as read as the page is scrolled
- Unordered list post formatting
- Post permalink popup

Demo once that Ember regression is fixed!
2015-02-10 18:05:40 +10:30

51 lines
1.8 KiB
Plaintext

// Core variables and mixins
@import "@{bootstrap-base}variables.less";
@import "variables.less";
@import "@{bootstrap-base}mixins.less";
// Reset
@import "@{bootstrap-base}normalize.less";
@import "@{bootstrap-base}print.less";
// Core CSS
@import "@{bootstrap-base}scaffolding.less";
@import "@{bootstrap-base}type.less";
@import "@{bootstrap-base}code.less";
@import "@{bootstrap-base}grid.less";
// @import "@{bootstrap-base}tables.less";
@import "@{bootstrap-base}forms.less";
@import "@{bootstrap-base}buttons.less";
// Components
@import "@{bootstrap-base}component-animations.less";
// @import "@{bootstrap-base}glyphicons.less";
@import "@{bootstrap-base}dropdowns.less";
@import "@{bootstrap-base}button-groups.less";
@import "@{bootstrap-base}input-groups.less";
// @import "@{bootstrap-base}navs.less";
// @import "@{bootstrap-base}navbar.less";
// @import "@{bootstrap-base}breadcrumbs.less";
// @import "@{bootstrap-base}pagination.less";
// @import "@{bootstrap-base}pager.less";
// @import "@{bootstrap-base}labels.less";
// @import "@{bootstrap-base}badges.less";
// @import "@{bootstrap-base}jumbotron.less";
// @import "@{bootstrap-base}thumbnails.less";
// @import "@{bootstrap-base}alerts.less";
// @import "@{bootstrap-base}progress-bars.less";
// @import "@{bootstrap-base}media.less";
// @import "@{bootstrap-base}list-group.less";
// @import "@{bootstrap-base}panels.less";
// @import "@{bootstrap-base}wells.less";
// @import "@{bootstrap-base}close.less";
// Components w/ JavaScript
@import "@{bootstrap-base}modals.less";
@import "@{bootstrap-base}tooltip.less";
// @import "@{bootstrap-base}popovers.less";
// @import "@{bootstrap-base}carousel.less";
// Utility classes
@import "@{bootstrap-base}utilities.less";
@import "@{bootstrap-base}responsive-utilities.less";