Skip to content

Commit c03657d

Browse files
authored
Fix unexpected cursor icon for commit links in PR webview (#7464)
* Initial plan * Initial investigation - identify cursor icon issue in commit links Co-authored-by: alexr00 <[email protected]> * Fix unexpected cursor icon for commit links by adding cursor: pointer Co-authored-by: alexr00 <[email protected]> * Only for anchors
1 parent 1922d1e commit c03657d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webviews/editorWebview/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,10 @@ small-button {
737737
white-space: nowrap;
738738
}
739739

740+
.commit .commit-message a.message {
741+
cursor: pointer;
742+
}
743+
740744
.timeline-detail {
741745
display: flex;
742746
align-items: center;
@@ -747,6 +751,7 @@ small-button {
747751
min-width: 50px;
748752
font-family: var(--vscode-editor-font-family);
749753
margin-bottom: -2px;
754+
cursor: pointer;
750755
}
751756

752757
.merged .merged-message .message,

0 commit comments

Comments
 (0)