[#1] Remove iOS blue link for the phone number (close)
This commit is contained in:
parent
847c2fb960
commit
543fb023cc
|
|
@ -119,6 +119,12 @@ a{
|
||||||
align:left;
|
align:left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer__main a > span{
|
||||||
|
/* Revert apple blue-link style. */
|
||||||
|
color: #888!important;
|
||||||
|
text-decoration:none!important;
|
||||||
|
}
|
||||||
|
|
||||||
.footer__main__col2{
|
.footer__main__col2{
|
||||||
/* @todo gulp-inline-css can't use width in percentages */
|
/* @todo gulp-inline-css can't use width in percentages */
|
||||||
width:20%;
|
width:20%;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ function buildTask(options){
|
||||||
name: 'Lars Normark Holmgaard',
|
name: 'Lars Normark Holmgaard',
|
||||||
welcome: 'Hi there,',
|
welcome: 'Hi there,',
|
||||||
introParagraph: 'Thanks for writing up this email.<br/> We are delighted to reply with a custom footer template.',
|
introParagraph: 'Thanks for writing up this email.<br/> We are delighted to reply with a custom footer template.',
|
||||||
contactMain: 'Call 81100200 or email us at',
|
contactMain: 'Call <a href="tel:81100200"><span>81100200</span></a> or email us at', // Wrap phone numbers like this to prevent iOS mail from making them blue.
|
||||||
contactMail: 'info@fadeit.dk',
|
contactMail: 'info@fadeit.dk',
|
||||||
contactSecondary: 'Anelystparken 31D ● DK-8381 Tilst ● Aarhus<br />',
|
contactSecondary: 'Anelystparken 31D ● DK-8381 Tilst ● Aarhus<br />',
|
||||||
logoUrl: 'http://fadeit.dk/!email/fadeit-logo.png',
|
logoUrl: 'http://fadeit.dk/!email/fadeit-logo.png',
|
||||||
|
|
@ -26,7 +26,8 @@ function buildTask(options){
|
||||||
.pipe(inlineCss({
|
.pipe(inlineCss({
|
||||||
applyTableAttributes: true,
|
applyTableAttributes: true,
|
||||||
applyWidthAttributes: true,
|
applyWidthAttributes: true,
|
||||||
preserveMediaQueries: true
|
preserveMediaQueries: true,
|
||||||
|
removeStyleTags: false
|
||||||
}))
|
}))
|
||||||
.pipe(minifyHTML({quotes: true}))
|
.pipe(minifyHTML({quotes: true}))
|
||||||
.pipe(gulp.dest('./dist/'))
|
.pipe(gulp.dest('./dist/'))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue