mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
782f43cc55
Previously if a specific plugin route was not available (e.g. there was an error loading the plugin's JS due to an ad blocker), the entire page would fail to load. This commit updates the behavior to catch this kind of issue and display a user-friendly message at the top of the screen.
28 lines
600 B
SCSS
28 lines
600 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";
|
|
@import "color_definitions";
|
|
@import "admin";
|
|
|
|
#ember-testing-container {
|
|
box-sizing: border-box;
|
|
max-height: 100vh;
|
|
}
|