Settings > Emails). * * @since 9.6.0 * @param bool $is_email_preview Whether the email is being previewed. */ $is_email_preview = apply_filters( 'woocommerce_is_email_preview', false ); if ( $is_email_preview ) { $bg_transient = get_transient( 'woocommerce_email_background_color' ); $body_transient = get_transient( 'woocommerce_email_body_background_color' ); $base_transient = get_transient( 'woocommerce_email_base_color' ); $text_transient = get_transient( 'woocommerce_email_text_color' ); $footer_text_transient = get_transient( 'woocommerce_email_footer_text_color' ); $header_alignment_transient = get_transient( 'woocommerce_email_header_alignment' ); $bg = $bg_transient ? $bg_transient : $bg; $body = $body_transient ? $body_transient : $body; $base = $base_transient ? $base_transient : $base; $text = $text_transient ? $text_transient : $text; $footer_text = $footer_text_transient ? $footer_text_transient : $footer_text; $header_alignment = $header_alignment_transient ? $header_alignment_transient : $header_alignment; } $base_text = wc_light_or_dark( $base, '#202020', '#ffffff' ); // Pick a contrasting color for links. $link_color = wc_hex_is_light( $base ) ? $base : $base_text; if ( wc_hex_is_light( $body ) ) { $link_color = wc_hex_is_light( $base ) ? $base_text : $base; } $bg_darker_10 = wc_hex_darker( $bg, 10 ); $body_darker_10 = wc_hex_darker( $body, 10 ); $base_lighter_20 = wc_hex_lighter( $base, 20 ); $base_lighter_40 = wc_hex_lighter( $base, 40 ); $text_lighter_20 = wc_hex_lighter( $text, 20 ); $text_lighter_40 = wc_hex_lighter( $text, 40 ); // !important; is a gmail hack to prevent styles being stripped if it doesn't like something. // body{padding: 0;} ensures proper scale/positioning of the email in the iOS native email app. ?> body { background-color: ; padding: 0; text-align: center; } #outer_wrapper { background-color: ; } #wrapper { margin: 0 auto; padding: 70px 0; -webkit-text-size-adjust: none !important; width: 100%; max-width: 600px; } #template_container { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important; background-color: ; border: 1px solid ; border-radius: 3px !important; } #template_header { background-color: ; border-radius: 3px 3px 0 0 !important; color: ; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; } #template_header h1, #template_header h1 a { color: ; background-color: inherit; } #template_header_image p { text-align: ; } #template_header_image img { margin-left: 0; margin-right: 0; } #template_footer td { padding: 0; border-radius: 6px; } #template_footer #credit { border: 0; color: ; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0; } #template_footer #credit p { margin: 0 0 16px; } #body_content { background-color: ; } #body_content table td { padding: 48px 48px 32px; } #body_content table td td { padding: 12px; } #body_content table td th { padding: 12px; } #body_content td ul.wc-item-meta { font-size: small; margin: 1em 0 0; padding: 0; list-style: none; } #body_content td ul.wc-item-meta li { margin: 0.5em 0 0; padding: 0; } #body_content td ul.wc-item-meta li p { margin: 0; } #body_content p { margin: 0 0 16px; } #body_content_inner { color: ; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: ; } .td { color: ; border: 1px solid ; vertical-align: middle; } .address { padding: 12px; color: ; border: 1px solid ; } .additional-fields { padding: 12px 12px 0; color: ; border: 1px solid ; list-style: none outside; } .additional-fields li { margin: 0 0 12px 0; } .text { color: ; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; } .link { color: ; } #header_wrapper { padding: 36px 48px; display: block; } #header_wrapper h1 { text-align: ; } #template_footer #credit, #template_footer #credit a { color: ; } h1 { color: ; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: ; text-shadow: 0 1px 0 ; } h2 { color: ; display: block; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: ; } h3 { color: ; display: block; font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; font-size: 16px; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: ; } a { color: ; font-weight: normal; text-decoration: underline; } img { border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-: 10px; max-width: 100%; } /** * Media queries are not supported by all email clients, however they do work on modern mobile * Gmail clients and can help us achieve better consistency there. */ @media screen and (max-width: 600px) { #header_wrapper { padding: 27px 36px !important; font-size: 24px; } #body_content table > tbody > tr > td { padding: 10px !important; } #body_content_inner { font-size: 10px !important; } }