20 lines
620 B
CSS
20 lines
620 B
CSS
.combo-box-widget .form-control:focus,
|
||
.combo-box-widget .form-select:focus,
|
||
.combo-box-widget .btn:focus {
|
||
box-shadow: none !important;
|
||
outline: none !important;
|
||
border-color: #ced4da !important; /* Bootstrap’s default neutral border */
|
||
background-color: inherit; /* Or explicitly #fff if needed */
|
||
color: inherit;
|
||
}
|
||
|
||
.combo-box-widget .btn-primary:focus,
|
||
.combo-box-widget .btn-danger:focus {
|
||
background-color: inherit; /* Keep button from darkening */
|
||
color: inherit;
|
||
}
|
||
|
||
.combo-box-widget:focus-within {
|
||
box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
|
||
border-radius: 0.375rem;
|
||
}
|