fix: improve purchased items visibility on dark theme
Use custom .shopping-purchased class for purchased items in shopping list. Now purchased items have proper background on both light and dark themes. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -191,6 +191,16 @@
|
||||
border-color: rgba(139, 92, 246, 0.5);
|
||||
}
|
||||
|
||||
.shopping-purchased {
|
||||
background-color: rgb(240, 253, 244);
|
||||
border-color: rgb(187, 247, 208);
|
||||
}
|
||||
|
||||
[data-theme="dark"] .shopping-purchased {
|
||||
background-color: rgba(34, 197, 94, 0.15);
|
||||
border-color: rgba(34, 197, 94, 0.4);
|
||||
}
|
||||
|
||||
.animate-fadeIn {
|
||||
animation: fadeIn 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user