From 27ea0c93fba5f5ffdff0a9f74e05c7880ce649df Mon Sep 17 00:00:00 2001 From: Topher Fangio Date: Fri, 21 Aug 2015 15:31:50 -0500 Subject: [PATCH] fix(subheader): Set styles to allow click/hover when stickied. Previously, the inner DIVs of the subheader component were not set to use `display: block`, so you could potentially have contents that were inaccessible. fixes #3932. closes 4280. --- src/components/subheader/subheader.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/subheader/subheader.scss b/src/components/subheader/subheader.scss index 73f138072ce..d71155839e0 100644 --- a/src/components/subheader/subheader.scss +++ b/src/components/subheader/subheader.scss @@ -57,10 +57,12 @@ $subheader-sticky-shadow: 0px 2px 4px 0 rgba(0,0,0,0.16) !default; position: relative; .md-subheader-inner { + display: block; padding: $subheader-padding; } .md-subheader-content { + display: block; z-index: 1; position: relative; }