Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           Ello - Cleanup Notifications
  3. // @description    Removes icons in notifications, scales it to fill the whole panel
  4. // @include        https://ello.co/*
  5. // @version        1.0
  6. // ==/UserScript==
  7.  
  8. GM_addStyle( '.notification__avatar { display:none; }' );
  9. GM_addStyle( '.notification__icon { display:none; }' );
  10. GM_addStyle( '.notification--with-post .notification__body { width:100%; max-width:100%; margin:0px;}' );
  11. GM_addStyle( '.notification__body { width:100%; max-width:100%; margin:0px;}' );
  12. GM_addStyle( '.js-friend-count { top: 1rem; position: relative; right: -1rem;}' );
  13. GM_addStyle( '.js-noise-count { top: 1rem; position: relative; right: -1rem;}' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement