UX: Remove color attribute from `<kbd>` tag (#20429)
As a single example, if a `<kbd>` tag is wrapped by a `<a>` link, it doesn't inherit the link color: `[<kbd>❓ **Support**</kbd>](https://meta.discourse.org)` It's because the `<kbd>` tag has a `color: var(--primary);` CSS rule which seems superfluous. If we disable it, the `<kbd>` tag inherits all the normal colors (including the link color 👌). The direct `<kbd>` parent that assigns the text color is `<html>` (can't go higher!) which has an identical `color: var(--primary);`. WCAG palettes don't seem to assign specific colors in this context. It seems fairly safe to remove `color: var(--primary);` from `<kbd>` so it won't interfere anymore with its content.
This commit is contained in:
parent
b328ada667
commit
4b9061ae3f
|
@ -1058,7 +1058,6 @@ kbd {
|
|||
border-bottom-width: 2px;
|
||||
border-radius: 3px;
|
||||
box-sizing: border-box;
|
||||
color: var(--primary);
|
||||
display: inline-flex;
|
||||
gap: 0 0.5em; // space between text and images/emoji
|
||||
font-size: var(--font-down-1);
|
||||
|
|
Loading…
Reference in New Issue