Skip to content
Snippets Groups Projects
Commit ae058aaa authored by Luis Guzmán's avatar Luis Guzmán
Browse files

greybird-gtk-theme: fix caja selected elements on inactive panel at list view

parent 59c07048
No related branches found
No related tags found
1 merge request!1341greybird-gtk-theme: fix caja selected elements on inactive panel at list view
Pipeline #1253 passed
......@@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
VERSION=11
VERSION=12
. ./config
#correct gtk2 color syntax
......@@ -125,7 +125,25 @@ style "darkpanel"
widget "*Panel*" style "darkpanel"
EOF
changelog "Customized for Trisquel"
# fix background non-selected pane - GitLab PH#152
## light
cat << EOF >> light/gtk-3.0/_others.scss
treeview.view:selected:not(:focused) {
color: #ffffff;
background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%);
}
EOF
## dark
cat << EOF >> dark/gtk-3.0/_others.scss
treeview.view:selected:not(:focused) {
color: #ffffff;
background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%);
}
EOF
changelog "Customized for Trisquel"
package
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment