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

@ -31,10 +31,13 @@ small {
}
abbr[title] {
cursor: help;
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-thickness: max(1px, 0.0625em);
&:hover {
cursor: help;
}
}
figcaption {
@ -136,7 +139,6 @@ progress {
kbd {
display: inline-block;
transition: var(--transition);
cursor: pointer;
box-shadow: var(--edge-highlight), inset 0 -0.125rem 0 var(--fg-muted-2);
border-radius: var(--rounded-corner-small);
background-color: var(--fg-muted-1);
@ -144,6 +146,10 @@ kbd {
font-size: 0.875em;
line-height: 1;
&:hover {
cursor: pointer;
}
// Small nice thingy, keys can be pressed!
&:active {
transform: translateY(0.125rem);
@ -218,8 +224,11 @@ details {
padding: 1rem;
summary {
cursor: pointer;
line-height: 1.25;
&:hover {
cursor: pointer;
}
}
:last-child {