Merge commit '75f78244d5df52cc8242b6a7c6b8d1531963aa63' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2025-09-11 12:13:47 +02:00
25 changed files with 525 additions and 56 deletions

View File

@@ -2908,16 +2908,23 @@ a.account__display-name {
&:focus,
&:hover,
&:active {
&:not(:disabled) {
&:not(:disabled, [aria-disabled='true']) {
background: var(--dropdown-border-color);
outline: 0;
}
}
}
button:disabled {
button:disabled,
button[aria-disabled='true'] {
color: $dark-text-color;
cursor: default;
&:focus {
color: rgb(from $dark-text-color r g b / 70%);
background: var(--dropdown-border-color);
outline: 0;
}
}
}