Raw Source
mauricio.matias / Asana Customisations

// ==UserScript==
// @name  Asana Customisations
// @version  1.0
// @author         Mauricio Matias
// @namespace      mauricio.matias
// @downloadURL    https://openuserjs.org/src/scripts/mauricio.matias/Asana_Customisations.min.user.js
// @updateURL      https://openuserjs.org/src/scripts/mauricio.matias/Asana_Customisations.min.user.js
// @copyright 2018, mauricio.matias (https://openuserjs.org/users/mauricio.matias)
// @include    http://app.asana.com/*
// @include    https://app.asana.com/*
// @license MIT
// ==/UserScript==

function addGlobalStyle(css) {
  var head, style;
  head = document.getElementsByTagName('head')[0];
  if (!head) {
    return;
  }
  style = document.createElement('style');
  style.type = 'text/css';
  style.innerHTML = css;
  head.appendChild(style);
}

addGlobalStyle('.SidebarTeamMembershipHeader { background-color: #434a51; padding: 10px 10px 10px 0 !important }');