alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
ad automcplete
author
damedotblog
date
1 year ago
(Apr 23, 2025, 12:33 PM -0400)
commit
afb7877f
afb7877ff1e1a77e7493eb529ff74d08ef6246b2
parent
3091c22e
3091c22efced8c759f38bf319c444b56c8e069a6
+6
-17
1 changed file
Expand all
Collapse all
Unified
Split
src
components
Verifier
Verifier.css
+6
-17
src/components/Verifier/Verifier.css
Reviewed
···
390
390
.verifier-suggestions-list {
391
391
list-style: none;
392
392
padding: 0;
393
393
-
margin: 5px 0 0 0;
393
393
+
margin: 10px 0px 0px 0px;
394
394
position: absolute;
395
395
top: 100%; /* Position below the input */
396
396
left: 0;
397
397
right: 0;
398
398
background-color: var(--navbar-bg); /* Match nearby elements */
399
399
-
border: 1px solid var(--card-border);
400
400
-
border-top: none; /* Avoid double border with input */
401
401
-
border-radius: 0 0 6px 6px; /* Round bottom corners */
402
402
-
max-height: 250px; /* Limit height and allow scroll */
403
403
-
overflow-y: auto;
399
399
+
border: 2px solid var(--card-border);
400
400
+
border-radius: 6px; /* Round bottom corners */
401
401
+
max-height: 275px; /* Limit height and allow scroll */
402
402
+
overflow: clip;
404
403
z-index: 1000; /* Ensure it appears above other content */
405
404
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
406
405
}
···
411
410
padding: 10px 15px;
412
411
cursor: pointer;
413
412
transition: background-color 0.2s ease;
414
414
-
}
415
415
-
416
416
-
.verifier-suggestion-item:hover {
417
417
-
background-color: var(--button-hover-bg); /* Use button hover for consistency */
418
418
-
color: var(--button-text);
419
413
}
420
414
421
415
.verifier-suggestion-item.loading,
···
458
452
color: var(--text-muted);
459
453
text-overflow: ellipsis;
460
454
overflow: hidden;
461
461
-
}
462
462
-
463
463
-
/* Adjust handle color on hover */
464
464
-
.verifier-suggestion-item:hover .verifier-suggestion-handle {
465
465
-
color: var(--button-text); /* Match parent hover color */
466
466
-
}
455
455
+
}