fixed gtk3 selection looking weird

main
The_miro 2025-10-17 13:47:05 +02:00
parent 54ef0be702
commit 51b9460899
1 changed files with 28 additions and 0 deletions

View File

@ -14,6 +14,34 @@ window {
padding: 20px; /* Increased padding for window */ padding: 20px; /* Increased padding for window */
} }
/* Thunar / GTK3 selection fixes */
/* Rubberband (drag selection box) */
.rubberband {
background-color: rgba(80, 24, 221, 0.2); /* translucent purple */
border: 1px solid rgba(80, 24, 221, 0.6);
}
/* Selected items (in icon view, list view, etc.) */
*:selected,
.view:selected,
iconview:selected,
treeview:selected,
list:selected,
row:selected {
background-color: rgba(80, 24, 221, 0.25); /* subtle translucent purple */
color: #d6abab; /* readable text */
}
/* Also handle focus highlight for keyboard navigation */
*:selected:focus,
.view:selected:focus,
row:selected:focus {
background-color: rgba(80, 24, 221, 0.35);
color: #ffffff;
}
/* Buttons and entries */ /* Buttons and entries */
button, entry, .button { button, entry, .button {
background-color: #1a1a1a; background-color: #1a1a1a;