mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-10 21:29:20 +00:00
doc: update release_2.0 branch with doc changes
Update the working release_2.0 branch with doc updates made since the code feature freeze two weeks ago. (This is an update of all docs changed in master since then, instead of doing cherry-picks of the individual doc PRs/commits). Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
committed by
David Kinder
parent
e0a101d9f0
commit
ddc769f594
11
doc/static/acrn-custom.css
vendored
11
doc/static/acrn-custom.css
vendored
@@ -73,8 +73,8 @@ div.non-compliant-code div.highlight {
|
||||
color: rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
/* squish the space between a paragraph before a list */
|
||||
div > p + ul, div > p + ol {
|
||||
/* squish the space between a paragraph before a list but not in a note */
|
||||
div:not(.admonition) > p + ul, div:not(.admonition) > p + ol {
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
@@ -299,3 +299,10 @@ div.numbered-step h2::before {
|
||||
.rst-content .toctree-l1 > a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* add icon on external links */
|
||||
a.reference.external::after {
|
||||
font-family: 'FontAwesome';
|
||||
font-size: 80%;
|
||||
content: " \f08e";
|
||||
}
|
||||
|
8
doc/static/acrn-custom.js
vendored
8
doc/static/acrn-custom.js
vendored
@@ -1,7 +1,11 @@
|
||||
/* tweak logo link */
|
||||
/* Extra acrn-specific javascript */
|
||||
|
||||
$(document).ready(function(){
|
||||
$( ".icon-home" ).attr("href", "https://projectacrn.org/");
|
||||
/* tweak logo link to the marketing site instead of doc site */
|
||||
$( ".icon-home" ).attr({href: "https://projectacrn.org/", target: "_blank"});
|
||||
|
||||
/* open external links in a new tab */
|
||||
$('a[class*=external]').attr({target: '_blank', rel: 'noopener'});
|
||||
});
|
||||
|
||||
/* Global site tag (gtag.js) - Google Analytics */
|
||||
|
Reference in New Issue
Block a user