web-dev-qa-db-ja.com

Seamonkeyのブックマークのフォントのサイズを大きくする

Bookmarks screenshot

Seamonkeyで使用されているブックマークファイルで使用されているフォントのサイズを大きくしたいのですが

1
fixit7

ファイルマネージャを使用して/home/andy/.mozilla/seamonkey/k55ql4r2.default/chrome/を開き、andyを実際のユーザー名に変更し、k55ql4r2.defaultを実際のプロファイル名に変更します。

まったく同じスペルを使用して、userChrome.cssという名前の新しいtextファイルを作成します。

次のコンテンツを貼り付けます。

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 
/* set default namespace to XUL */

menupopup#bookmarksMenuPopup  * {
   font-size: 20pt !important
 }

20ptをより高い値またはより低い値に変更して、特定のニーズを満たすことができます。

Seamonkeyを再起動します。それは不可欠です。

前:

before editing userChrome.css

後:

after editing userChrome.css

1
DK Bose