diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-01 22:32:11 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-15 17:36:01 +0300 |
commit | 8f9a80a9ac8f353ce2cdafa23f0e5163d30d5800 (patch) | |
tree | edb89ce300c831897cbe80b9e4e2000b0807acff /www/package-version-details-body.css | |
parent | 038ba04cc0e5a6b933254813c34108d6e3fd4a38 (diff) |
Add support for description-type package manifest value
Diffstat (limited to 'www/package-version-details-body.css')
-rw-r--r-- | www/package-version-details-body.css | 45 |
1 files changed, 41 insertions, 4 deletions
diff --git a/www/package-version-details-body.css b/www/package-version-details-body.css index c2821f6..9e88432 100644 --- a/www/package-version-details-body.css +++ b/www/package-version-details-body.css @@ -73,18 +73,56 @@ h1, h2, h3 } /* - * Description. + * Description (plain text). * * This is a <pre> block that fits lines up to 80 characters long and * wraps longer ones. */ -#description +#description.plain pre { font-size: 0.85em; - white-space: pre-wrap; } /* + * Description (Markdown). + * + * These are descendants of the <div> block containing the result of + * Markdown-to-HTML translation. + * + * Note that the Markdown code blocks are translated into the + * <pre><code>...<code/></pre> element construct. + */ +#description.markdown h1, +#description.markdown h2 +{ + white-space: normal; +} + +/* code-box.css */ +#description.markdown :not(pre) > code +{ + background-color: rgba(0, 0, 0, 0.05); + border-radius: 0.2em; + padding: .2em .32em .18em .32em; +} + +/* pre-box.css */ +#description.markdown pre +{ + background-color: rgba(0, 0, 0, 0.05); + border-radius: 0.2em; + padding: .8em .4em .8em .4em; + margin: 2em -.4em 2em -.4em; /* Use paddings of #content. */ +} + +#description.markdown pre > code +{ + font-size: inherit; +} + +#description.markdown .error {color: #ff0000;} + +/* * Version details table. */ #version @@ -218,6 +256,5 @@ h1, h2, h3 #changes { font-size: 0.85em; - white-space: pre-wrap; margin: .5em 0 .5em 0; } |