From 6110ca1a3b6cf8cdc0d0a16070a6bdee6753ce71 Mon Sep 17 00:00:00 2001 From: actionless <actionless.loveless@gmail.com> Date: Sun, 10 Apr 2016 14:13:48 +0200 Subject: [PATCH] fix(gtk3.20: notebook): s/:active/:checked/g --- gtk-3.20/scss/widgets/_notebook.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gtk-3.20/scss/widgets/_notebook.scss b/gtk-3.20/scss/widgets/_notebook.scss index 9efb3b1..ba97327 100644 --- a/gtk-3.20/scss/widgets/_notebook.scss +++ b/gtk-3.20/scss/widgets/_notebook.scss @@ -58,10 +58,13 @@ border-color: shade($base_color, .8); } - &:active { + &:checked { background-color: $base_color; background-image: none; border-color: shade($base_color, .85); + label { + color: $text_color; + } } &.top { @@ -113,7 +116,7 @@ inset 1px 0 shade($base_color, .7), inset -1px 0 shade($base_color, .7); } - &:active { + &:checked { background-color: shade($base_color, .9); border-left: 0; border-right: 0;