Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions data/Application.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ icongroup .add-image {
-gtk-icon-shadow: 0 1px 0 alpha(@highlight_color, 0.2);
}

icongroup.background-apps image {
-gtk-icon-style: symbolic;
}

backgrounditem header {
padding: 0.5em 1em;
}
Expand Down
2 changes: 2 additions & 0 deletions src/AppSystem/Background/BackgroundItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public class Dock.BackgroundItem : BaseIconGroup {
popover.add_css_class (Granite.STYLE_CLASS_MENU);
popover.set_parent (this);

add_css_class ("background-apps");

monitor.background_apps.items_changed.connect ((pos, n_removed, n_added) => {
if (monitor.background_apps.get_n_items () == 0) {
popover.popdown ();
Expand Down