Skip to content

Commit 56daa98

Browse files
committed
chore: updated pdf
1 parent 9996936 commit 56daa98

File tree

5 files changed

+5009
-2
lines changed

5 files changed

+5009
-2
lines changed

pdf/databend-doc-cn.pdf

-1.01 MB
Binary file not shown.

pdf/databend-doc-en.pdf

-934 KB
Binary file not shown.

pdf/docs.databend.en-sql.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,11 @@ https://docs.databend.com/sql/sql-commands/query-syntax/query-join
402402
https://docs.databend.com/sql/sql-commands/query-syntax/query-pivot
403403
https://docs.databend.com/sql/sql-commands/query-syntax/query-select
404404
https://docs.databend.com/sql/sql-commands/query-syntax/query-unpivot
405-
https://docs.databend.com/sql/sql-commands/query-syntax/query-with
406405
https://docs.databend.com/sql/sql-commands/query-syntax/top
407406
https://docs.databend.com/sql/sql-commands/query-syntax/values
407+
https://docs.databend.com/sql/sql-commands/query-syntax/with-clause
408408
https://docs.databend.com/sql/sql-commands/query-syntax/with-consume
409+
https://docs.databend.com/sql/sql-commands/query-syntax/with-stream-hints
409410
https://docs.databend.com/sql/sql-functions/
410411
https://docs.databend.com/sql/sql-functions/aggregate-functions/
411412
https://docs.databend.com/sql/sql-functions/aggregate-functions/aggregate-any

scripts/sitemap-en.xml

+4,784-1
Large diffs are not rendered by default.

src/css/print.css

+223
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.pagination-nav,
22
.databend-bottom-footer,
33
.footer,
4+
.theme-doc-footer,
45
.databend-right-table-contents {
56
display: none !important;
67
}
@@ -15,3 +16,225 @@ pre,
1516
table {
1617
white-space: break-spaces;
1718
}
19+
@media print {
20+
.ant-col-md-8 {
21+
display: block;
22+
flex: 0 0 33.33333333%;
23+
max-width: 33.33333333%;
24+
}
25+
.ant-col-xl-12 {
26+
display: block;
27+
flex: 0 0 50%;
28+
max-width: 50%;
29+
}
30+
}
31+
.global-overview-card {
32+
display: flex;
33+
align-items: flex-start;
34+
text-decoration: unset !important;
35+
color: hsl(222.2 47.4% 11.2%) !important;
36+
> div {
37+
flex: 1;
38+
}
39+
}
40+
41+
.theme-doc-markdown.markdown table {
42+
margin-top: 1.5rem;
43+
margin-bottom: 1.5rem;
44+
}
45+
46+
.theme-doc-markdown.markdown p + img,
47+
.theme-doc-markdown.markdown h2 + img,
48+
.theme-doc-markdown.markdown h3 + img {
49+
margin-top: 1.5rem;
50+
}
51+
52+
.theme-doc-markdown.markdown .tabs {
53+
margin-top: 1.5rem;
54+
border-bottom: 1px solid hsl(216 34% 17%);
55+
font-weight: 600;
56+
}
57+
58+
.theme-doc-markdown.markdown .tabs .tabs__item {
59+
padding: 0.5rem 1rem 0.75rem;
60+
}
61+
62+
.theme-doc-markdown.markdown .tabs .tabs__item.tabs__item--active {
63+
border-color: rgb(59 130 246);
64+
}
65+
66+
.theme-doc-markdown.markdown p {
67+
margin-top: 1.5rem !important;
68+
margin-bottom: 0 !important;
69+
line-height: 1.75rem;
70+
}
71+
72+
.theme-doc-markdown.markdown p:first-child {
73+
margin-top: 1rem !important;
74+
}
75+
76+
.theme-doc-markdown.markdown > h2 {
77+
letter-spacing: -0.025em;
78+
font-weight: 600;
79+
font-size: 1.5rem;
80+
line-height: 2rem;
81+
padding-bottom: 0.5rem;
82+
scroll-margin: 5rem;
83+
margin-top: 3rem;
84+
border-bottom: 1px solid hsl(216 34% 17%);
85+
margin-bottom: 0;
86+
}
87+
88+
.theme-doc-markdown.markdown > h3 {
89+
letter-spacing: -0.025em;
90+
font-weight: 600;
91+
font-size: 1.25rem;
92+
line-height: 1.75rem;
93+
scroll-margin: 5rem;
94+
margin-top: 2rem;
95+
margin-bottom: 0;
96+
}
97+
98+
.theme-doc-markdown.markdown .token.plain {
99+
color: #414141;
100+
}
101+
102+
.theme-doc-markdown.markdown pre {
103+
background-color: unset;
104+
}
105+
106+
.theme-doc-markdown.markdown pre code {
107+
font-size: 1rem;
108+
}
109+
110+
.theme-doc-markdown.markdown header + h2 {
111+
margin-top: 1.5rem;
112+
}
113+
114+
.theme-doc-markdown.markdown a {
115+
text-underline-position: from-font;
116+
font-weight: 500;
117+
text-decoration-line: underline;
118+
color: rgb(37 99 235);
119+
text-underline-offset: 4px;
120+
line-height: 1.75rem;
121+
}
122+
123+
.theme-doc-markdown.markdown code {
124+
font-size: 0.875rem;
125+
line-height: 1.25rem;
126+
border: unset;
127+
padding: 0.2rem 0.3rem;
128+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
129+
background-color: hsl(210 40% 96.1%);
130+
}
131+
132+
.theme-doc-markdown.markdown h1 {
133+
font-size: 2.25rem;
134+
}
135+
136+
.theme-doc-markdown.markdown h1:first-child {
137+
font-size: 2.25rem;
138+
line-height: 2.5rem;
139+
scroll-margin: 5rem;
140+
margin-bottom: 0.5rem;
141+
margin-top: 0.5rem;
142+
}
143+
144+
.theme-doc-markdown.markdown img {
145+
object-fit: contain;
146+
max-height: 520px;
147+
width: auto;
148+
border-radius: 6px;
149+
padding: 0.6rem;
150+
border: 1px solid hsl(216 34% 17%);
151+
background-color: rgba(18,24,38,1.00);
152+
cursor: zoom-in;
153+
}
154+
155+
.theme-doc-markdown.markdown table tr,
156+
.theme-doc-markdown.markdown table th {
157+
font-size: 1rem;
158+
text-align: left;
159+
border-bottom: 1px solid #eee!important;
160+
}
161+
162+
.theme-doc-markdown.markdown table td {
163+
border: unset;
164+
border-bottom: 1px solid hsl(216 34% 17%);
165+
}
166+
167+
.theme-doc-markdown.markdown table td:first-child {
168+
border-left: 1px solid hsl(216 34% 17%);
169+
}
170+
171+
.theme-doc-markdown.markdown table td:last-child {
172+
border-right: 1px solid hsl(216 34% 17%);
173+
}
174+
175+
.theme-doc-markdown.markdown table th {
176+
white-space: nowrap;
177+
}
178+
179+
.theme-doc-markdown.markdown table thead tr {
180+
border: 1px solid hsl(216 34% 17%);
181+
}
182+
183+
.theme-doc-markdown.markdown div[class^="codeBlockContainer"] {
184+
box-shadow: unset;
185+
margin-top: 1rem;
186+
margin-bottom: 0.5rem;
187+
}
188+
189+
.theme-doc-markdown.markdown div[class^="codeBlockContainer"]:has(.language-text) {
190+
background-color: hsl(210 40% 96.1%);
191+
}
192+
193+
.theme-doc-markdown.markdown code[class^="codeBlockLines"] {
194+
padding: 1rem;
195+
font-size: 0.9em;
196+
border: 1px solid hsl(216 34% 17%);
197+
}
198+
199+
.theme-doc-markdown.markdown [class^="codeBlockContainer"]:not([class*=" language-"]) {
200+
border-left: 5px solid rgba(50,147,248,1.00);
201+
}
202+
203+
.theme-doc-markdown.markdown div[class^="language-"] {
204+
border-left: 5px solid rgba(50,147,248,1.00);
205+
margin-top: 1rem;
206+
margin-bottom: 0.5rem;
207+
box-shadow: unset;
208+
background-color: unset;
209+
}
210+
211+
.theme-doc-markdown.markdown div[class^="language-"] pre {
212+
border-radius:3px;
213+
background-color: unset;
214+
}
215+
216+
.theme-doc-markdown.markdown div[class^="language-"] div[class^="codeBlockTitle_"] {
217+
border: 1px solid hsl(216 34% 17%);
218+
border-left: unset;
219+
border-top-left-radius: 3px;
220+
font-size: 0.75rem;
221+
line-height: 1rem;
222+
padding: 0.5rem;
223+
background-color: #fff;
224+
background: #fff !important;
225+
color: #393A34;
226+
}
227+
228+
.theme-doc-markdown.markdown div[class^="language-"] div[class^="codeBlockTitle_"] + div code {
229+
border-top: unset;
230+
border-top-left-radius: unset;
231+
border-top-right-radius: unset;
232+
}
233+
234+
.theme-doc-markdown.markdown div[class^="language-"] code {
235+
padding: 1rem;
236+
font-size: 0.9em !important;
237+
border: 1px solid hsl(216 34% 17%);
238+
border-left: unset;
239+
border-top-left-radius: 0 !important;
240+
border-bottom-left-radius: 0 !important

0 commit comments

Comments
 (0)