Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added guides/assets/backups-ravendb1.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added guides/assets/backups-ravendb2.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added guides/assets/backups-ravendb3.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added guides/assets/backups-ravendb4.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added guides/assets/backups-ravendb5.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
229 changes: 229 additions & 0 deletions guides/backups-in-ravendb.mdx

Large diffs are not rendered by default.

24 changes: 23 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -556,13 +556,35 @@ hr {
}

/* Custom scroll margin and word break for headers */
/* Docusaurus sets `.anchor { display: flex }` which blockifies inline children
(like <code>), making text wrap around them in columns. Restore block display
so inline elements flow naturally. */
.theme-doc-markdown :is(h1, h2, h3, h4, h5, h6) {
@apply scroll-mt-[10rem] break-all;
@apply scroll-mt-[10rem];
display: block;
overflow-wrap: break-word;
}

/* Inline code inside headings: allow mid-identifier breaks when the
identifier alone wouldn't fit on a line. */
.theme-doc-markdown :is(h1, h2, h3, h4, h5, h6) :is(code, kbd, samp) {
overflow-wrap: anywhere;
word-break: break-all;
}

/* The Docusaurus hash-link (#) is `display: flex` so it lays out as a flex
item inside the default `.anchor { display: flex }` heading. Once we flip
the heading to `display: block`, a block-level flex container would claim
a full-width new line (24 px, opacity: 0) under every heading. Restore
inline-flex so it sits next to the heading text as before. */
.theme-doc-markdown :is(h1, h2, h3, h4, h5, h6) > a.hash-link {
display: inline-flex;
}

/* Override custom word break for headers inside <header> tag */
.theme-doc-markdown header :is(h1, h2, h3, h4, h5, h6) {
@apply break-normal;
overflow-wrap: normal;
}

/* Smaller margin-top for pagination-nav */
Expand Down
Loading