From bac43c4cb75bb2f22be964c1ee535bdfbda318e8 Mon Sep 17 00:00:00 2001 From: Rob Dodson Date: Sun, 29 Jun 2014 07:52:17 -0700 Subject: [PATCH] Force core-toolbar/core-header to be transparent Because core-toolbar now has a default background (aa8b336327958382adcae3dcfc43a9cf27292ebc) it breaks `core-scroll-header-panel` because the background color was previously transparent (https://github.com/Polymer/polymer/issues/576). This change forces the content inside of `#headerContent` (either `core-toolbar` or `.core-header`) to be transparent. --- core-scroll-header-panel.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core-scroll-header-panel.css b/core-scroll-header-panel.css index 0eca2f9..389aba3 100644 --- a/core-scroll-header-panel.css +++ b/core-scroll-header-panel.css @@ -54,4 +54,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN #condensedHeaderBg { opacity: 0; -} \ No newline at end of file +} + +#headerContent::content > * { + background: transparent; +}