From 12c935656bb7c2cf4c8cf9bcbe05e7b29edf099a Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Sun, 20 Sep 2020 18:29:44 +0200 Subject: [PATCH] effet hover --- core/layout/common.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/core/layout/common.css b/core/layout/common.css index 2867ea0f..8a8a7869 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -1387,4 +1387,17 @@ th.col12 { .zwiico-plus-circled { color: #D8890B; font-size: 1.2em !important; -} \ No newline at end of file + -webkit-transition: all 1s ease; /* Safari et Chrome */ + -moz-transition: all 1s ease; /* Firefox */ + -ms-transition: all 1s ease; /* Internet Explorer 9 */ + -o-transition: all 1s ease; /* Opera */ + transition: all 1s ease; + } +.zwiico-minus-circled:hover, +.zwiico-plus-circled:hover { + -webkit-transform:scale(1.25); /* Safari et Chrome */ + -moz-transform:scale(1.25); /* Firefox */ + -ms-transform:scale(1.25); /* Internet Explorer 9 */ + -o-transform:scale(1.25); /* Opera */ + transform:scale(1.25); + } \ No newline at end of file