22 lines
713 B
JavaScript
22 lines
713 B
JavaScript
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See LICENSE.txt for license information.
|
||
|
|
||
|
function blockList(line) {
|
||
|
return line.startsWith('.focalboard-body') ||
|
||
|
line.startsWith('.GlobalHeaderComponent') ||
|
||
|
line.startsWith('.channel-header__icon .LogoIcon') ||
|
||
|
line.startsWith('.focalboard-plugin-root');
|
||
|
}
|
||
|
|
||
|
module.exports = function loader(source) {
|
||
|
var newSource = [];
|
||
|
source.split('\n').forEach((line) => {
|
||
|
if ((line.startsWith('.') || line.startsWith('#')) && !blockList(line)) {
|
||
|
newSource.push('.focalboard-body ' + line);
|
||
|
} else {
|
||
|
newSource.push(line);
|
||
|
}
|
||
|
});
|
||
|
return newSource.join('\n');
|
||
|
};
|