phpmyadmin / themes

Third party phpMyAdmin themes
https://www.phpmyadmin.net/themes/
202 stars 154 forks source link

Radio buttons have oval shape when calling a routine #107

Closed jnko266 closed 1 month ago

jnko266 commented 12 months ago

...as title suggests - when calling a routine that accepts ENUM parameters, it renders these as radio buttons, but these get stretched to the width of other inputs for the routine, making it an oval shape.

image

I´m running PMA 5.2.1 with the darkwolf theme.

williamdes commented 12 months ago

Thank you for reporting this

/cc @SteppenWolf68

jnko266 commented 12 months ago

I have a fix, simply add

.rte_table input[type="radio"] {
    width: 1em;
    height: 1em;
}

to file theme.css. Going to try to attempt a pull request momentarily