Commit fbb67dbf authored by Neil Rashbrook's avatar Neil Rashbrook
Browse files

Work around bug 458231 for bug 69710 r=dao a=beltzner

parent 33f09c1f
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -83,6 +83,15 @@ checkbox[disabled="true"] {
  color: GrayText;
}

/* XXX Hack to work around bug 458231 */
checkbox:-moz-system-metric(windows-classic) {
  text-shadow: 1px 1px transparent;
}

checkbox:-moz-system-metric(windows-classic) > .checkbox-label-box > .checkbox-label {
  margin-bottom: -2px !important;
}

checkbox[disabled="true"]:-moz-system-metric(windows-classic) {
  color: ThreeDShadow;
  text-shadow: 1px 1px ThreeDHighlight;
+9 −0
Original line number Diff line number Diff line
@@ -86,6 +86,15 @@ radio[disabled="true"] {
  color: GrayText;
}

/* XXX Hack to work around bug 458231 */
radio:-moz-system-metric(windows-classic) {
  text-shadow: 1px 1px transparent;
}

radio:-moz-system-metric(windows-classic) > .radio-label-box > .radio-label {
  margin-bottom: -2px !important;
}

radio[disabled="true"]:-moz-system-metric(windows-classic) {
  color: ThreeDShadow;
  text-shadow: 1px 1px ThreeDHighlight;