Increase font size of SQL query box

前端 未结 7 730
北荒
北荒 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条回答
  • 2021-01-08 00:31

    Go to the css directory of the theme

    cd /var/www/html/myadmin11/themes/original/css

    Then vi theme_right.css.php

    find the "textarea#sqlquery" and change it

     textarea#sqlquery {
     font-size:2em;  /* add this line to what font size you want */
     width: 80%;
     height: 300%;
     }
    
    0 讨论(0)
提交回复
热议问题