Mercurial > ec-userscripts
view fastmail-smaller-remote-image-block-message.user.js @ 119:34657b8835e2
Add script to adjust fastmail remote image message
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 17 Jan 2023 15:48:38 +0900 |
parents | |
children | f3f646436567 |
line wrap: on
line source
// ==UserScript== // @name fastmail smaller remote image block message // @namespace https://nanaya.net // @match https://app.fastmail.com/* // @grant GM_addStyle // @version 1.0.0 // @author nanaya // @description less distracting message // ==/UserScript== 'use strict'; /* global GM_addStyle */ GM_addStyle(` .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 { padding: 5px 12px; } .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 button { height: auto; } .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 h3 { font-weight: normal; } `);