From 1a8c9bfa670e1abe1746c67336ac9b3bef7d30bd Mon Sep 17 00:00:00 2001 From: Csaba Jakosa Date: Mon, 23 Jan 2017 12:43:55 +0100 Subject: [PATCH] [Gtk-3.22][Gtk-3.20] Fix iconview background for Unity-Control-Center. Fixes #634 --- .../scss/apps/_gnome-applications.scss | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/gtk-3.20/scss/apps/_gnome-applications.scss b/src/gtk-3.20/scss/apps/_gnome-applications.scss index 83dbdd2..dc20144 100644 --- a/src/gtk-3.20/scss/apps/_gnome-applications.scss +++ b/src/gtk-3.20/scss/apps/_gnome-applications.scss @@ -29,3 +29,31 @@ } } } + + +/************************ + ! Unity-Control-Center * +*************************/ + +@include exports("unity-control-center") { + // Fixed: https://github.com/numixproject/numix-gtk-theme/issues/634 + .background:not(.csd):not(.solid-csd) > box.vertical > notebook.frame { + // hide unwanted frames + border: 0 none transparent; + + > stack > scrolledwindow > viewport > box.vertical > frame > box.vertical { + // reset $base_color; + iconview.view { + &, &:backdrop { + background-color: transparent; + } + + &:selected { + &:focus, & { + @extend %selected_items; + } + } + } + } + } +}