comparison 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
comparison
equal deleted inserted replaced
118:8de2d53a4cb1 119:34657b8835e2
1 // ==UserScript==
2 // @name fastmail smaller remote image block message
3 // @namespace https://nanaya.net
4 // @match https://app.fastmail.com/*
5 // @grant GM_addStyle
6 // @version 1.0.0
7 // @author nanaya
8 // @description less distracting message
9 // ==/UserScript==
10
11 'use strict';
12
13 /* global GM_addStyle */
14 GM_addStyle(`
15 .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 {
16 padding: 5px 12px;
17 }
18
19 .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 button {
20 height: auto;
21 }
22
23 .u-banner--informative.u-banner.u-p-3.u-flex.u-items-baseline.u-space-x-2 h3 {
24 font-weight: normal;
25 }
26 `);