Mercurial > ec-userscripts
view fastmail-smaller-remote-image-block-message.user.js @ 136:1e64e81370a3
Add nginx-https
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 27 Feb 2024 01:17:43 +0900 |
parents | f3f646436567 |
children |
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 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/fastmail-smaller-remote-image-block-message.user.js // ==/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; } `);