Mate: Fix text cursor color while renaming file in caja

This commit is contained in:
EliverLara
2021-04-07 15:24:35 -05:00
parent c59cc1ff37
commit c5353ce1d6
4 changed files with 24 additions and 1 deletions

View File

@@ -15,4 +15,5 @@
@import 'apps/geary';
@import 'apps/lightdm';
@import 'apps/nemo';
@import 'apps/nemo';
@import 'apps/caja';

8
gtk-3.0/apps/_caja.scss Normal file
View File

@@ -0,0 +1,8 @@
.caja-notebook .entry {
background: $bg_color;
color: $fg_color;
&:selected {
background: $selected_bg_color;
color: $selected_fg_color;
}
}

View File

@@ -6364,3 +6364,10 @@ ConversationListView {
background: linear-gradient(to right, #c50ed2, #8500f7);
box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
color: white; }
.caja-notebook .entry {
background: #161925;
color: #C3C7D1; }
.caja-notebook .entry:selected {
background: #c50ed2;
color: #fefefe; }

View File

@@ -6364,3 +6364,10 @@ ConversationListView {
background: linear-gradient(to right, #c50ed2, #8500f7);
box-shadow: 0px 0px 5px rgba(197, 14, 210, 0.98);
color: white; }
.caja-notebook .entry {
background: #161925;
color: #C3C7D1; }
.caja-notebook .entry:selected {
background: #c50ed2;
color: #fefefe; }