plain
4 years ago
admin-cancelled-order.php
5 years ago
admin-failed-order.php
5 years ago
admin-new-order.php
5 years ago
customer-completed-order.php
5 years ago
customer-invoice.php
4 years ago
customer-new-account.php
4 years ago
customer-note.php
5 years ago
customer-on-hold-order.php
5 years ago
customer-processing-order.php
5 years ago
customer-refunded-order.php
5 years ago
customer-reset-password.php
5 years ago
email-addresses.php
4 years ago
email-customer-details.php
5 years ago
email-downloads.php
5 years ago
email-footer.php
5 years ago
email-header.php
5 years ago
email-order-details.php
5 years ago
email-order-items.php
5 years ago
email-styles.php
4 years ago
email-styles.php
229 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Email Styles |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-styles.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion WooCommerce will need to update template files and you |
| 8 | * (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce\Templates\Emails |
| 15 | * @version 4.0.0 |
| 16 | */ |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; |
| 20 | } |
| 21 | |
| 22 | // Load colors. |
| 23 | $bg = get_option( 'woocommerce_email_background_color' ); |
| 24 | $body = get_option( 'woocommerce_email_body_background_color' ); |
| 25 | $base = get_option( 'woocommerce_email_base_color' ); |
| 26 | $base_text = wc_light_or_dark( $base, '#202020', '#ffffff' ); |
| 27 | $text = get_option( 'woocommerce_email_text_color' ); |
| 28 | |
| 29 | // Pick a contrasting color for links. |
| 30 | $link_color = wc_hex_is_light( $base ) ? $base : $base_text; |
| 31 | |
| 32 | if ( wc_hex_is_light( $body ) ) { |
| 33 | $link_color = wc_hex_is_light( $base ) ? $base_text : $base; |
| 34 | } |
| 35 | |
| 36 | $bg_darker_10 = wc_hex_darker( $bg, 10 ); |
| 37 | $body_darker_10 = wc_hex_darker( $body, 10 ); |
| 38 | $base_lighter_20 = wc_hex_lighter( $base, 20 ); |
| 39 | $base_lighter_40 = wc_hex_lighter( $base, 40 ); |
| 40 | $text_lighter_20 = wc_hex_lighter( $text, 20 ); |
| 41 | $text_lighter_40 = wc_hex_lighter( $text, 40 ); |
| 42 | |
| 43 | // !important; is a gmail hack to prevent styles being stripped if it doesn't like something. |
| 44 | // body{padding: 0;} ensures proper scale/positioning of the email in the iOS native email app. |
| 45 | ?> |
| 46 | body { |
| 47 | padding: 0; |
| 48 | } |
| 49 | |
| 50 | #wrapper { |
| 51 | background-color: <?php echo esc_attr( $bg ); ?>; |
| 52 | margin: 0; |
| 53 | padding: 70px 0; |
| 54 | -webkit-text-size-adjust: none !important; |
| 55 | width: 100%; |
| 56 | } |
| 57 | |
| 58 | #template_container { |
| 59 | box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important; |
| 60 | background-color: <?php echo esc_attr( $body ); ?>; |
| 61 | border: 1px solid <?php echo esc_attr( $bg_darker_10 ); ?>; |
| 62 | border-radius: 3px !important; |
| 63 | } |
| 64 | |
| 65 | #template_header { |
| 66 | background-color: <?php echo esc_attr( $base ); ?>; |
| 67 | border-radius: 3px 3px 0 0 !important; |
| 68 | color: <?php echo esc_attr( $base_text ); ?>; |
| 69 | border-bottom: 0; |
| 70 | font-weight: bold; |
| 71 | line-height: 100%; |
| 72 | vertical-align: middle; |
| 73 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 74 | } |
| 75 | |
| 76 | #template_header h1, |
| 77 | #template_header h1 a { |
| 78 | color: <?php echo esc_attr( $base_text ); ?>; |
| 79 | background-color: inherit; |
| 80 | } |
| 81 | |
| 82 | #template_header_image img { |
| 83 | margin-left: 0; |
| 84 | margin-right: 0; |
| 85 | } |
| 86 | |
| 87 | #template_footer td { |
| 88 | padding: 0; |
| 89 | border-radius: 6px; |
| 90 | } |
| 91 | |
| 92 | #template_footer #credit { |
| 93 | border: 0; |
| 94 | color: <?php echo esc_attr( $text_lighter_40 ); ?>; |
| 95 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 96 | font-size: 12px; |
| 97 | line-height: 150%; |
| 98 | text-align: center; |
| 99 | padding: 24px 0; |
| 100 | } |
| 101 | |
| 102 | #template_footer #credit p { |
| 103 | margin: 0 0 16px; |
| 104 | } |
| 105 | |
| 106 | #body_content { |
| 107 | background-color: <?php echo esc_attr( $body ); ?>; |
| 108 | } |
| 109 | |
| 110 | #body_content table td { |
| 111 | padding: 48px 48px 32px; |
| 112 | } |
| 113 | |
| 114 | #body_content table td td { |
| 115 | padding: 12px; |
| 116 | } |
| 117 | |
| 118 | #body_content table td th { |
| 119 | padding: 12px; |
| 120 | } |
| 121 | |
| 122 | #body_content td ul.wc-item-meta { |
| 123 | font-size: small; |
| 124 | margin: 1em 0 0; |
| 125 | padding: 0; |
| 126 | list-style: none; |
| 127 | } |
| 128 | |
| 129 | #body_content td ul.wc-item-meta li { |
| 130 | margin: 0.5em 0 0; |
| 131 | padding: 0; |
| 132 | } |
| 133 | |
| 134 | #body_content td ul.wc-item-meta li p { |
| 135 | margin: 0; |
| 136 | } |
| 137 | |
| 138 | #body_content p { |
| 139 | margin: 0 0 16px; |
| 140 | } |
| 141 | |
| 142 | #body_content_inner { |
| 143 | color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
| 144 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 145 | font-size: 14px; |
| 146 | line-height: 150%; |
| 147 | text-align: <?php echo is_rtl() ? 'right' : 'left'; ?>; |
| 148 | } |
| 149 | |
| 150 | .td { |
| 151 | color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
| 152 | border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>; |
| 153 | vertical-align: middle; |
| 154 | } |
| 155 | |
| 156 | .address { |
| 157 | padding: 12px; |
| 158 | color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
| 159 | border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>; |
| 160 | } |
| 161 | |
| 162 | .text { |
| 163 | color: <?php echo esc_attr( $text ); ?>; |
| 164 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 165 | } |
| 166 | |
| 167 | .link { |
| 168 | color: <?php echo esc_attr( $link_color ); ?>; |
| 169 | } |
| 170 | |
| 171 | #header_wrapper { |
| 172 | padding: 36px 48px; |
| 173 | display: block; |
| 174 | } |
| 175 | |
| 176 | h1 { |
| 177 | color: <?php echo esc_attr( $base ); ?>; |
| 178 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 179 | font-size: 30px; |
| 180 | font-weight: 300; |
| 181 | line-height: 150%; |
| 182 | margin: 0; |
| 183 | text-align: <?php echo is_rtl() ? 'right' : 'left'; ?>; |
| 184 | text-shadow: 0 1px 0 <?php echo esc_attr( $base_lighter_20 ); ?>; |
| 185 | } |
| 186 | |
| 187 | h2 { |
| 188 | color: <?php echo esc_attr( $base ); ?>; |
| 189 | display: block; |
| 190 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 191 | font-size: 18px; |
| 192 | font-weight: bold; |
| 193 | line-height: 130%; |
| 194 | margin: 0 0 18px; |
| 195 | text-align: <?php echo is_rtl() ? 'right' : 'left'; ?>; |
| 196 | } |
| 197 | |
| 198 | h3 { |
| 199 | color: <?php echo esc_attr( $base ); ?>; |
| 200 | display: block; |
| 201 | font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; |
| 202 | font-size: 16px; |
| 203 | font-weight: bold; |
| 204 | line-height: 130%; |
| 205 | margin: 16px 0 8px; |
| 206 | text-align: <?php echo is_rtl() ? 'right' : 'left'; ?>; |
| 207 | } |
| 208 | |
| 209 | a { |
| 210 | color: <?php echo esc_attr( $link_color ); ?>; |
| 211 | font-weight: normal; |
| 212 | text-decoration: underline; |
| 213 | } |
| 214 | |
| 215 | img { |
| 216 | border: none; |
| 217 | display: inline-block; |
| 218 | font-size: 14px; |
| 219 | font-weight: bold; |
| 220 | height: auto; |
| 221 | outline: none; |
| 222 | text-decoration: none; |
| 223 | text-transform: capitalize; |
| 224 | vertical-align: middle; |
| 225 | margin-<?php echo is_rtl() ? 'left' : 'right'; ?>: 10px; |
| 226 | max-width: 100%; |
| 227 | } |
| 228 | <?php |
| 229 |