NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Disable an annoying element in SalesForce
// @namespace Thanael
// @version 0.1
// @description Remove that dumb triangle pointing down that floats near the top of the page, at the centre, and pulls down a dumb menu if you click it accidentally.
// @author You
// @grant GM_addStyle
//@grant addGlobalStyle
// @match https://YOUR SALESFORCE URL HERE/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Remove that dumb triangle pointing down that floats near the top of the page, at the centre, and pulls down a dumb menu if you click it accidentally.
function addGlobalStyle(css) {
var head, style;
head = document.getElementById('ext-gen131');
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.x-layout-collapsed-north.x-layout-collapsed-over .x-layout-mini-north,.sd_secondary_tabpanel .x-layout-collapsed-south .x-layout-mini,.sd_primary_container .x-layout-collapsed-north .x-layout-mini,.sd_secondary_tabpanel .x-layout-collapsed-north .x-layout-mini,.sd_primary_container .x-splitbar-v .x-layout-mini,.sd_primary_container .x-layout-collapsed-south .x-layout-mini,.sd_secondary_tabpanel .x-splitbar-v .x-layout-mini{width:0px;height:0px;filter:none;!important;}');
})();