Fix transparency for GTK 3.20 themes too

This commit is contained in:
Iain Lane 2017-02-01 10:59:11 +00:00
parent 4aaaaff2ef
commit e494f07769
1 changed files with 4 additions and 2 deletions

View File

@ -404,7 +404,8 @@ class Terminator(Borg):
.terminator-terminal-window {
background-color: alpha(@theme_bg_color,0); }
.terminator-terminal-window .notebook.header {
.terminator-terminal-window .notebook.header,
.terminator-terminal-window notebook header {
background-color: @theme_bg_color; }
.terminator-terminal-window .pane-separator {
@ -417,7 +418,8 @@ class Terminator(Borg):
# Fix several themes that put a borders, corners, or backgrounds around
# viewports, making the titlebar look bad.
css += """
.terminator-terminal-window GtkViewport {
.terminator-terminal-window GtkViewport,
.terminator-terminal-window viewport {
border-width: 0px;
border-radius: 0px;
background-color: transparent; }