mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
frio: give the contact actions a little transition effect
This commit is contained in:
parent
20ab3f13a6
commit
84e5276a3a
1 changed files with 10 additions and 0 deletions
|
@ -1716,6 +1716,11 @@ ul.viewcontact_wrapper > li {
|
|||
}
|
||||
.contact-wrapper a.contact-action-link {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.25s ease-in-out;
|
||||
-moz-transition: all 0.25s ease-in-out;
|
||||
-o-transition: all 0.25s ease-in-out;
|
||||
-ms-transition: all 0.25s ease-in-out;
|
||||
transition: all 0.25s ease-in-out;
|
||||
}
|
||||
.contact-wrapper a.contact-action-link,
|
||||
.contact-wrapper a.contact-action-link:hover,
|
||||
|
@ -1726,6 +1731,11 @@ ul.viewcontact_wrapper > li {
|
|||
}
|
||||
ul li:hover .contact-wrapper a.contact-action-link {
|
||||
opacity: 0.8;
|
||||
-webkit-transition: all 0.25s ease-in-out;
|
||||
-moz-transition: all 0.25s ease-in-out;
|
||||
-o-transition: all 0.25s ease-in-out;
|
||||
-ms-transition: all 0.25s ease-in-out;
|
||||
transition: all 0.25s ease-in-out;
|
||||
}
|
||||
ul li:hover .contact-wrapper a.contact-action-link:hover {
|
||||
opacity: 1;
|
||||
|
|
Loading…
Reference in a new issue