mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 11:57:51 +01:00
Fix hover and selected state issues for reason buttons in light theme.
This commit is contained in:
@@ -81,9 +81,9 @@
|
|||||||
<div class="flex flex-wrap gap-2 text-sm mt-2.5">
|
<div class="flex flex-wrap gap-2 text-sm mt-2.5">
|
||||||
{#each reasons as reason}
|
{#each reasons as reason}
|
||||||
<button
|
<button
|
||||||
class="px-3.5 py-1 border dark:border-gray-850 dark:hover:bg-gray-850 {selectedReason ===
|
class="px-3.5 py-1 border dark:border-gray-850 hover:bg-gray-100 dark:hover:bg-gray-850 {selectedReason ===
|
||||||
reason
|
reason
|
||||||
? 'dark:bg-gray-800'
|
? 'bg-gray-200 dark:bg-gray-800'
|
||||||
: ''} transition rounded-lg"
|
: ''} transition rounded-lg"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
selectedReason = reason;
|
selectedReason = reason;
|
||||||
|
|||||||
Reference in New Issue
Block a user