diff --git a/discover/qml/ApplicationsListPage.qml b/discover/qml/ApplicationsListPage.qml index a4469036cb5c507b4cab92a29fa44fb558f2a6b4..1142c092300c59e19424e4753c32f5071b3efd18 100644 --- a/discover/qml/ApplicationsListPage.qml +++ b/discover/qml/ApplicationsListPage.qml @@ -59,6 +59,12 @@ DiscoverPage { .replace(/'/g, "'"); } + background: Rectangle { + color: Kirigami.Theme.backgroundColor + Kirigami.Theme.colorSet: Kirigami.Theme.Window + Kirigami.Theme.inherit: false + } + title: search.length>0 ? i18n("Search: %1", escapeHtml(search)) : category ? category.name : "" diff --git a/discover/qml/BrowsingPage.qml b/discover/qml/BrowsingPage.qml index 3b3957e84b1509a546d906cc5235c6f83a5a7acb..2545374d186941b450a389e1f625c24098e2180d 100644 --- a/discover/qml/BrowsingPage.qml +++ b/discover/qml/BrowsingPage.qml @@ -42,6 +42,12 @@ DiscoverPage Navigation.openCategory(null, "") } + background: Rectangle { + color: Kirigami.Theme.backgroundColor + Kirigami.Theme.colorSet: Kirigami.Theme.Window + Kirigami.Theme.inherit: false + } + signal clearSearch() readonly property bool compact: page.width < 550 || !applicationWindow().wideScreen diff --git a/discover/qml/SourcesPage.qml b/discover/qml/SourcesPage.qml index 8a44e6e4a3a2ffcb553dc33164a9742cca867cdf..08aa3e0fb58c52bf63da2790340d4dd7d96370be 100644 --- a/discover/qml/SourcesPage.qml +++ b/discover/qml/SourcesPage.qml @@ -12,6 +12,12 @@ DiscoverPage { title: i18n("Sources") property string search: "" + background: Rectangle { + color: Kirigami.Theme.backgroundColor + Kirigami.Theme.colorSet: Kirigami.Theme.Window + Kirigami.Theme.inherit: false + } + mainItem: ListView { id: sourcesView model: QSortFilterProxyModel {