| 1 |
input[type=checkbox], |
| 2 |
input[type=radio] { |
| 3 |
border: 1px solid rgba(0,0,0,.25); |
| 4 |
box-shadow: initial; |
| 5 |
} |
| 6 |
|
| 7 |
input[type=checkbox]::before, |
| 8 |
input[type=radio]::before { |
| 9 |
content: initial !important; |
| 10 |
margin: initial; |
| 11 |
} |
| 12 |
|
| 13 |
select, |
| 14 |
input { |
| 15 |
border: 1px solid #ced4da !important; |
| 16 |
} |
| 17 |
|
| 18 |
|
| 19 |
input.form-check-input:focus { |
| 20 |
box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%) !important; |
| 21 |
outline: 0 !important; |
| 22 |
} |
| 23 |
|
| 24 |
select.form-select:focus, |
| 25 |
input.form-control:focus, |
| 26 |
input.ays-text-input:focus { |
| 27 |
box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%) !important; |
| 28 |
color: #212529 !important; |
| 29 |
background-color: #fff !important; |
| 30 |
border-color: #86b7fe !important; |
| 31 |
outline: 0 !important; |
| 32 |
} |
| 33 |
|