style: don't add border to focused file inputs (#62209)

(missed in initial commit)
This commit is contained in:
Frédéric Péters 2022-03-05 16:01:48 +01:00
parent 2de4d57df3
commit 74e159e084
1 changed files with 3 additions and 0 deletions

View File

@ -249,6 +249,9 @@ div.date input[readonly] {
input[type=file] {
border: none;
padding-left: 0;
&:focus:not([readonly]) {
border: none;
}
}
select {