Skip to content

Commit cb12635

Browse files
committed
tweaks
1 parent 4f3c56f commit cb12635

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

web_src/css/repo/clone.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@
2020
.clone-panel-tab .item {
2121
padding: 5px 10px;
2222
background: none;
23+
color: var(--color-text-light-2);
2324
}
2425

2526
.clone-panel-tab .item.active {
26-
border-bottom: 3px solid var(--color-text);
27+
color: var(--color-text-dark);
28+
border-bottom: 3px solid currentcolor;
2729
}
2830

2931
.clone-panel-tab + .divider {

web_src/js/modules/tippy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export function createTippy(target: Element, opts: TippyOpts = {}): Instance {
5151
...other,
5252
} satisfies Partial<Props>);
5353

54-
if (role === 'menu') {
54+
if (instance.props.role === 'menu') {
5555
target.setAttribute('aria-haspopup', 'true');
5656
}
5757

0 commit comments

Comments
 (0)