Skip to content

Commit

Permalink
Updating gradients in jqm-docs.css ui-bar-f style to match default th…
Browse files Browse the repository at this point in the history
…eme gradients with opera et al.
  • Loading branch information
jgable committed Jul 18, 2011
1 parent a7ab4c0 commit 286f024
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/_assets/css/jqm-docs.css
Expand Up @@ -82,13 +82,13 @@ p.intro strong {
background: #74b042;
color: #fff;
font-weight: bold;
text-shadow: 0 -1px 1px #234403;
background-image: -moz-linear-gradient(top,
#74b042,
#56A00E);
background-image: -webkit-gradient(linear,left top,left bottom,
color-stop(0, #74b042),
color-stop(1, #56A00E));
text-shadow: 0 -1px 1px #234403;
background-image: -webkit-gradient(linear, left top, left bottom, from(#74b042), to(#56A00E)); /* Saf4+, Chrome */
background-image: -webkit-linear-gradient(top, #74b042, #56A00E); /* Chrome 10+, Saf5.1+ */
background-image: -moz-linear-gradient(top, #74b042, #56A00E); /* FF3.6 */
background-image: -ms-linear-gradient(top, #74b042, #56A00E); /* IE10 */
background-image: -o-linear-gradient(top, #74b042, #56A00E); /* Opera 11.10+ */
background-image: linear-gradient(top, #74b042, #56A00E);
}
.ui-bar-f,
.ui-bar-f .ui-link-inherit {
Expand Down

0 comments on commit 286f024

Please sign in to comment.