Fixed missing comma on transition-property

This commit is contained in:
Ian Lunn 2014-01-07 22:15:03 +00:00
parent ca8c6ff52d
commit d5f6c9db99
6 changed files with 10 additions and 10 deletions

2
css/hover-min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
/*
* Hover.css (http://ianlunn.co.uk/)
* Version: 1.0.1
* Version: 1.0.2
* Author: Ian Lunn @IanLunn
* Author URL: http://ianlunn.co.uk/
* Github: https://github.com/IanLunn/Hover
@ -1079,8 +1079,8 @@
/* W3C */
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: -webkit-transform opacity;
transition-property: transform opacity;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.float-shadow:hover {
@ -1181,8 +1181,8 @@
/* W3C */
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: -webkit-transform opacity;
transition-property: transform opacity;
-webkit-transition-property: -webkit-transform, opacity;
transition-property: transform, opacity;
}
.hover-shadow:hover {

View File

@ -47,7 +47,7 @@
opacity: 0;
background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 80%); /* W3C */
transition-duration: $defaultDuration;
transition-property: transform opacity;
transition-property: transform, opacity;
}
&:hover {

View File

@ -18,7 +18,7 @@
left: -($outerBorderWidth + $innerBorderWidth) * 2;
opacity: 0;
transition-duration: .3s;
transition-property: top right bottom left;
transition-property: top, right, bottom, left;
}
&:hover:before {

View File

@ -17,7 +17,7 @@
bottom: 0;
left: 0;
transition-duration: .3s;
transition-property: top right bottom left;
transition-property: top, right, bottom, left;
}
&:hover:before {

View File

@ -1,6 +1,6 @@
/*
* Hover.css (http://ianlunn.co.uk/)
* Version: 1.0.1
* Version: 1.0.2
* Author: Ian Lunn @IanLunn
* Author URL: http://ianlunn.co.uk/
* Github: https://github.com/IanLunn/Hover