Sublime Forum

How to style the search text in quick panel?

#1

Hi

I can’t figure out how to style the text input in the quick panel. quick_panel_label and quick_panel_path_label control the data row, but I want to also change the font.face of the input text on top. Reading the doc, I couldn’t find anything to match. Any idea?

thanks in advance

0 Likes

#2

The following might be what you want.

{
	"class": "text_line_control",
	"parents": [
		{"class": "overlay_control"}
	],
	"font.face": "iosevka"
},
0 Likes

#3

Thanks. But when I did this, I got

no such prop font.face when matching text_line_control against text_line_control

in the console and no change.

In case I’m not being clear I’m including a screen shot of what I’m referring to.scr

0 Likes

#4

Ah yes, forgot about inputs being “editor controls” which use normal Preferences for fonts. There are several “Widget.sublime-settings” files, but font settings seem not to apply to quick panel or command palette input fields.

0 Likes