From b3b1c34822a67c8a7b7ec2a2cf3c8d3d07b3d740 Mon Sep 17 00:00:00 2001 From: Stadly Date: Thu, 10 Nov 2016 10:59:50 +0100 Subject: [PATCH] Let buttons expand in Outlook !important styles are ignored by Outlook when they are inlined. There are no other rules that would override the width of the expanded buttons, so it is not necessary to have it declared as !important. Removing !important means that the style will be inlined as style="width: 100%" instead of style="width: 100% !important". The latter is ignored by Outlook, while the first one works and makes the button expand. Ref: https://www.campaignmonitor.com/blog/email-marketing/2010/05/outlook-2007-and-the-inline-important-declaration/ --- scss/components/_button.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/components/_button.scss b/scss/components/_button.scss index f6d841b2..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%; -- 2.47.2