From b8f51c23ba164808442789e2f9948eb4c8d0bf33 Mon Sep 17 00:00:00 2001 From: Devin Reams Date: Mon, 13 Nov 2017 12:25:53 -0700 Subject: [PATCH] Set text area focus blue to match input styles (#328) * Set text area focus blue to match input styles * also update box-shadow for consistency --- src/webextension/widgets/text-area.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/webextension/widgets/text-area.css b/src/webextension/widgets/text-area.css index 64a3738b..46b159ae 100644 --- a/src/webextension/widgets/text-area.css +++ b/src/webextension/widgets/text-area.css @@ -17,7 +17,8 @@ } .text-area:focus { - /* Note: This is reverse-engineered by looking at the mockups. */ - border-color: #7cddee; - box-shadow: 0 0 3px rgba(124, 221, 238, 0.5); + border-color: #0a84ff; + /* Note: This is a best-guess from the screenshots for the Photon spec, since + the box shadow isn't actually specified. */ + box-shadow: 0 0 3px rgba(10, 168, 255, 0.5); }