From e205b37ceb61bdb08d8b8209e7d4bed3002b511e Mon Sep 17 00:00:00 2001 From: Breno Rodrigues Date: Thu, 20 Jul 2017 11:21:52 -0300 Subject: [PATCH 1/2] Update index.html.js Fix blue outline at @sotybook/react --- app/react/src/server/index.html.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/react/src/server/index.html.js b/app/react/src/server/index.html.js index dc5b0afc42b8..ef364b1c9a4d 100644 --- a/app/react/src/server/index.html.js +++ b/app/react/src/server/index.html.js @@ -67,6 +67,11 @@ export default function({ assets, publicPath, headHtml }) { .btn:hover{ background-color: #eee } + + /* Remove blue outline defined by the user argent*/ + :focus { + outline: none !important; + } ${headHtml} From 20432fec12d19ac38b98c82fde676dc94bccce66 Mon Sep 17 00:00:00 2001 From: Breno Rodrigues Date: Thu, 20 Jul 2017 11:31:46 -0300 Subject: [PATCH 2/2] Update index.html.js Reset :focus outline to none --- app/react-native/src/server/index.html.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/react-native/src/server/index.html.js b/app/react-native/src/server/index.html.js index 1ab3ca5d59ba..ad3cd82ae69d 100644 --- a/app/react-native/src/server/index.html.js +++ b/app/react-native/src/server/index.html.js @@ -36,6 +36,11 @@ export default function(publicPath, options) { .btn:hover{ background-color: #eee } + + /* Remove blue outline defined by the user argent*/ + :focus { + outline: none !important; + }