Bug 892499 - Use background-color instead of box-shadow to prevent drawing glitches. r=dao

This commit is contained in:
Mike de Boer 2013-07-23 13:55:00 +02:00
parent 72ce02ec65
commit cdb18a9fe2
2 changed files with 4 additions and 4 deletions

View File

@ -66,12 +66,12 @@ findbar[position="top"][hidden] {
}
.findbar-textbox[status="notfound"] {
box-shadow: 0 0 0 1em #f66 inset;
background-color: #f66;
color: white;
}
.findbar-textbox[flash="true"] {
box-shadow: 0 0 0 1em yellow inset;
background-color: yellow;
color: black;
}

View File

@ -73,12 +73,12 @@ findbar[position="top"][hidden] {
}
.findbar-textbox[status="notfound"] {
box-shadow: 0 0 0 1em #f66 inset;
background-color: #f66;
color: white;
}
.findbar-textbox[flash="true"] {
box-shadow: 0 0 0 1em yellow inset;
background-color: yellow;
color: black;
}