Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. function injectStyleSheet(cssText) {
  2. var $style = document.createElement('style');
  3. var css = document.createTextNode(cssText);
  4. var container = document.getElementsByTagName('head')[0];
  5. $style.type = 'text/css';
  6. if ($style.styleSheet) {
  7. $style.styleSheet.cssText = css.nodeValue;
  8. }
  9. else {
  10. $style.appendChild(css);
  11. }
  12. if (!container) {
  13. container = document.getElementsByTagName('html')[0];
  14. }
  15. container.appendChild($style);
  16. }
  17.  
  18. // workflowyを開いたときだけ
  19. if (/workflowy\.com/.test(location.host)) {
  20. // injectStyleSheet("ここにCSSを書き込む");
  21. injectStyleSheet(".contentUnderline{border-bottom: 2px #0000FF solid;text-decoration:none;}.contentBold{border-bottom:2px #f00 solid;}.contentItalic{background-color:#bf9;text-style:normal;}");
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement