From 7d509e8ae5efb9f12de98265b8a2175f68b58e1b Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 16 Jun 2018 17:00:35 -0700 Subject: [PATCH] Remove the glow on inputs in Safari/Chrome --- resources/assets/styles/components/forms.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/assets/styles/components/forms.css b/resources/assets/styles/components/forms.css index 5e03a315..687f1bb5 100644 --- a/resources/assets/styles/components/forms.css +++ b/resources/assets/styles/components/forms.css @@ -1,3 +1,7 @@ +textarea, select, input, button { + outline: none; +} + /** * Styles for the login form open input boxes. Label floats up above it when content * is input and then sinks back down into the field if left empty. @@ -31,6 +35,9 @@ transition: transform 200ms ease-out; } +/** + * Styling for other forms throughout the Panel. + */ .input:not(.open-label) { @apply .appearance-none .p-3 .rounded .border .text-grey-darker .w-full; transition: all 100ms linear;