Skip to content

Commit 76909e5

Browse files
authored
fix: same style as #1659 for filter tabs in org (#1665)
1 parent dd3c186 commit 76909e5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/components/Filter/Panel.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,19 +217,19 @@ const hasActiveFilters = computed(() => !!filterSummary.value)
217217
</label>
218218
<!-- Search scope toggle -->
219219
<div
220-
class="inline-flex rounded-md border border-border p-0.5 bg-bg"
220+
class="inline-flex rounded-md border border-border p-0.5 bg-bg-muted"
221221
role="group"
222222
:aria-label="$t('filters.search_scope')"
223223
>
224224
<button
225225
v-for="scope in SEARCH_SCOPE_VALUES"
226226
:key="scope"
227227
type="button"
228-
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"
228+
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"
229229
:class="
230230
filters.searchScope === scope
231-
? 'bg-bg-muted text-fg'
232-
: 'text-fg-muted hover:text-fg'
231+
? 'bg-bg-subtle text-fg border-fg-subtle'
232+
: 'text-fg-muted hover:text-fg border-transparent'
233233
"
234234
:aria-pressed="filters.searchScope === scope"
235235
:title="getScopeDescriptionKey(scope)"

0 commit comments

Comments
 (0)