The font-size of the textarea
that accepts SQL queries on my phpMyAdmin installation is too small. One workaround I found is to increase the minimum font size i
On phpmyadmin 4.9.5 just change the ".Codemirror" in:
\phpMyAdmin\js\vendor\codemirror\lib\codemirror.css
add:
font-size: 1.5em; /* add this line to what font size you want */
Also change the file: "common.css.php" in:
\phpMyAdmin\themes\your_theme\css\common.css.php
in that file search for and add:
textarea,
tt,
pre,
code {
font-family: ;
font-size: 1.5em; /* add this line to what font size you want */
}
And that should do it!
With this you will see a better size font on query textarea when edit and to view the query when you are not editing.