From 463991b88c73f9f151095dc9f8e55683d8408aec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Thu, 14 Jan 2021 22:42:18 +0900 Subject: [PATCH] feat: hidden input if its not checkbox --- github-markdown.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/github-markdown.css b/github-markdown.css index 7068d37..efb972a 100644 --- a/github-markdown.css +++ b/github-markdown.css @@ -1058,4 +1058,9 @@ .markdown-body .task-list-item input { margin: 0 .2em .25em -1.6em; vertical-align: middle; + +} + +.markdown-body input:not([type=checkbox]) { + display: none; } \ No newline at end of file