0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

phpMyAdminのSQL文が小さすぎて読めなぁぁぁぁい!!

Posted at

問題

phpMyAdminのSQL文を入力する欄のフォントサイズが小さすぎて読めなぁぁぁぁい!!
(自分の作業環境がモニターから1m近く離れていることが最大の原因なんですけどね)

image.png

原因の特定

Chromeの検証ツールでSQL文の入力欄を見てみる。
<textarea>で構成されている入力欄の直下に**CodeMirror**クラスがあったので、そこを触ってみる。

image.png

**CodeMirror**クラスが何処のファイルに記述されているのか、~\xampp\phpMyAdmin\を検索してみると、~\xampp\phpMyAdmin\pmahomme\css\codemirror.css.phpにあった。

解決策

**codemirror.css.php**を開いて、CodeMirrorクラスの箇所に好きなフォントサイズを追記する。

codemirror.css.php
.CodeMirror {
    height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
    direction: ltr;
    font-size: 18px;

}

自分が設定した18pxだと、このぐらいの大きさになる。

image.png

これならハズ●ルーペがなくても安心!!

参考記事

phpMyAdminのSQLクエリの文字サイズ変更 | 古松

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?