From c53592368a7b2a52ec88c00edd3e77d7be9680f4 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Fri, 9 Jun 2017 08:54:20 -0700 Subject: [PATCH] Fixed nested expanded button style The !Important was not getting cuaght by the inliner. --- scss/components/_button.scss | 2 +- scss/grid/_grid.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/scss/components/_button.scss b/scss/components/_button.scss index 930086e0..81005184 100755 --- a/scss/components/_button.scss +++ b/scss/components/_button.scss @@ -145,7 +145,7 @@ table.button.large { table.button.expand, table.button.expanded { - width: 100%!important; + width: 100%; table { width: 100%; diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss index 1f87716f..429b8f08 100755 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@ -97,6 +97,10 @@ th.column { &.button { width:auto; + + &.expanded{ + width: 100%; + } } } } -- 2.47.2