@asciidoctor/core 2.0.0-rc.3 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/asciidoctor.js +1096 -887
- package/dist/browser/asciidoctor.min.js +1427 -1212
- package/dist/css/asciidoctor.css +5 -5
- package/dist/graalvm/asciidoctor.js +1140 -933
- package/dist/node/asciidoctor.js +1144 -937
- package/package.json +1 -1
package/dist/css/asciidoctor.css
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/* Asciidoctor default stylesheet | MIT License | https://asciidoctor.org */
|
|
2
|
-
/* Uncomment @import statement
|
|
2
|
+
/* Uncomment @import statement to use as custom stylesheet */
|
|
3
3
|
/*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";*/
|
|
4
4
|
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}
|
|
5
|
-
audio,
|
|
5
|
+
audio,video{display:inline-block}
|
|
6
6
|
audio:not([controls]){display:none;height:0}
|
|
7
|
-
script{display:none!important}
|
|
8
7
|
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
|
|
9
8
|
a{background:none}
|
|
10
9
|
a:focus{outline:thin dotted}
|
|
@@ -209,8 +208,8 @@ table.tableblock #preamble>.sectionbody>[class="paragraph"]:first-of-type p{font
|
|
|
209
208
|
.literalblock pre,.listingblock>.content>pre{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;overflow-x:auto;padding:1em;font-size:.8125em}
|
|
210
209
|
@media screen and (min-width:768px){.literalblock pre,.listingblock>.content>pre{font-size:.90625em}}
|
|
211
210
|
@media screen and (min-width:1280px){.literalblock pre,.listingblock>.content>pre{font-size:1em}}
|
|
211
|
+
.literalblock pre,.listingblock>.content>pre:not(.highlight),.listingblock>.content>pre[class="highlight"],.listingblock>.content>pre[class^="highlight "]{background:#f7f7f8}
|
|
212
212
|
.literalblock.output pre{color:#f7f7f8;background:rgba(0,0,0,.9)}
|
|
213
|
-
.listingblock>.content>pre:not(.highlight),.listingblock>.content>pre[class="highlight"],.listingblock>.content>pre[class^="highlight "]{background:#f7f7f8}
|
|
214
213
|
.listingblock>.content{position:relative}
|
|
215
214
|
.listingblock code[data-lang]::before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:inherit;opacity:.5}
|
|
216
215
|
.listingblock:hover code[data-lang]::before{display:block}
|
|
@@ -253,7 +252,8 @@ pre.pygments .lineno::before{content:"";margin-right:-.125em}
|
|
|
253
252
|
.quoteblock.excerpt .attribution,.quoteblock .quoteblock .attribution{color:inherit;text-align:left;margin-right:0}
|
|
254
253
|
table.tableblock{max-width:100%;border-collapse:separate}
|
|
255
254
|
p.tableblock:last-child{margin-bottom:0}
|
|
256
|
-
td.tableblock>.content{margin-bottom:-1.25em}
|
|
255
|
+
td.tableblock>.content>:last-child{margin-bottom:-1.25em}
|
|
256
|
+
td.tableblock>.content>:last-child.sidebarblock{margin-bottom:0}
|
|
257
257
|
table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
|
|
258
258
|
table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
|
|
259
259
|
table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
|