N°1405 Add support of AttributePhoneNumber which allows launch of phone application on click.

SVN:trunk[5698]
This commit is contained in:
Guillaume Lajarige
2018-04-19 15:56:11 +00:00
parent 512f368cbf
commit 18bd0ae096
15 changed files with 199 additions and 67 deletions

View File

@@ -301,17 +301,15 @@ td a.no-arrow:hover {
padding-left: 0px;
background: inherit;
}
td a.mailto, td a.mailto:visited {
text-decoration: none;
color: #000;
padding-left: 20px;
background: url(../images/mail.png?v=v2.5.0) no-repeat left;
td a:hover .text_decoration, td a:visited:hover .text_decoration {
color: #d56e14;
}
td a.mailto:hover {
text-decoration: underline;
td a .text_decoration, td a:visited .text_decoration {
vertical-align: baseline;
text-decoration: none;
color: #ea7d1e;
padding-left: 20px;
background: url(../images/mail.png?v=v2.5.0) no-repeat left;
margin-right: 8px;
transition: color 0.2s ease-in-out;
}
a.small_action {
font-family: Tahoma, Verdana, Arial, Helvetica;

View File

@@ -357,17 +357,21 @@ td a.no-arrow:hover {
padding-left:0px;
background: inherit;
}
td a.mailto, td a.mailto:visited {
text-decoration:none;
color:#000000;
padding-left:20px;
background: url(../images/mail.png?v=#{$version}) no-repeat left;
}
td a.mailto:hover {
text-decoration:underline;
color:$highlight-color;
padding-left:20px;
background: url(../images/mail.png?v=#{$version}) no-repeat left;
td a,
td a:visited{
&:hover{
.text_decoration{
color: darken($highlight-color, 6%);
}
}
.text_decoration{
vertical-align: baseline;
text-decoration: none;
color: $highlight-color;
margin-right: 8px;
transition: color 0.2s ease-in-out;
}
}
a.small_action {