From 8f7098c03cc29a441244c63b3fc673f9f733d8f7 Mon Sep 17 00:00:00 2001
From: Shane Tomlinson <stomlinson@mozilla.com>
Date: Mon, 25 Jun 2012 09:12:12 +0100
Subject: [PATCH] Remove the box-shadow and border-color for disbled input
 fields.

Follow on to seanmonstar's PR 1790.

issue #1661
---
 resources/static/css/common.css | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/resources/static/css/common.css b/resources/static/css/common.css
index c12bdae41..8cde30586 100644
--- a/resources/static/css/common.css
+++ b/resources/static/css/common.css
@@ -128,6 +128,10 @@ input[type=password]:disabled {
      * issue #1311 */
     -webkit-text-fill-color: #4f4f4f;
     opacity: 1;
+    /* Remove the box-shadow and border-color that come with a focused input
+     * field */
+    box-shadow: none;
+    border-color: #b2b2b2;
 }
 
 input[type=radio],
-- 
GitLab