mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Plugins Catalog: Fix styling of hyperlinks (#48196)
Adds some styling (default hyperlink color and underline on hover) to plugin header and body hyperlinks. Fixes #48078
This commit is contained in:
parent
f58a2d879e
commit
199cacc7b6
@ -101,5 +101,14 @@ export const getStyles = (theme: GrafanaTheme2) => ({
|
|||||||
margin: ${theme.spacing()} 0;
|
margin: ${theme.spacing()} 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: ${theme.colors.text.link};
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: ${theme.colors.text.link};
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
});
|
});
|
||||||
|
@ -146,6 +146,12 @@ export const getStyles = (theme: GrafanaTheme2) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
font-size: ${theme.typography.h4.fontSize};
|
font-size: ${theme.typography.h4.fontSize};
|
||||||
|
|
||||||
|
a {
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
headerInformationRowSecondary: css`
|
headerInformationRowSecondary: css`
|
||||||
font-size: ${theme.typography.body.fontSize};
|
font-size: ${theme.typography.body.fontSize};
|
||||||
|
Loading…
Reference in New Issue
Block a user