mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
64918c35f5
- Moves the import of plugins for both mobile and desktop from common after discourse loading, allowing plugins to overwrite - Make desktop-option behave like the mobile-option: SCSS/CSS marked with that option will only be loaded for desktop from now on and ignored in mobile - Add variables-keyword, allowing plugins to ship and overwrite variables before they get imported by discourse (great for theming)
11 lines
352 B
SCSS
11 lines
352 B
SCSS
@import "vendor/normalize";
|
|
@import "common/foundation/base";
|
|
@import "vendor/font_awesome/font-awesome";
|
|
@import "vendor/chosen";
|
|
@import "common/foundation/helpers";
|
|
@import "common/foundation/mixins";
|
|
@import "common/foundation/variables";
|
|
@import "common/components/*";
|
|
@import "common/admin/*";
|
|
@import "common/input_tip";
|
|
@import "common/base/*"; |