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
1 change: 1 addition & 0 deletions mkdocs/config/mkdocs.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ plugins:
- js
- java
- ws
- req
Comment thread
segfaultxavi marked this conversation as resolved.
- ser
- _
mkdoxy: # Generate API reference docs for Java
Expand Down
1 change: 1 addition & 0 deletions mkdocs/config/mkdocs.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ nav:
- devbook/chain/chain-heights.md
- WebSockets:
- devbook/websockets/listen-new-blocks.md
- devbook/websockets/listen-transaction-flow.md
- Reference Guides:
- Python SDK: devbook/reference/py/
- TypeScript SDK: devbook/reference/ts/
Expand Down
14 changes: 14 additions & 0 deletions mkdocs/overrides/assets/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,10 @@ code.doc-symbol-interface::after {
background-color: #b50505;
}

.md-typeset code.rest-method-req {
background-color: #8e6fc9;
}

/* Graphviz diagrams */
.graphviz {
display: block;
Expand Down Expand Up @@ -773,11 +777,21 @@ code.doc-symbol-interface::after {
background: var(--md-accent-fg-color--transparent);
}
Comment thread
zero4862 marked this conversation as resolved.

[data-md-color-scheme=default] .md-typeset table:not([class]) th {
color: var(--md-typeset-color);
}

.centered .md-typeset__table {
display: table;
margin: 0 auto;
}

.md-typeset .frame-table table:not([class]) {
display: table;
width: 100%;
table-layout: fixed;
}

/* Tables with subsections */
.md-typeset .subsections table td:not(:has(strong)):first-child {
padding-left: 2rem;
Expand Down
Loading