From 1f2a32369ad5687f5972441d54a7b24e0bed39c7 Mon Sep 17 00:00:00 2001 From: tlein Date: Sun, 14 Aug 2016 15:02:16 -0500 Subject: [PATCH] fix(tabs): change active tab css class from md-active to md-tab-active Reference to the active tab was changed from md-active to md-tab-active but the css class that set the body of the tab back to block display was missed during this renaming effort. This resulted in the body of a tab to always be empty. This commit changes the css class from md-active to md-tab-active. --- src/components/tabs/tab-group.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tabs/tab-group.scss b/src/components/tabs/tab-group.scss index ae6b6ef8c5c2..a009c1d2e7aa 100644 --- a/src/components/tabs/tab-group.scss +++ b/src/components/tabs/tab-group.scss @@ -60,7 +60,7 @@ $md-tab-bar-height: 48px !default; box-sizing: border-box; flex-grow: 1; flex-shrink: 1; - &.md-active { + &.md-tab-active { display: block; } }