blob: 4f6238aad522acea163013715b1dd8c85d650ce6 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
export default function injectCustomCss(css) {
const className = 'CssEditor-css';
const head = document.head || document.getElementsByTagName('head')[0];
let style = document.querySelector(`.${className}`);
if (!style) {
style = document.createElement('style');
style.className = className;
style.type = 'text/css';
}
if (style.styleSheet) {
style.styleSheet.cssText = css;
} else {
style.innerHTML = css;
}
/**
* Ensures that the style applied is always the last.
*
* from: https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild
* The Node.appendChild() method adds a node to the end of the list of children
* of a specified parent node. If the given child is a reference to an existing
* node in the document, appendChild() moves it from its current position to the
* new position (there is no requirement to remove the node from its parent node
* before appending it to some other node).
*/
head.appendChild(style);
}