From 592fc77cd2fb1f571e69dd7102ebea3dbe3d95fd Mon Sep 17 00:00:00 2001 From: Masataka Yakura Date: Thu, 13 Oct 2011 01:17:51 +0900 Subject: [PATCH] fix -moz-background-clip value so that old Firefox can understand. Fix for #2677 --- themes/valencia/jquery.mobile.theme.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/valencia/jquery.mobile.theme.css b/themes/valencia/jquery.mobile.theme.css index 372bcb2cca4..a6ffa653f48 100644 --- a/themes/valencia/jquery.mobile.theme.css +++ b/themes/valencia/jquery.mobile.theme.css @@ -874,7 +874,7 @@ a.ui-link-inherit { .ui-btn-corner-br, .ui-btn-corner-top, .ui-btn-corner-bottom, .ui-btn-corner-right, .ui-btn-corner-left, .ui-btn-corner-all { -webkit-background-clip: padding-box; - -moz-background-clip: padding-box; + -moz-background-clip: padding; background-clip: padding-box; } @@ -965,4 +965,4 @@ a.ui-btn.ui-btn-inline.ui-btn-corner-all .ui-btn-inner{ /* inner highlight is janky! */ .ui-dialog a.ui-btn-icon-notext.ui-btn-corner-all .ui-btn-inner.ui-btn-corner-all{ border-top-color: transparent; -} \ No newline at end of file +}