From 0de2742f1c59876d5dbf134d72074553247ce270 Mon Sep 17 00:00:00 2001 From: CezarSTF Date: Wed, 18 Jun 2025 09:52:36 +0300 Subject: [PATCH] FORMS-18745: Color alone is used to visually convey the state of a control @sunnym @vavarshn --- src/components/fileinput/_fileinput.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/fileinput/_fileinput.scss b/src/components/fileinput/_fileinput.scss index c3d70f8..7ea57da 100644 --- a/src/components/fileinput/_fileinput.scss +++ b/src/components/fileinput/_fileinput.scss @@ -5,6 +5,12 @@ @include secondary-button; pointer-events: all; margin: $space-xs 0; + + &:focus { + outline: none; + border-radius: 0.2rem; + border: 2px solid $gray; + } } &__filelist {