Fix transparency for GTK 3.20 themes too
This commit is contained in:
parent
4aaaaff2ef
commit
e494f07769
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue