From 2c00d8c0fa43f0231032c973805c9061c410bf6e Mon Sep 17 00:00:00 2001 From: CezarSTF Date: Wed, 7 May 2025 14:39:40 +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..12e2fb1 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; // Red-800 for testing + } } &__filelist {