Advertisement
Guest User

Untitled

a guest
Mar 16th, 2015
848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Hide Trello Activity
  3. // @namespace https://trello.com/c/Ug6lhTdJ/996-clean-up-activity-feed
  4. // @description Hide activity in trello
  5. // @include http://trello.com/*
  6. // @include https://trello.com/*
  7. // @run-at document-end
  8. // @version 1
  9. // @author Mark Kenny
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. var style = document.createElement('style');
  14. style.setAttribute('type', 'text/css');
  15. style.appendChild(document.createTextNode('.phenom-other { display: none; }'));
  16. style.appendChild(document.createTextNode('.window-module-title-no-divider { display: none; }'));
  17. style.appendChild(document.createTextNode('.card-detail-badge { display: none; }'));
  18. style.appendChild(document.createTextNode('.card-detail-item-header { display: none; }'));
  19. style.appendChild(document.createTextNode('.quiet-button-icon { display: none; }'));
  20. style.appendChild(document.createTextNode('.quiet-button mod-with-image hide-on-edit js-edit-desc js-hide-with-desc { left: -40px; position: relative; top: -1px;}'));
  21. style.appendChild(document.createTextNode('.quiet-button.mod-with-image { left: -60px; position: relative; }'));
  22. style.appendChild(document.createTextNode('.card-detail-item { margin: -14px 28px 16px 0px; }'));
  23. style.appendChild(document.createTextNode('.current.markeddown.hide-on-edit.js-card-desc.js-show-with-desc { padding-top: 7px; }'));
  24. style.appendChild(document.createTextNode('.card-detail-item-header-edit { position: relative; left: -33px; }'));
  25. style.appendChild(document.createTextNode('.current.markeddown.hide-on-edit.js-card-desc.js-show-with-desc { position: relative; left: -33px; padding-top: 10px; }'));
  26. document.head.appendChild(style);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement