Update hover definitions and source.

This commit is contained in:
mrmrs 2015-07-05 21:12:19 +08:00
parent 6ca72cc95b
commit adb13fb9ae
3 changed files with 9 additions and 5 deletions

View file

@ -10323,13 +10323,15 @@ img {
}
.hide-child .child {
display: none;
opacity: 0;
transition: opacity .15s ease-in;
}
.hide-child:hover .child,
.hide-child:focus .child,
.hide-child:active .child {
display: block;
opacity: 1;
transition: opacity .15s ease-in;
}
/*

File diff suppressed because one or more lines are too long

View file

@ -19,12 +19,14 @@
.dim:focus { opacity: .8; transition: opacity .15s ease-out; }
.hide-child .child {
display: none;
opacity: 0;
transition: opacity .15s ease-in;
}
.hide-child:hover .child,
.hide-child:focus .child,
.hide-child:active .child {
display: block;
opacity: 1;
transition: opacity .15s ease-in;
}