it's ok now???? why????

main
The_miro 2025-10-17 16:18:41 +02:00
parent 56f0dcc16e
commit 697b0c0c46
1 changed files with 7 additions and 4 deletions

View File

@ -5,6 +5,7 @@
font-size: 14pt; font-size: 14pt;
color: #d6abab; /* Updated text color */ color: #d6abab; /* Updated text color */
background-color: #1a1a1a; background-color: #1a1a1a;
border-radius: 15px;
} }
/* Window styling */ /* Window styling */
@ -18,7 +19,8 @@ window {
.rubberband { .rubberband {
background-color: rgba(80, 24, 221, 0.2); /* translucent purple */ background-color: rgba(80, 24, 221, 0.2); /* translucent purple */
border: 1px solid rgba(80, 24, 221, 0.8); border: none;
border-radius: 5px;
} }
@ -29,8 +31,9 @@ iconview:selected,
treeview:selected, treeview:selected,
list:selected, list:selected,
row:selected { row:selected {
background-color: rgba(80, 24, 221, 0.25); /* subtle translucent purple */ color: #E40046; /* readable text */
color: #d6abab; /* readable text */ border-width: 5px;
border-color: #E40046;
} }
/* Also handle focus highlight for keyboard navigation */ /* Also handle focus highlight for keyboard navigation */
@ -38,7 +41,7 @@ row:selected {
.view:selected:focus, .view:selected:focus,
row:selected:focus { row:selected:focus {
background-color: rgba(80, 24, 221, 0.35); background-color: rgba(80, 24, 221, 0.35);
color: #ffffff; color: #5018DD;
} }
/* Smooth out / disable the dark flash when reaching scroll limits */ /* Smooth out / disable the dark flash when reaching scroll limits */