Increase font size of SQL query box

前端 未结 7 728
北荒
北荒 2021-01-07 23:50

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

7条回答
  •  -上瘾入骨i
    2021-01-08 00:13

    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.

提交回复
热议问题