Fix appearance of keyboard shortcuts inside definition lists #104460

Merged
Aaron Carlisle merged 1 commits from Matthew-Hinson/blender-manual:keyboard-shortcut-fix into main 2023-08-11 21:37:35 +02:00
1 changed files with 13 additions and 1 deletions

View File

@ -487,4 +487,16 @@ a.external {
margin-bottom: 1.245em
}
/* End genindex consistency. */
/* End genindex consistency. */
/* Correctly display keyboard shortcuts inside definition lists (theme.css explicitly excludes this case for some reason) */
dt > kbd {
font-weight: normal;
font-size: 80%;
background-color: #fff;
border: 1px solid #a6a6a6;
border-radius: 4px;
box-shadow: 0 2px grey;
padding: 2.4px 6px;
margin: auto 0;
}