scss: don't add borders to light form style focused inputs (#25507)

This commit is contained in:
Frédéric Péters 2018-07-26 20:10:27 +02:00
parent 1405c40a7e
commit 1964cf9fa9
1 changed files with 2 additions and 1 deletions

View File

@ -278,7 +278,8 @@ div.select2-search {
input[type="datetime-local"], input[type="month"], input[type="time"],
input[type="week"], textarea, select {
border-width: 0 0 1px 0;
&:focus {
&:focus:not([readonly]) {
border-width: 0 0 1px 0;
border-bottom-color: $button-background;
}
}