Skip to content

Commit

Permalink
Merge pull request #60 from nimbupani/patch-1
Browse files Browse the repository at this point in the history
Adding -o- and -ms- prefixes
  • Loading branch information
creationix committed Jan 30, 2012
2 parents dfe56a2 + 01fa5b4 commit 09ed540
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion skin/public/style.css
Expand Up @@ -60,10 +60,12 @@ dl a:hover {
top: 0; top: 0;
width: 100%; width: 100%;
height: 50px; height: 50px;
background-color: #0054a6;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0054a6), color-stop(1, #004385)); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0054a6), color-stop(1, #004385));
background-image: -webkit-linear-gradient(top, #0054a6 0%, #004385 100%); background-image: -webkit-linear-gradient(top, #0054a6 0%, #004385 100%);
background-image: -moz-linear-gradient(top, #0054a6 0%, #004385 100%); background-image: -moz-linear-gradient(top, #0054a6 0%, #004385 100%);
background-image: linear-gradient(top, #0054a6 0%, #004385 100%); background-image: -o-linear-gradient(top, #0054a6 0%, #004385 100%);
background-image: -ms-linear-gradient(top, #0054a6 0%, #004385 100%);
border-bottom: 1px solid #003264; border-bottom: 1px solid #003264;
-webkit-box-shadow: 0px 10px 10px rgba(0,0,0,0.10), inset 0px -1px 0px rgba(255,255,255,0.20); -webkit-box-shadow: 0px 10px 10px rgba(0,0,0,0.10), inset 0px -1px 0px rgba(255,255,255,0.20);
-moz-box-shadow: 0px 10px 10px rgba(0,0,0,0.10), inset 0px -1px 0px rgba(255,255,255,0.20); -moz-box-shadow: 0px 10px 10px rgba(0,0,0,0.10), inset 0px -1px 0px rgba(255,255,255,0.20);
Expand Down Expand Up @@ -325,6 +327,8 @@ dl a:hover {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.00)), color-stop(1, rgba(0,0,0,0.10))); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.00)), color-stop(1, rgba(0,0,0,0.10)));
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%); background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
background-image: -moz-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%); background-image: -moz-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
background-image: -o-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
background-image: -ms-linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
background-image: linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%); background-image: linear-gradient(top, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
border-top: 1px dashed #444; border-top: 1px dashed #444;
-webkit-box-shadow: inset 0px -1px 0px #262626; -webkit-box-shadow: inset 0px -1px 0px #262626;
Expand Down

0 comments on commit 09ed540

Please sign in to comment.