Skip to content

Commit

Permalink
Fixes Chrome bug
Browse files Browse the repository at this point in the history
Chrome doesn't play nicely with CSS3 gradients. This fixes that problem, so now you can see tooltips properly in Chrome
  • Loading branch information
hobnob committed Nov 28, 2012
1 parent 2ad7a3d commit 34e74a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ canvas
{
position:relative;
width:800px;
background: -webkit-linear-gradient(#ECECEC, #CACACA);
background: -moz-linear-gradient(#ECECEC, #CACACA);
background: -o-linear-gradient(#ECECEC, #CACACA);
background: -ms-linear-gradient(#ECECEC, #CACACA);
background: linear-gradient(#ECECEC, #CACACA);
border-bottom: 1px solid #9A9A9A;
border-radius: 0px 0px 10px 10px;
color:#585351;
text-shadow: 0 1px 0 white;
text-shadow: 0px 1px 0px white;
padding-top:10px;
padding-bottom:10px;
font-weight: bold;
Expand Down

0 comments on commit 34e74a1

Please sign in to comment.