Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/components/Filter/Panel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,19 +217,19 @@ const hasActiveFilters = computed(() => !!filterSummary.value)
</label>
<!-- Search scope toggle -->
<div
class="inline-flex rounded-md border border-border p-0.5 bg-bg"
class="inline-flex rounded-md border border-border p-0.5 bg-bg-muted"
role="group"
:aria-label="$t('filters.search_scope')"
>
<button
v-for="scope in SEARCH_SCOPE_VALUES"
:key="scope"
type="button"
class="px-2 py-0.5 text-xs font-mono rounded-sm transition-colors duration-200 focus-visible:ring-2 focus-visible:ring-fg focus-visible:ring-offset-1"
class="px-2 py-0.5 text-xs font-mono rounded-sm border transition-colors duration-200 focus-visible:ring-2 focus-visible:ring-fg focus-visible:ring-offset-1"
:class="
filters.searchScope === scope
? 'bg-bg-muted text-fg'
: 'text-fg-muted hover:text-fg'
? 'bg-bg-subtle text-fg border-fg-subtle'
: 'text-fg-muted hover:text-fg border-transparent'
"
:aria-pressed="filters.searchScope === scope"
:title="getScopeDescriptionKey(scope)"
Expand Down
Loading