Advertisement
Guest User

Feedly

a guest
Jan 17th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       Feedly Mockup
  3. // @version    0.1
  4. // @match      http://feedly.com/*
  5. // @copyright  2014+, You
  6. // ==/UserScript==
  7.  
  8. function addGlobalStyle(css) {
  9.     var head, style;
  10.     head = document.getElementsByTagName('head')[0];
  11.     if (!head) { return; }
  12.     style = document.createElement('style');
  13.     style.type = 'text/css';
  14.     style.innerHTML = css;
  15.     head.appendChild(style);
  16. }
  17.  
  18.  
  19. addGlobalStyle('#timeline { margin-bottom: 900px !important; }');
  20. addGlobalStyle('#bigMarkAllAsRead {margin: 0px 0px 0px -34px; border-top: 2px solid #999 !important; position: fixed; bottom: 0px !important; width: 927px !important; height: 50px !important; background: white;display:none; !important}');
  21. addGlobalStyle('#bigMarkAllAsReadButton {width: 60% !important; height:50px !important; background: #3498DB;border-radius:0px; font-size: large !important;padding-top: 7px !important;}');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement