Skip to content

Commit c3bcd30

Browse files
committed
Fixes #4703 underlines showing on home branch actions
1 parent bcde778 commit c3bcd30

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1010

1111
- Changes the minimum VS Code version to 1.95.0 ([#4691](https://github.com/gitkraken/vscode-gitlens/issues/4691))
1212

13+
### Fixed
14+
15+
- Fixes underlines showing on home branch actions ([#4703](https://github.com/gitkraken/vscode-gitlens/issues/4703))
16+
1317
## [17.6.2] - 2025-10-16
1418

1519
### Changed

src/webviews/apps/shared/components/actions/action-item.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,14 @@ export class ActionItem extends LitElement {
5353
justify-content: center;
5454
width: 100%;
5555
height: 100%;
56+
text-decoration: none;
5657
}
5758
a:focus {
5859
outline: none;
5960
}
61+
a:is(:hover, :focus, :active) {
62+
text-decoration: none;
63+
}
6064
`;
6165

6266
@property()

0 commit comments

Comments
 (0)