From 84e5276a3af1f377fadf54afb3967bb8a2e65a7b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 5 Jun 2016 09:56:53 +0200 Subject: [PATCH 1/2] frio: give the contact actions a little transition effect --- view/theme/frio/css/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index a874ce6ae6..07e680df92 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -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; From 43b05500941eea72156358d062960f9337154761 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 5 Jun 2016 17:12:13 +0200 Subject: [PATCH 2/2] frio: remove legacy transition css --- view/theme/frio/css/style.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 07e680df92..11f85ae93f 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1716,10 +1716,6 @@ 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, @@ -1731,10 +1727,6 @@ 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 {