mirror of
https://github.com/zulip/zulip.git
synced 2025-10-31 20:13:46 +00:00
This adds custom CSS through JavaScript for things that do not scope well and will override other inherited styles. This should ONLY be used for problematic CSS that has no obvious or easy CSS-only solution. (Specifically, we need this for the "default link" styling, which is hard to override because we don't want to start winning ties due to specificity that we would not have won in the light theme).
13 lines
444 B
JavaScript
13 lines
444 B
JavaScript
// This file is being eliminated as part of the general purge of
|
|
// global variables from Zulip (everything is being moved into
|
|
// modules). Please don't add things here.
|
|
|
|
var home_msg_list = new message_list.MessageList('zhome',
|
|
new Filter([{operator: "in", operand: "home"}]), {muting_enabled: true}
|
|
);
|
|
var current_msg_list = home_msg_list;
|
|
|
|
if (typeof module !== 'undefined') {
|
|
module.exports.current_msg_list = current_msg_list;
|
|
}
|