Mercurial > ec-userscripts
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fastmail-smaller-remote-image-block-message.user.js Tue Jan 17 15:48:38 2023 +0900 @@ -0,0 +1,26 @@ +// ==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; + } +`);