diff -Nru pop-shell-1.1.0~1617915890~20.04~ae08bb0/dark.css pop-shell-1.1.0~1617950178~20.04~163d207/dark.css --- pop-shell-1.1.0~1617915890~20.04~ae08bb0/dark.css 2021-04-08 21:04:50.000000000 +0000 +++ pop-shell-1.1.0~1617950178~20.04~163d207/dark.css 2021-04-09 06:36:18.000000000 +0000 @@ -60,3 +60,7 @@ .pop-shell-tab-urgent { background: #D00; } + +.pop-shell-entry:indeterminate { + font-style: italic +} \ No newline at end of file diff -Nru pop-shell-1.1.0~1617915890~20.04~ae08bb0/debian/changelog pop-shell-1.1.0~1617950178~20.04~163d207/debian/changelog --- pop-shell-1.1.0~1617915890~20.04~ae08bb0/debian/changelog 2021-04-08 21:04:50.000000000 +0000 +++ pop-shell-1.1.0~1617950178~20.04~163d207/debian/changelog 2021-04-09 06:36:18.000000000 +0000 @@ -1,6 +1,6 @@ -pop-shell (1.1.0~1617915890~20.04~ae08bb0) focal; urgency=medium +pop-shell (1.1.0~1617950178~20.04~163d207) focal; urgency=medium * Auto Build - -- Pop OS (ISO Signing Key) Thu, 8 Apr 2021 15:04:50 -0600 + -- Pop OS (ISO Signing Key) Fri, 9 Apr 2021 00:36:18 -0600 diff -Nru pop-shell-1.1.0~1617915890~20.04~ae08bb0/light.css pop-shell-1.1.0~1617950178~20.04~163d207/light.css --- pop-shell-1.1.0~1617915890~20.04~ae08bb0/light.css 2021-04-08 21:04:50.000000000 +0000 +++ pop-shell-1.1.0~1617950178~20.04~163d207/light.css 2021-04-09 06:36:18.000000000 +0000 @@ -60,3 +60,7 @@ .pop-shell-tab-urgent { background: #D00; } + +.pop-shell-entry:indeterminate { + font-style: italic +} \ No newline at end of file diff -Nru pop-shell-1.1.0~1617915890~20.04~ae08bb0/src/dialog_search.ts pop-shell-1.1.0~1617950178~20.04~163d207/src/dialog_search.ts --- pop-shell-1.1.0~1617915890~20.04~ae08bb0/src/dialog_search.ts 2021-04-08 21:04:50.000000000 +0000 +++ pop-shell-1.1.0~1617950178~20.04~163d207/src/dialog_search.ts 2021-04-09 06:36:18.000000000 +0000 @@ -44,11 +44,15 @@ this.widgets = []; this.entry = new St.Entry({ + style_class: "pop-shell-entry", can_focus: true, x_expand: true }); + this.entry.set_hint_text(' Type to search apps') + this.text = this.entry.get_clutter_text(); + (this.text as any).set_use_markup(true) this.dialog.setInitialKeyFocus(this.text); this.text.connect("activate", () => this.activate_option(this.active_id)); @@ -194,7 +198,7 @@ try { imports.misc.util.ensureActorVisibleInScrollView(this.scroller, widget) } catch (_error) { - + } } diff -Nru pop-shell-1.1.0~1617915890~20.04~ae08bb0/src/mod.d.ts pop-shell-1.1.0~1617950178~20.04~163d207/src/mod.d.ts --- pop-shell-1.1.0~1617915890~20.04~ae08bb0/src/mod.d.ts 2021-04-08 21:04:50.000000000 +0000 +++ pop-shell-1.1.0~1617950178~20.04~163d207/src/mod.d.ts 2021-04-09 06:36:18.000000000 +0000 @@ -291,5 +291,6 @@ clutter_text: any; get_clutter_text(): Clutter.Text; + set_hint_text(hint: string): void; } }