Skip to content

Commit aa4da14

Browse files
committed
fix(share link): set cursor to pointer for button
1 parent 8e608ac commit aa4da14

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

frontend/src/app/shared/bookmark-list-element/bookmark-list-element.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h6 class="card-subtitle mb-2 text-muted url-under-title">
2828
[innerHtml]="bookmark.location | slice:0:100 | highlight: filterText | highlight: queryText"></span>
2929
<span>...</span>
3030
</ng-template>
31-
<span class="btn-light btn-sm" (click)="copyToClipboard(bookmark.location)" title="Copy link to clipboard">
31+
<span class="btn-light btn-sm copy-btn" (click)="copyToClipboard(bookmark.location)" title="Copy link to clipboard">
3232
<i class="far fa-copy copy-link"></i><span class="copy-btn-text">{{copyLinkButtonText}}</span>
3333
</span>
3434
</h6>

frontend/src/app/shared/bookmark-list-element/bookmark-list-element.component.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
pointer-events: none;
4545
}
4646

47+
.copy-btn {
48+
cursor: pointer;
49+
}
4750
.copy-link {
4851
font-size: 0.95rem;
4952
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Codever",
3-
"version": "4.10.0",
3+
"version": "4.10.1",
44
"description": "Codever - bookmarks and snippets manager for developers & co",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1",

0 commit comments

Comments
 (0)