1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-23 05:15:10 +02:00

fix telephone.html being recognized as tel: etc.

This commit is contained in:
Paper Mountain Studio
2020-01-04 13:52:40 +01:00
parent 7c8261264f
commit 49fb387779

View File

@@ -62,15 +62,15 @@ address {
font-style: normal; font-style: normal;
} }
a[href^='mailto']::before { a[href^='mailto\:']::before {
content: '📧 '; content: '📧 ';
} }
a[href^='tel']::before { a[href^='tel\:']::before {
content: '📞 '; content: '📞 ';
} }
a[href^='sms']::before { a[href^='sms\:']::before {
content: '💬 '; content: '💬 ';
} }
@@ -79,4 +79,4 @@ mark {
border-radius: 2px; border-radius: 2px;
padding: 0px 2px 0px 2px; padding: 0px 2px 0px 2px;
color: #000000; color: #000000;
} }