Skip to content

Commit de0b93f

Browse files
committed
[CI] Publish Documentation for 2be5035
1 parent 8028a3f commit de0b93f

File tree

175 files changed

+1466
-3080
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+1466
-3080
lines changed

404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width,initial-scale=1">
66
<title>Page Not Found :: Oracle SQL Features</title>
7-
<meta name="generator" content="Antora 3.1.7">
7+
<meta name="generator" content="Antora 3.1.9">
88
<link rel="stylesheet" href="/_/css/site.css">
99
<link rel="stylesheet" href="/_/css/site-extra.css">
1010
<link rel="stylesheet" href="/_/css/navbar-.css">
11+
<link rel="stylesheet" href="/_/css/prism.css">
1112
<link rel="stylesheet" href="/_/css/admonitions.css">
1213
<link rel="stylesheet" href="/_/css/fontawesome.css">
1314
<link rel="stylesheet" href="/_/css/all.css">
14-
<script>var uiRootPath = '/_'</script>
1515
</head>
1616
<body class="status-404">
1717
<header class="header">
@@ -43,7 +43,7 @@
4343
<div class="nav-panel-explore is-active" data-panel="explore">
4444
<ul class="components">
4545
<li class="component">
46-
<a class="title" href="/guide/latest/index.html">Oracle SQL Features</a>
46+
<div class="title"><a href="/guide/latest/index.html">Oracle SQL Features</a></div>
4747
<ul class="versions">
4848
<li class="version is-latest">
4949
<a href="/guide/latest/index.html">latest</a>
@@ -81,6 +81,6 @@ <h1 class="page">Page Not Found</h1>
8181
<p>The source code for this UI is licensed under the terms of the MPL-2.0 license.</p>
8282
</footer>
8383
<script id="site-script" src="/_/js/site.js" data-ui-root-path="/_"></script>
84-
<script async src="/_/js/vendor/highlight.js"></script>
84+
<script async src="/_/js/vendor/prism.js"></script>
8585
</body>
8686
</html>

_/css/prism.css

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
/**
2+
* prism.js default theme for JavaScript, CSS and HTML
3+
* Based on dabblet (http://dabblet.com)
4+
* @author Lea Verou
5+
*/
6+
7+
code[class*="language-"],
8+
pre[class*="language-"] {
9+
color: black;
10+
background: none;
11+
text-shadow: 0 1px white;
12+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
13+
font-size: 1em;
14+
text-align: left;
15+
white-space: pre;
16+
word-spacing: normal;
17+
word-break: normal;
18+
word-wrap: normal;
19+
line-height: 1.5;
20+
21+
-moz-tab-size: 4;
22+
-o-tab-size: 4;
23+
tab-size: 4;
24+
25+
-webkit-hyphens: none;
26+
-moz-hyphens: none;
27+
-ms-hyphens: none;
28+
hyphens: none;
29+
}
30+
31+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
32+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
33+
text-shadow: none;
34+
background: #b3d4fc;
35+
}
36+
37+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
38+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
39+
text-shadow: none;
40+
background: #b3d4fc;
41+
}
42+
43+
@media print {
44+
code[class*="language-"],
45+
pre[class*="language-"] {
46+
text-shadow: none;
47+
}
48+
}
49+
50+
/* Code blocks */
51+
pre[class*="language-"] {
52+
padding: 1em;
53+
margin: .5em 0;
54+
overflow: auto;
55+
}
56+
57+
:not(pre) > code[class*="language-"],
58+
pre[class*="language-"] {
59+
background: #f5f2f0;
60+
}
61+
62+
/* Inline code */
63+
:not(pre) > code[class*="language-"] {
64+
padding: .1em;
65+
border-radius: .3em;
66+
white-space: normal;
67+
}
68+
69+
.token.comment,
70+
.token.prolog,
71+
.token.doctype,
72+
.token.cdata {
73+
color: slategray;
74+
}
75+
76+
.token.punctuation {
77+
color: #999;
78+
}
79+
80+
.token.namespace {
81+
opacity: .7;
82+
}
83+
84+
.token.property,
85+
.token.tag,
86+
.token.boolean,
87+
.token.number,
88+
.token.constant,
89+
.token.symbol,
90+
.token.deleted {
91+
color: #905;
92+
}
93+
94+
.token.selector,
95+
.token.attr-name,
96+
.token.string,
97+
.token.char,
98+
.token.builtin,
99+
.token.inserted {
100+
color: #690;
101+
}
102+
103+
.token.operator,
104+
.token.entity,
105+
.token.url,
106+
.language-css .token.string,
107+
.style .token.string {
108+
color: #9a6e3a;
109+
/* This background color was intended by the author of this theme. */
110+
background: hsla(0, 0%, 100%, .5);
111+
}
112+
113+
.token.atrule,
114+
.token.attr-value,
115+
.token.keyword {
116+
color: #07a;
117+
}
118+
119+
.token.function,
120+
.token.class-name {
121+
color: #DD4A68;
122+
}
123+
124+
.token.regex,
125+
.token.important,
126+
.token.variable {
127+
color: #e90;
128+
}
129+
130+
.token.important,
131+
.token.bold {
132+
font-weight: bold;
133+
}
134+
.token.italic {
135+
font-style: italic;
136+
}
137+
138+
.token.entity {
139+
cursor: help;
140+
}

_/css/site.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
10.1 KB
Binary file not shown.
9.4 KB
Binary file not shown.
10.4 KB
Binary file not shown.
9.61 KB
Binary file not shown.

_/js/site.js

Lines changed: 6 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_/js/vendor/highlight.js

Lines changed: 1 addition & 1870 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_/js/vendor/prism.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)