mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:01:11 +08:00
5b02aad9c1
* DEV: Use custom tags rather than handlebars server side These will be skipped if they are ever rendered in a document. The handlebars really messes stuff up. * DEV: Build our own locale file for testing purposes We can't practically proxy everything in test mode, but we can approximate the logic and build our own locale file for testing purposes that works quite well. This allows us to run tests without a proxy. * DEV: Support for testem runner for ember cli tests
21 lines
477 B
SCSS
21 lines
477 B
SCSS
// styles for Ember CLI testem environment
|
|
|
|
:root {
|
|
--font-family: "Arial";
|
|
}
|
|
|
|
$primary: #222222 !default;
|
|
$secondary: #ffffff !default;
|
|
$tertiary: #0088cc !default;
|
|
$quaternary: #e45735 !default;
|
|
$header_background: #ffffff !default;
|
|
$header_primary: #333333 !default;
|
|
$highlight: #ffff4d !default;
|
|
$danger: #e45735 !default;
|
|
$success: #009900 !default;
|
|
$love: #fa6c8d !default;
|
|
|
|
@import "common/foundation/variables";
|
|
@import "common/foundation/mixins";
|
|
@import "desktop";
|