mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 14:55:06 +00:00
This PR: - Removes components from being displayed in the card - Adds a DMenu to house previous footer actions - Allows themes to be updated from this grid, with an animation and different border to show the update is happening - Stops position of cards changing when default changes - Fixes outline colour not changing when default changes - Show a global notice on the page when previewing a theme - Allows updating a theme from the grid, and showing an indicator of what theme needs to be updated - Moves "Set as default" to the dropdown for the theme - Show screenshot for theme if it is available - Prevent page reloading when updating the theme - Fixes theme install modal on grid page - Temporarily remove sorting of default theme to the top
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
import { service } from "@ember/service";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default class AdminConfigLookAndFeelRoute extends DiscourseRoute {
|
|
@service router;
|
|
|
|
titleToken() {
|
|
return I18n.t("admin.config_areas.look_and_feel.title");
|
|
}
|
|
}
|