Skip to content

Commit

Permalink
Mint-X/Y: Fix pane separators in Terminator.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed Oct 9, 2023
1 parent 4f3ff25 commit 6431f66
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Mint-X/theme/Mint-X/gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -3757,6 +3757,11 @@ PanelSeparator {
background-color: #3f3f3f;
color: #ffffff; }

.terminator-terminal-window > paned {
background-color: #383838; }
.terminator-terminal-window > paned.wide {
background-color: #383838; }

/************
* Ubiquity *
************/
Expand Down
5 changes: 5 additions & 0 deletions src/Mint-X/theme/Mint-X/gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -3771,6 +3771,11 @@ vte-terminal.terminal-screen {
background-color: #3f3f3f;
color: #ffffff; }

.terminator-terminal-window > paned {
background-color: #d6d6d6; }
.terminator-terminal-window > paned.wide {
background-color: #d6d6d6; }

/************
* Ubiquity *
************/
Expand Down
11 changes: 11 additions & 0 deletions src/Mint-X/theme/Mint-X/gtk-3.0/sass/_applications.scss
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,17 @@ PanelSeparator {
}
}

//
// Terminator
//
.terminator-terminal-window > paned {
background-color: $bg_color;

&.wide {
background-color: $bg_color;
}
}

/************
* Ubiquity *
************/
Expand Down
5 changes: 5 additions & 0 deletions src/Mint-Y/gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -3074,6 +3074,11 @@ vte-terminal {
background-color: #3f3f3f;
color: #fff; }

.terminator-terminal-window > paned {
background-color: #383838; }
.terminator-terminal-window > paned.wide {
background-color: #383838; }

.nautilus-canvas-item {
border-radius: 2px; }

Expand Down
5 changes: 5 additions & 0 deletions src/Mint-Y/gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -3079,6 +3079,11 @@ vte-terminal {
background-color: #3f3f3f;
color: #fff; }

.terminator-terminal-window > paned {
background-color: #f5f5f5; }
.terminator-terminal-window > paned.wide {
background-color: #f5f5f5; }

.nautilus-canvas-item {
border-radius: 2px; }

Expand Down
11 changes: 11 additions & 0 deletions src/Mint-Y/gtk-3.0/sass/_applications.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,17 @@ vte-terminal {
color: #fff;
}

//
// Terminator
//
.terminator-terminal-window > paned {
background-color: $bg_color;

&.wide {
background-color: $bg_color;
}
}

//
// Nautilus
//
Expand Down

0 comments on commit 6431f66

Please sign in to comment.