From 2a887e624e76961de99ca5375f3d6ce913f0f16b Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Thu, 30 Jun 2016 16:32:40 -0400 Subject: [PATCH] Ensure hidden attribute works. Fixes #131. --- paper-checkbox.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/paper-checkbox.html b/paper-checkbox.html index 1562af3..cba0b40 100644 --- a/paper-checkbox.html +++ b/paper-checkbox.html @@ -66,6 +66,10 @@ -webkit-tap-highlight-color: transparent; } + :host([hidden]) { + display: none !important; + } + :host(:focus) { outline: none; }