// ==UserScript== // @name Tumblr dashboard: Steve Rogers // @namespace http://userstyles.org // @description . // @author caffreyss // @homepage http://userstyles.org/styles/65146 // @include http://www.tumblr.com/* // @run-at document-start // ==/UserScript== (function() { var css = "body {background: url('http://img208.imageshack.us/img208/8484/stever.png') bottom left #000000 no-repeat fixed !important;}\n\n#content{background-color:transparent!important;}\n\n\n*{text-shadow:none !important; color:#3f3f3f !important;}\n\n\nol#posts li.notification{background-color: #f9f9f9 !important; border-bottom: 2px solid #9d92a5 !important; color: #f9f9f9 !important;}\n\n\n#right_column a#dashboard_switch_blog_menu_current:hover {background:#f9f9f9;}\n\n\n#nav .nav_item.active{background-color:#f9f9f9}\n\n\n#left_column #posts .post .permalink{background-color:#f9f9f9;}\n\n\n#dashboard_switch_blog_menu_current,\n\n\n#dashboard_switch_blog_arrow_and_divider,\n\n\n#dashboard_switch_blog_arrow_current\n\n\n{background-image:none !important}\n\n\n.selection_nipple.white, .selection_nipple:not([class=\"selection_nipple white\"]) { \n\n\n background: none !important;\n\n\n width: 0px !important;\n\n\n height: 0px !important;\n\n\n margin-top: 0px !important;\n\n\n border-bottom: solid 11px white !important;\n\n\n border-right: 11px solid transparent !important;\n\n\n border-left: 11px solid transparent !important; }\n\n\n\n.selection_nipple:not([class=\"selection_nipple white\"]) {\n\n\n\n border-bottom: solid 11px #f9f9f9 !important;}\n\n\n\n.notification_type_icon{display:none !important}\n\n\n\n.selected .following,\n\n\n\n.selected .followers,\n\n\n\n.selected .settings,\n\n\n\n.selected .posts,\n\n\n\n.selected .messages,\n\n\n\n.selected .drafts,\n\n\n\n.selected .queue, \n\n\n\n.selected .likes {\n\n\n\n color: #A099A1 !important; \n\n\n\n background: #e9e9e9 !important;}\n\n\n\na.explore_more_tags,\n\n\n\na.add_and_remove,\n\n\n\na.customize,\n\n\n\na.mass_editor\n\n\n\n {background-color:#e9e9e9 !important; \n\n\n\n background-image:none !important;\n\n\n\n border:0px !important}\n\n\n\ndiv.gradient,\n\n\n\ndiv.dashboard_nav_item, \n\n\n\na.permalink\n\n\n\n {background-color:#e9e9e9 !important;\n\n\n\n opacity:.9; \n\n\n\n background-image:none !important;\n\n\n\n border:0px !important}\n\n\n\n.content.is_media, \n\n\n\n.mask.top, \n\n\n\n.mask.bottom {\n\n\n\n background: none !important; }\n\n\n\n.post.photo_post .photo, \n\n\n\n.post.photo_post .video_thumbnail {\n\n\n\n border-radius: 16px !important;}\n\n\n\n.post.photo_post .photo, \n\n\n\n.post.photo_post .video_thumbnail \n\n\n\n {-moz-box-shadow: 1px 1px 3px #000000 !important;}\n\n\n\n#auto_pagination_loader\n\n\n\n {background: #A099A1 !important;}\n\n\n\ndiv.return_to_top_icon{ background: none !important;\n\n\n\n width: 0px !important;\n\n\n\n height: 0px !important;\n\n\n\n margin-top: 0px !important;\n\n\n\n border-bottom: solid 30px white !important;\n\n\n\n border-right: 15px solid transparent !important;\n\n\n\n border-left: 15px solid transparent !important;}\n\n\n\n#left_column #posts .notification {\n\n\n\nbackground-color:#f9f9f9 !important;\n\n\n\ncolor:#666 !important;\n\n\n\nborder-bottom-color: #eee !important}\n\n\n\n\n\n\n\n\n#new_post_notice_container{\n\n\n\ncolor:#fff !important}\n\n\n\n#new_post_notice_container a{\n\n\n\ncolor:#fff !important}\n\n\n\n\n.permalink {background: none !important;\n\n\n\nwidth: 16px !important;\n\n\n\nheight: 16px !important;\n\n\n\n background: #f9f9f9) !important;\n\n\n\n border-bottom-left-radius: 10px !important;\n\n\n\n border-top-right-radius: 10px !important;\n\n\n\n margin-top: 3px !important;\n\n\n\n margin-right: 4px !important;}"; if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var heads = document.getElementsByTagName("head"); if (heads.length > 0) { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); heads[0].appendChild(node); } } })();