doc: fix display of monospaced text links
Links to doxygen-generated API content are displayed as monospaced code spans in the text, but have no indication that they're are clickable links. Tweak the CSS to color the monospaced text the same as regular links in the text (blue) and after visited (purple). This might also help us notice doxygen API references that aren't creating links (and should). Fixes: #20032 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
parent
b5ed5af8c8
commit
cc1b94c388
1 changed files with 7 additions and 0 deletions
7
doc/static/zephyr-custom.css
vendored
7
doc/static/zephyr-custom.css
vendored
|
@ -53,6 +53,13 @@ div.rst-other-versions dl {
|
|||
color: #000000;
|
||||
}
|
||||
|
||||
/* code literal links should be blue, and purple after visiting */
|
||||
a.internal code.literal {
|
||||
color: #2980B9;
|
||||
}
|
||||
a.internal:visited code.literal {
|
||||
color: #9B59B9;
|
||||
}
|
||||
|
||||
/* Make the version number more visible */
|
||||
.wy-side-nav-search>div.version {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue