scss: use transparent borders for readonly fields (#39683)

This commit is contained in:
Frédéric Péters 2020-02-09 20:33:41 +01:00
parent 4cb0f02e4c
commit 1e2b8207ee
1 changed files with 3 additions and 1 deletions

View File

@ -185,7 +185,9 @@ select option {
}
input[readonly], select[readonly], textarea[readonly] {
border-width: 0 0 1px 0;
border-left-color: transparent;
border-right-color: transparent;
border-top-color: transparent;
border-radius: 0;
}