NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Fastmail.com Flat Buttons
// @namespace Violentmonkey Scripts
// @match https://www.fastmail.com/*
// @license MIT
// @grant none
// @version 1.1
// @author Jonah Dahlquist <hi@jonah.name>
// @copyright 2020 Jonah Dahlquist
// @description Make Fastmail's web client buttons flat
// ==/UserScript==
const styleEl = document.createElement('style');
styleEl.innerText = `
.v-PageHeader .v-Button,
.v-Button--standard,
.v-Toolbar--standard .v-Button {
background-image: none !important;
box-shadow: none;
}
`;
document.body.appendChild(styleEl);