mirror of
https://github.com/flarum/framework.git
synced 2024-11-30 13:36:10 +08:00
c2feae406d
- Allow dropdown-buttons to render a partial
27 lines
980 B
Plaintext
27 lines
980 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}modals.less";
|
|
@import "@{flarum-base}layout.less";
|
|
@import "@{flarum-base}composer.less";
|
|
|
|
@import "@{flarum-base}index.less";
|
|
@import "@{flarum-base}discussion.less";
|
|
@import "@{flarum-base}login.less"; |