Skip to content

Commit f70a947

Browse files
author
Scott Jehl
committed
Merge pull request jquery-archive#2105 from jgable/fix_2104
Fixes jquery-archive#2104. IE style in docs for ui-bar-f roundyness.
2 parents 4d66aa6 + 286f024 commit f70a947

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docs/_assets/css/jqm-docs.css

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,13 @@ p.intro strong {
8282
background: #74b042;
8383
color: #fff;
8484
font-weight: bold;
85-
text-shadow: 0 -1px 1px #234403;
86-
background-image: -moz-linear-gradient(top,
87-
#74b042,
88-
#56A00E);
89-
background-image: -webkit-gradient(linear,left top,left bottom,
90-
color-stop(0, #74b042),
91-
color-stop(1, #56A00E));
92-
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#74b042', EndColorStr='#56A00E')";
85+
text-shadow: 0 -1px 1px #234403;
86+
background-image: -webkit-gradient(linear, left top, left bottom, from(#74b042), to(#56A00E)); /* Saf4+, Chrome */
87+
background-image: -webkit-linear-gradient(top, #74b042, #56A00E); /* Chrome 10+, Saf5.1+ */
88+
background-image: -moz-linear-gradient(top, #74b042, #56A00E); /* FF3.6 */
89+
background-image: -ms-linear-gradient(top, #74b042, #56A00E); /* IE10 */
90+
background-image: -o-linear-gradient(top, #74b042, #56A00E); /* Opera 11.10+ */
91+
background-image: linear-gradient(top, #74b042, #56A00E);
9392
}
9493
.ui-bar-f,
9594
.ui-bar-f .ui-link-inherit {

0 commit comments

Comments
 (0)