Skip to content

Commit

Permalink
Fix invisible caret in caja (#3431)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupi007 committed Mar 1, 2022
1 parent 8145e1b commit 7610690
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions gtk/src/default/gtk-3.0/apps/_caja.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ window#Main.background {
border-bottom: 1px solid $_pull_down_terminal_border_color;
entry { border-color: $_pull_down_terminal_border_color; }
}


}

// Fix for invivible caret navigation in dark theme
.caja-navigation-window widget.view widget.entry {
background: if($variant=="light", darken($bg_color, 5%), lighten($bg_color, 5%));
color: $fg_color;
border-color: $borders_color;

&:selected {
background: $selected_bg_color;
color: $selected_fg_color;
}
}

0 comments on commit 7610690

Please sign in to comment.