Open Aurea-Li opened 11 months ago
I'm using activeadmin 3.2.0 without activeadmin_addons and I'm also experiencing this issue, makes me think it isn't activeadmin_addons related.
Using this reference, I added the following to active_admin.scss
and it made things look much more consistent for me:
form select {
border: $border-width solid #c9d0d6;
@include rounded;
font-size: 0.95em;
@include sans-family;
outline: none;
padding: 7px $text-input-horizontal-padding 6px;
&:focus {
border: $border-width solid #99a2aa;
@include shadow(0,0,4px,#99a2aa);
}
}
Hope that helps @Aurea-Li
Describe the bug The current
activeadmin_addons
gem I'm using is the latest stable,1.10.1
. After upgradingactiveadmin
from2.12.0
to3.2.0
, I noticed that all select boxes lost their styling. If I downgradeactiveadmin
back to2.12.0
and keepactiveadmin_addons
gem at1.10.1
, the select styling shows up again.To Reproduce Steps to reproduce the behavior:
3.2.0
ofactiveadmin
, and version1.10.1
ofactiveadmin_addons
.Expected behavior
Screenshots
Additional context Here are the imports from my
active_admin.scss
file.Here are the imports from my
active_admin.js
file.I don't have anything set in
ActiveadminAddons.setup do |config|
, and I'm not runningconfig.register_stylesheet
anywhere inActiveAdmin.setup do |config|
.