Fix WS Tool links, examples, sidebar

- Update docs links for all methods.
- Add some missing methods.
- Add an icon for Clio-specific methods.
- Move the long list of ledger_entry examples below other types so those
  ones are not as buried.
- Remove unused old JS files.
- Make method list sidebar self-scrolling like docs TOC sidebar, so that
  links to methods lower in the list don't scroll the main UI up off the
  visible part of the page.
- Fix #2470.
- Fix a broken 'try it' link on the amm_info page that was causing an
  error page to display when clicked.
This commit is contained in:
mDuo13
2024-03-21 15:22:05 -07:00
parent 4beaceee43
commit dd3644ea36
15 changed files with 287 additions and 1765 deletions

View File

@@ -1,5 +1,14 @@
/* Dev Tool styles stuff ---------------------------------------------------- */
.command-list-wrapper {
// WebSocket Tool right sidebar
position: sticky;
top: calc(var(--navbar-height) + var(--toc-offset-top));
max-height: calc(100vh - var(--navbar-height) - var(--toc-offset-top));
overflow-y: auto;
width: var(--toc-width);
}
#tx-sender-history .list-group-item {
font-size: small;
color: $gray-600;