/var/www/html/wp-content/plugins/woocommerce/templates/emails/email-styles.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<?php
/**
 * Email Styles
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-styles.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://woocommerce.com/document/template-structure/
 * @package WooCommerce\Templates\Emails
 * @version 9.7.0
 */

use Automattic\WooCommerce\Internal\Email\EmailFont;
use 
Automattic\WooCommerce\Utilities\FeaturesUtil;

if ( ! 
defined'ABSPATH' ) ) {
    exit;
}

$email_improvements_enabled FeaturesUtil::feature_is_enabled'email_improvements' );

// Load colors.
$bg               get_option'woocommerce_email_background_color' );
$body             get_option'woocommerce_email_body_background_color' );
$base             get_option'woocommerce_email_base_color' );
$text             get_option'woocommerce_email_text_color' );
$footer_text      get_option'woocommerce_email_footer_text_color' );
$header_alignment get_option'woocommerce_email_header_alignment'$email_improvements_enabled 'left' false );
$default_font     'Helvetica';
$font_family      $email_improvements_enabled get_option'woocommerce_email_font_family'$default_font ) : $default_font;

/**
 * Check if we are in preview mode (WooCommerce > 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' );
    
$font_family_transient      get_transient'woocommerce_email_font_family' );

    
$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;
    
$font_family      $font_family_transient $font_family_transient $font_family;
}

// Only use safe fonts. They won't be escaped to preserve single quotes.
$safe_font_family EmailFont::$font$font_family ] ?? EmailFont::$font$default_font ];

$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$bg10 );
$body_darker_10  wc_hex_darker$body10 );
$base_lighter_20 wc_hex_lighter$base20 );
$base_lighter_40 wc_hex_lighter$base40 );
$text_lighter_20 wc_hex_lighter$text20 );
$text_lighter_40 wc_hex_lighter$text40 );

// !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: <?php echo esc_attr$bg ); ?>;
    padding: 0;
    text-align: center;
}

#outer_wrapper {
    background-color: <?php echo esc_attr$bg ); ?>;
}

<?php if ( $email_improvements_enabled ) : ?>
#inner_wrapper {
    background-color: <?php echo esc_attr$body ); ?>;
    border-radius: 8px;
}
<?php endif; ?>

#wrapper {
    margin: 0 auto;
    padding: 70px 0;
    -webkit-text-size-adjust: none !important;
    width: 100%;
    max-width: 600px;
}

#template_container {
    box-shadow: <?php echo $email_improvements_enabled 'none' '0 1px 4px rgba(0, 0, 0, 0.1) !important'?>;
    background-color: <?php echo esc_attr$body ); ?>;
    border: <?php echo $email_improvements_enabled '0' '1px solid ' esc_attr$bg_darker_10 ); ?>;
    border-radius: 3px !important;
}

#template_header {
    background-color: <?php echo esc_attr$email_improvements_enabled $body $base ); ?>;
    border-radius: 3px 3px 0 0 !important;
    color: <?php echo esc_attr$email_improvements_enabled $text $base_text ); ?>;
    border-bottom: 0;
    font-weight: bold;
    line-height: 100%;
    vertical-align: middle;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
}

#template_header h1,
#template_header h1 a {
    color: <?php echo esc_attr$email_improvements_enabled $text $base_text ); ?>;
    background-color: inherit;
}

<?php if ( $email_improvements_enabled ) : ?>
#template_header_image {
    padding: 32px 32px 0;
}

#template_header_image p {
    margin-bottom: 0;
    text-align: <?php echo esc_attr$header_alignment ); ?>;
}

#template_header_image img {
    width: 120px
}

.email-logo-text {
    color: <?php echo esc_attr$link_color ); ?>;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: 18px;
}

.email-introduction {
    padding-bottom: 24px;
}

.email-additional-content {
    padding-top: 32px;
}

.email-additional-content p {
    text-align: center;
}

<?php else : ?>

#template_header_image img {
    margin-left: 0;
    margin-right: 0;
}
<?php endif; ?>

#template_footer td {
    padding: 0;
    border-radius: <?php echo $email_improvements_enabled '0' '6px'?>;
}

#template_footer #credit {
    border: 0;
    <?php if ( $email_improvements_enabled ) : ?>
        border-top: 1px solid #ccc;
        border-top: 1px solid rgba(0, 0, 0, .2);
    <?php endif; ?>
    color: <?php echo esc_attr$footer_text ); ?>;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: 12px;
    line-height: <?php echo $email_improvements_enabled '140%' '150%'?>;
    text-align: center;
    padding: <?php echo $email_improvements_enabled '32px' '24px 0'?>;
}

#template_footer #credit p {
    margin: <?php echo $email_improvements_enabled '0' '0 0 16px'?>;
}

#body_content {
    background-color: <?php echo esc_attr$body ); ?>;
}

#body_content table td {
    padding: <?php echo $email_improvements_enabled '20px 32px 32px' '48px 48px 32px'?>;
}

#body_content table td td {
    padding: 12px;
}

#body_content table td th {
    padding: 12px;
}

#body_content table .email-order-details td {
    padding: 8px 12px;
}

#body_content table .email-order-details th {
    padding: 8px 12px;
}

#body_content table .email-order-details td:first-child,
#body_content table .email-order-details th:first-child {
    padding-<?php echo is_rtl() ? 'right' 'left'?>: 0;
}

#body_content table .email-order-details td:last-child,
#body_content table .email-order-details th:last-child {
    padding-<?php echo is_rtl() ? 'left' 'right'?>: 0;
}

#body_content .email-order-details tbody tr:last-child td {
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 24px;
}

#body_content .email-order-details tfoot tr:first-child td,
#body_content .email-order-details tfoot tr:first-child th {
    padding-top: 24px;
}

#body_content .order-item-data td {
    border: 0 !important;
    padding: 0 !important;
    vertical-align: middle;
}

#body_content .email-order-details .order-totals td,
#body_content .email-order-details .order-totals th {
    font-weight: normal;
    padding-bottom: 5px;
    padding-top: 5px;
}

#body_content .email-order-details .order-totals-total th {
    font-weight: bold;
}

#body_content .email-order-details .order-totals-total td {
    font-weight: bold;
    font-size: 20px;
}

#body_content .email-order-details .order-totals-last td,
#body_content .email-order-details .order-totals-last th {
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 24px;
}

#body_content .email-order-details .order-customer-note td {
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 24px;
    padding-top: 24px;
}

#body_content td ul.wc-item-meta {
    font-size: <?php echo $email_improvements_enabled '14px' 'small'?>;
    margin: <?php echo $email_improvements_enabled '0' '1em 0 0'?>;
    padding: 0;
    <?php if ( $email_improvements_enabled ) { ?>
    color: <?php echo esc_attr$footer_text ); ?>;
    line-height: 140%;
    <?php ?>;
    list-style: none;
}

#body_content td ul.wc-item-meta li {
    margin: <?php echo $email_improvements_enabled '0' '0.5em 0 0'?>;
    padding: 0;
}

#body_content td ul.wc-item-meta li p {
    margin: 0;
}

#body_content .email-order-details .wc-item-meta-label {
    clear: both;
    float: <?php echo is_rtl() ? 'right' 'left'?>;
    font-weight: normal;
    margin-<?php echo is_rtl() ? 'left' 'right'?>: .25em;
}

#body_content p {
    margin: 0 0 16px;
}

#body_content_inner {
    color: <?php echo esc_attr$text_lighter_20 ); ?>;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: <?php echo $email_improvements_enabled '16px' '14px'?>;
    line-height: 150%;
    text-align: <?php echo is_rtl() ? 'right' 'left'?>;
}

.td {
    color: <?php echo esc_attr$text_lighter_20 ); ?>;
    border: <?php echo $email_improvements_enabled '0' '1px solid ' esc_attr$body_darker_10 ); ?>;
    vertical-align: middle;
}

.address {
    <?php if ( $email_improvements_enabled ) { ?>
        font-style: normal;
        padding: 8px 0;
    <?php } else { ?>
        padding: 12px;
        color: <?php echo esc_attr$text_lighter_20 ); ?>;
        border: 1px solid <?php echo esc_attr$body_darker_10 ); ?>;
    <?php ?>
}

.additional-fields {
    padding: 12px 12px 0;
    color: <?php echo esc_attr$text_lighter_20 ); ?>;
    border: 1px solid <?php echo esc_attr$body_darker_10 ); ?>;
    list-style: none outside;
}

.additional-fields li {
    margin: 0 0 12px 0;
}

.text {
    color: <?php echo esc_attr$text ); ?>;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
}

.link {
    color: <?php echo esc_attr$link_color ); ?>;
}

#header_wrapper {
    padding: <?php echo $email_improvements_enabled '20px 32px 0' '36px 48px'?>;
    display: block;
}

<?php if ( $header_alignment ) : ?>
#header_wrapper h1 {
    text-align: <?php echo esc_attr$header_alignment ); ?>;
}
<?php endif; ?>

#template_footer #credit,
#template_footer #credit a {
    color: <?php echo esc_attr$footer_text ); ?>;
}

h1 {
    color: <?php echo esc_attr$email_improvements_enabled $text $base ); ?>;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: <?php echo $email_improvements_enabled '32px' '30px'?>;
    font-weight: <?php echo $email_improvements_enabled 700 300?>;
    <?php if ( $email_improvements_enabled ) : ?>
        letter-spacing: -1px;
    <?php endif; ?>
    line-height: <?php echo $email_improvements_enabled '120%' '150%'?>;
    margin: 0;
    text-align: <?php echo is_rtl() ? 'right' 'left'?>;
    <?php if ( ! $email_improvements_enabled ) : ?>
        text-shadow: 0 1px 0 <?php echo esc_attr$base_lighter_20 ); ?>;
    <?php endif; ?>
}

h2 {
    color: <?php echo esc_attr$email_improvements_enabled $text $base ); ?>;
    display: block;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: <?php echo $email_improvements_enabled '20px' '18px'?>;
    font-weight: bold;
    line-height: <?php echo $email_improvements_enabled '160%' '130%'?>;
    margin: 0 0 18px;
    text-align: <?php echo is_rtl() ? 'right' 'left'?>;
}

h3 {
    color: <?php echo esc_attr$email_improvements_enabled $text $base ); ?>;
    display: block;
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
    font-size: 16px;
    font-weight: bold;
    line-height: <?php echo $email_improvements_enabled '160%' '130%'?>;
    margin: 16px 0 8px;
    text-align: <?php echo is_rtl() ? 'right' 'left'?>;
}

a {
    color: <?php echo esc_attr$link_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-<?php echo is_rtl() ? 'left' 'right'?><?php echo $email_improvements_enabled '24px' '10px'?>;
    max-width: 100%;
}

h2.email-order-detail-heading span {
    color: <?php echo esc_attr$footer_text ); ?>;
    display: block;
    font-size: 14px;
    font-weight: normal;
}

.font-family {
    font-family: <?php echo $safe_font_family// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>;
}

.text-align-left {
    text-align: <?php echo is_rtl() ? 'right' 'left'?>;
}

.text-align-right {
    text-align: <?php echo is_rtl() ? 'left' 'right'?>;
}

/**
 * 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;
    }
}
<?php