From 185a149d749bb9957ed87a2a82d1810761e9216b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=BE=E4=BA=95=E8=AA=A0=E6=B3=B0?= Date: Wed, 6 Jun 2018 19:39:28 +0900 Subject: [PATCH] Hide copy-to-clipboard buttons when printing. It is less confusing when printing because the pdf file does not have the function to copy. --- browser/components/MarkdownPreview.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/browser/components/MarkdownPreview.js b/browser/components/MarkdownPreview.js index df7e74a6..58631c1d 100755 --- a/browser/components/MarkdownPreview.js +++ b/browser/components/MarkdownPreview.js @@ -122,6 +122,9 @@ body p { color: #000; background-color: #fff; } + .clipboardButton { + display: none + } } ` }