Skip to content

Instantly share code, notes, and snippets.

@10sr
Created January 19, 2010 11:24
Show Gist options
  • Save 10sr/280869 to your computer and use it in GitHub Desktop.
Save 10sr/280869 to your computer and use it in GitHub Desktop.
dashboardが軽くなるらしい
// ==UserScript==
// @name right angle tumblr
// @author
// @namespace 10sr.posterous.com
// @description
// @include http://www.tumblr.com/dashboard*
// ==/UserScript==
// from http://dara-j.tumblr.com/post/51012953/kakukaku-dsbd
(function(){
GM_addStyle(<><![CDATA[
ol#posts li.post,
#content_container,
#content_tab,
ol#posts li.post a.avatar,
ol#posts ol.notes li {
-moz-border-radius-bottomleft: 0px !important;
-moz-border-radius-bottomright: 0px !important;
-moz-border-radius-topleft: 0px !important;
-moz-border-radius-topright: 0px !important;
}
img#content_tab_left {
display: none !important;
}
#content_tab {
padding-left:40px;
padding-right:40px;
}
]]></>);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment