[#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;
|
||||
}
|
||||
|
||||
.footer__main a > span{
|
||||
/* Revert apple blue-link style. */
|
||||
color: #888!important;
|
||||
text-decoration:none!important;
|
||||
}
|
||||
|
||||
.footer__main__col2{
|
||||
/* @todo gulp-inline-css can't use width in percentages */
|
||||
width:20%;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ function buildTask(options){
|
|||
name: 'Lars Normark Holmgaard',
|
||||
welcome: 'Hi there,',
|
||||
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',
|
||||
contactSecondary: 'Anelystparken 31D ● DK-8381 Tilst ● Aarhus<br />',
|
||||
logoUrl: 'http://fadeit.dk/!email/fadeit-logo.png',
|
||||
|
|
@ -26,7 +26,8 @@ function buildTask(options){
|
|||
.pipe(inlineCss({
|
||||
applyTableAttributes: true,
|
||||
applyWidthAttributes: true,
|
||||
preserveMediaQueries: true
|
||||
preserveMediaQueries: true,
|
||||
removeStyleTags: false
|
||||
}))
|
||||
.pipe(minifyHTML({quotes: true}))
|
||||
.pipe(gulp.dest('./dist/'))
|
||||
|
|
|
|||
Loading…
Reference in New Issue