greybird-gtk-theme: update focused deprecated pseudo-class

This commit is contained in:
Luis Guzman 2024-10-30 10:24:38 +00:00 committed by Ark74
parent dbda85fde6
commit dda0d24f45

View file

@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
VERSION=12 VERSION=13
. ./config . ./config
#correct gtk2 color syntax #correct gtk2 color syntax
@ -129,7 +129,7 @@ EOF
## light ## light
cat << EOF >> light/gtk-3.0/_others.scss cat << EOF >> light/gtk-3.0/_others.scss
treeview.view:selected:not(:focused) { treeview.view:selected:not(:focus) {
color: #ffffff; color: #ffffff;
background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%); background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%);
} }
@ -137,7 +137,7 @@ EOF
## dark ## dark
cat << EOF >> dark/gtk-3.0/_others.scss cat << EOF >> dark/gtk-3.0/_others.scss
treeview.view:selected:not(:focused) { treeview.view:selected:not(:focus) {
color: #ffffff; color: #ffffff;
background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%); background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%);
} }