Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit 858281d

Browse files
Theme CSS: Correction webkit prefixed value for background-clip. Removed moz prefixed prop/val because it is not used in FF4+.
1 parent baf0327 commit 858281d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

css/themes/default/jquery.mobile.theme.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -981,9 +981,8 @@ a.ui-link-inherit {
981981
/* radius clip workaround for cleaning up corner trapping */
982982
.ui-corner-all,
983983
.ui-btn-corner-all {
984-
-webkit-background-clip: padding-box;
985-
-moz-background-clip: padding;
986-
background-clip: padding-box;
984+
-webkit-background-clip: padding;
985+
background-clip: padding-box;
987986
}
988987

989988
/* Overlay / modal

0 commit comments

Comments
 (0)