Merge pull request #5816 from BFTrick/remove-webkit-styles-from-emails
Remove Webkit Styles from Email Templates
This commit is contained in:
commit
b0bf1af931
|
@ -29,20 +29,15 @@ $wrapper = "
|
|||
padding: 70px 0 70px 0;
|
||||
";
|
||||
$template_container = "
|
||||
-webkit-box-shadow:0 0 0 3px rgba(0,0,0,0.025) !important;
|
||||
box-shadow:0 0 0 3px rgba(0,0,0,0.025) !important;
|
||||
-webkit-border-radius:6px !important;
|
||||
border-radius:6px !important;
|
||||
background-color: " . esc_attr( $body ) . ";
|
||||
border: 1px solid $bg_darker_10;
|
||||
-webkit-border-radius:6px !important;
|
||||
border-radius:6px !important;
|
||||
";
|
||||
$template_header = "
|
||||
background-color: " . esc_attr( $base ) .";
|
||||
color: $base_text;
|
||||
-webkit-border-top-left-radius:6px !important;
|
||||
-webkit-border-top-right-radius:6px !important;
|
||||
border-top-left-radius:6px !important;
|
||||
border-top-right-radius:6px !important;
|
||||
border-bottom: 0;
|
||||
|
@ -53,7 +48,6 @@ $template_header = "
|
|||
";
|
||||
$body_content = "
|
||||
background-color: " . esc_attr( $body ) . ";
|
||||
-webkit-border-radius:6px !important;
|
||||
border-radius:6px !important;
|
||||
";
|
||||
$body_content_inner = "
|
||||
|
|
Loading…
Reference in New Issue