diff options
-rw-r--r-- | common/gnome-shell/3.16/gnome-shell.css | 3 | ||||
-rw-r--r-- | common/gnome-shell/3.16/sass/_common.scss | 1 | ||||
-rw-r--r-- | common/gtk-2.0/main.rc | 10 |
3 files changed, 11 insertions, 3 deletions
diff --git a/common/gnome-shell/3.16/gnome-shell.css b/common/gnome-shell/3.16/gnome-shell.css index 0333c49..e2282fe 100644 --- a/common/gnome-shell/3.16/gnome-shell.css +++ b/common/gnome-shell/3.16/gnome-shell.css @@ -1512,8 +1512,7 @@ StEntry.chat-response { color: pink; } .legacy-tray { - background-color: rgba(31, 33, 37, 0.95); - border-width: 0; } + background-color: rgba(31, 33, 37, 0.95); } .legacy-tray:ltr { border-radius: 0 2px 0 0; border-left-width: 0; } diff --git a/common/gnome-shell/3.16/sass/_common.scss b/common/gnome-shell/3.16/sass/_common.scss index 76880e8..cb4815b 100644 --- a/common/gnome-shell/3.16/sass/_common.scss +++ b/common/gnome-shell/3.16/sass/_common.scss @@ -1846,7 +1846,6 @@ $legacy_icon_size: 24px; .legacy-tray { background-color: $panel_bg; - border-width: 0; &:ltr { border-radius: 0 2px 0 0; border-left-width: 0; } &:rtl { border-radius: 2px 0 0 0; border-right-width: 0; } diff --git a/common/gtk-2.0/main.rc b/common/gtk-2.0/main.rc index edec4be..c27dd21 100644 --- a/common/gtk-2.0/main.rc +++ b/common/gtk-2.0/main.rc @@ -2227,6 +2227,13 @@ style "notebook_viewport" { bg[NORMAL] = @notebook_bg } + +style "notebook_eventbox" { + + bg[NORMAL] = @notebook_bg + bg[ACTIVE] = @bg_color +} + style "tooltips" { xthickness = 8 @@ -2365,6 +2372,9 @@ widget_class "*<GtkNotebook>.<GtkLabel>" style "noteb # GTK tooltips widget "gtk-tooltip*" style "tooltips" +#Fix GVim tabs +widget_class "*<GtkNotebook>*<GtkEventBox>" style "notebook_eventbox" + # Xchat special cases widget "*xchat-inputbox" style "entry" |