diff options
Diffstat (limited to 'toolkit/themes/windows/global/findBar.css')
-rw-r--r-- | toolkit/themes/windows/global/findBar.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/toolkit/themes/windows/global/findBar.css b/toolkit/themes/windows/global/findBar.css index 34b3ae49b..ecb1b2db1 100644 --- a/toolkit/themes/windows/global/findBar.css +++ b/toolkit/themes/windows/global/findBar.css @@ -15,7 +15,8 @@ } findbar { - padding-top: 1px; + padding: 4px 2px; + box-shadow: 0 1px 1px rgba(0,0,0,.1) inset; background-image: linear-gradient(rgba(0,0,0,.15) 1px, rgba(255,255,255,.15) 1px); background-size: 100% 2px; background-repeat: no-repeat; @@ -108,13 +109,22 @@ findbar[hidden] { list-style-image: url("chrome://global/skin/icons/information-16.png"); } +.findbar-textbox { + -moz-appearance: none; + border: 1px solid ThreeDShadow; + border-radius: 2px; + margin: 0; + padding: 1px 5px; + width: 14em; +} + .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; } |