Display pointer if an image is in link

This commit is contained in:
daudix
2024-09-11 20:17:49 +03:00
parent b5a7653bfe
commit a946255c44
10 changed files with 60 additions and 26 deletions

View File

@ -24,7 +24,6 @@
float: inline-end;
appearance: none;
transition: var(--transition);
cursor: pointer;
border: none;
border-radius: var(--rounded-corner-small);
background-color: transparent;
@ -32,6 +31,7 @@
line-height: 0;
&:hover {
cursor: pointer;
box-shadow: var(--edge-highlight);
background-color: var(--fg-muted-1);
@ -45,7 +45,9 @@
}
&:disabled {
cursor: not-allowed;
&:hover {
cursor: not-allowed;
}
&:active {
transform: none;