Skip to content

Commit

Permalink
switched to z-index instead of visibility
Browse files Browse the repository at this point in the history
safari macOS specific bug
  • Loading branch information
wavded committed Jul 12, 2011
1 parent 640f572 commit 6901b8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions humane-themes/bold-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ html, body { height: 100%; }
-o-transition : all .2s ease-in;
-ms-transition : all .2s ease-in;
transition : all .2s ease-in;
visibility : hidden;
z-index : 100000;
z-index : -1;
}
.humane.humane-show { visibility : visible; }
.humane.humane-show { z-index: 100000; }
/* ie hover state, recommended */
.humane:hover {
filter : progid:DXImageTransform.Microsoft.alpha(opacity=20);
Expand Down
5 changes: 2 additions & 3 deletions humane-themes/bold-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ html, body { height: 100%; }
-o-transition : all .2s ease-in;
-ms-transition : all .2s ease-in;
transition : all .2s ease-in;
visibility : hidden;
z-index : 100000;
z-index : -1;
}
.humane.humane-show { visibility : visible; }
.humane.humane-show { z-index: 100000; }
/* ie hover state, recommended */
.humane:hover {
filter : progid:DXImageTransform.Microsoft.alpha(opacity=20);
Expand Down
5 changes: 2 additions & 3 deletions humane-themes/libnotify.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ html, body { height: 100%; }
-o-transition : all .2s ease-out;
-ms-transition : all .2s ease-out;
transition : all .2s ease-out;
visibility : hidden;
z-index : 100000;
z-index : -1;
}
.humane.humane-show { visibility : visible; }
.humane.humane-show { z-index: 100000; }
/* ie hover state, recommended */
.humane:hover {
filter : progid:DXImageTransform.Microsoft.alpha(opacity=20);
Expand Down

0 comments on commit 6901b8b

Please sign in to comment.