tangled
alpha
login
or
join now
ansxor.ca
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atmosphere explorer
0
fork
atom
overview
issues
pulls
pipelines
fix tab hover color
handle.invalid
1 month ago
467eae58
1d8e5052
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+4
-4
4 changed files
expand all
collapse all
unified
split
src
views
pds.tsx
record.tsx
repo.tsx
stream
index.tsx
+1
-1
src/views/pds.tsx
···
122
122
<A
123
123
classList={{
124
124
"border-b-2 font-medium transition-colors": true,
125
125
-
"border-transparent dark:text-neutral-300/80 text-neutral-600 hover:text-neutral-900 dark:hover:text-neutral-100":
125
125
+
"border-transparent not-hover:dark:text-neutral-300/80 not-hover:text-neutral-600":
126
126
(!!location.hash && location.hash !== `#${props.tab}`) ||
127
127
(!location.hash && props.tab !== "repos"),
128
128
}}
+1
-1
src/views/record.tsx
···
364
364
<A
365
365
classList={{
366
366
"border-b-2 font-medium transition-colors": true,
367
367
-
"border-transparent text-neutral-600 dark:text-neutral-300/80 hover:text-neutral-900 dark:hover:text-neutral-100":
367
367
+
"border-transparent not-hover:text-neutral-600 not-hover:dark:text-neutral-300/80":
368
368
!isActive(),
369
369
}}
370
370
href={`/at://${did}/${params.collection}/${params.rkey}#${props.tab}`}
+1
-1
src/views/repo.tsx
···
95
95
<A
96
96
classList={{
97
97
"border-b-2 font-medium transition-colors": true,
98
98
-
"border-transparent text-neutral-600 dark:text-neutral-300/80 hover:text-neutral-900 dark:hover:text-neutral-100":
98
98
+
"border-transparent not-hover:text-neutral-600 not-hover:dark:text-neutral-300/80":
99
99
!isActive(),
100
100
}}
101
101
href={`/at://${params.repo}#${props.tab}`}
+1
-1
src/views/stream/index.tsx
···
326
326
{(type) => (
327
327
<A
328
328
class="flex items-center gap-1 border-b-2 transition-colors"
329
329
-
inactiveClass="border-transparent text-neutral-600 dark:text-neutral-400 hover:text-neutral-900 dark:hover:text-neutral-100"
329
329
+
inactiveClass="border-transparent not-hover:text-neutral-600 not-hover:dark:text-neutral-400"
330
330
href={`/${type}`}
331
331
>
332
332
{STREAM_CONFIGS[type].label}