Deployed 81d6dea with MkDocs version: 1.6.1

This commit is contained in:
github-actions[bot]
2025-02-06 03:12:07 +00:00
parent b78a11e80f
commit f2738de8a8
80 changed files with 3480 additions and 78818 deletions

0
.nojekyll Normal file
View File

1734
404.html

File diff suppressed because one or more lines are too long

73
api.html Normal file

File diff suppressed because one or more lines are too long

158
api/core.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

146
api/sse.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

26
architecture.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -1,143 +0,0 @@
/* Avoid breaking parameter names, etc. in table cells. */
.doc-contents td code {
word-break: normal !important;
}
/* No line break before first paragraph of descriptions. */
.doc-md-description,
.doc-md-description>p:first-child {
display: inline;
}
/* Max width for docstring sections tables. */
.doc .md-typeset__table,
.doc .md-typeset__table table {
display: table !important;
width: 100%;
}
.doc .md-typeset__table tr {
display: table-row;
}
/* Defaults in Spacy table style. */
.doc-param-default {
float: right;
}
/* Parameter headings must be inline, not blocks. */
.doc-heading-parameter {
display: inline;
}
/* Prefer space on the right, not the left of parameter permalinks. */
.doc-heading-parameter .headerlink {
margin-left: 0 !important;
margin-right: 0.2rem;
}
/* Backward-compatibility: docstring section titles in bold. */
.doc-section-title {
font-weight: bold;
}
/* Symbols in Navigation and ToC. */
:root, :host,
[data-md-color-scheme="default"] {
--doc-symbol-parameter-fg-color: #df50af;
--doc-symbol-attribute-fg-color: #953800;
--doc-symbol-function-fg-color: #8250df;
--doc-symbol-method-fg-color: #8250df;
--doc-symbol-class-fg-color: #0550ae;
--doc-symbol-module-fg-color: #5cad0f;
--doc-symbol-parameter-bg-color: #df50af1a;
--doc-symbol-attribute-bg-color: #9538001a;
--doc-symbol-function-bg-color: #8250df1a;
--doc-symbol-method-bg-color: #8250df1a;
--doc-symbol-class-bg-color: #0550ae1a;
--doc-symbol-module-bg-color: #5cad0f1a;
}
[data-md-color-scheme="slate"] {
--doc-symbol-parameter-fg-color: #ffa8cc;
--doc-symbol-attribute-fg-color: #ffa657;
--doc-symbol-function-fg-color: #d2a8ff;
--doc-symbol-method-fg-color: #d2a8ff;
--doc-symbol-class-fg-color: #79c0ff;
--doc-symbol-module-fg-color: #baff79;
--doc-symbol-parameter-bg-color: #ffa8cc1a;
--doc-symbol-attribute-bg-color: #ffa6571a;
--doc-symbol-function-bg-color: #d2a8ff1a;
--doc-symbol-method-bg-color: #d2a8ff1a;
--doc-symbol-class-bg-color: #79c0ff1a;
--doc-symbol-module-bg-color: #baff791a;
}
code.doc-symbol {
border-radius: .1rem;
font-size: .85em;
padding: 0 .3em;
font-weight: bold;
}
code.doc-symbol-parameter {
color: var(--doc-symbol-parameter-fg-color);
background-color: var(--doc-symbol-parameter-bg-color);
}
code.doc-symbol-parameter::after {
content: "param";
}
code.doc-symbol-attribute {
color: var(--doc-symbol-attribute-fg-color);
background-color: var(--doc-symbol-attribute-bg-color);
}
code.doc-symbol-attribute::after {
content: "attr";
}
code.doc-symbol-function {
color: var(--doc-symbol-function-fg-color);
background-color: var(--doc-symbol-function-bg-color);
}
code.doc-symbol-function::after {
content: "func";
}
code.doc-symbol-method {
color: var(--doc-symbol-method-fg-color);
background-color: var(--doc-symbol-method-bg-color);
}
code.doc-symbol-method::after {
content: "meth";
}
code.doc-symbol-class {
color: var(--doc-symbol-class-fg-color);
background-color: var(--doc-symbol-class-bg-color);
}
code.doc-symbol-class::after {
content: "class";
}
code.doc-symbol-module {
color: var(--doc-symbol-module-fg-color);
background-color: var(--doc-symbol-module-bg-color);
}
code.doc-symbol-module::after {
content: "mod";
}
.doc-signature .autorefs {
color: inherit;
border-bottom: 1px dotted currentcolor;
}

1
config/index.html Normal file

File diff suppressed because one or more lines are too long

32
configuration.html Normal file

File diff suppressed because one or more lines are too long

25
contributing.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

33
deployment.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

1
development/index.html Normal file

File diff suppressed because one or more lines are too long

200
development/interfaces.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

125
development/tools.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

2059
index.html

File diff suppressed because one or more lines are too long

62
javascripts/extra.js Normal file
View File

@@ -0,0 +1,62 @@
// Dark mode handling
document.addEventListener('DOMContentLoaded', function () {
// Check for saved dark mode preference
const darkMode = localStorage.getItem('darkMode');
if (darkMode === 'true') {
document.body.classList.add('dark-mode');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add copy button to code blocks
document.querySelectorAll('pre code').forEach((block) => {
const button = document.createElement('button');
button.className = 'copy-button';
button.textContent = 'Copy';
button.addEventListener('click', async () => {
await navigator.clipboard.writeText(block.textContent);
button.textContent = 'Copied!';
setTimeout(() => {
button.textContent = 'Copy';
}, 2000);
});
const pre = block.parentNode;
pre.insertBefore(button, block);
});
// Add version selector handling
const versionSelector = document.querySelector('.version-selector');
if (versionSelector) {
versionSelector.addEventListener('change', (e) => {
const version = e.target.value;
window.location.href = `/${version}/`;
});
}
// Add feedback handling
document.querySelectorAll('.feedback-button').forEach(button => {
button.addEventListener('click', function () {
const feedback = this.getAttribute('data-feedback');
// Send feedback to analytics
if (typeof gtag !== 'undefined') {
gtag('event', 'feedback', {
'event_category': 'Documentation',
'event_label': feedback
});
}
// Show thank you message
this.textContent = 'Thank you!';
this.disabled = true;
});
});

12
javascripts/mathjax.js Normal file
View File

@@ -0,0 +1,12 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};

Binary file not shown.

42
requirements.txt Normal file
View File

@@ -0,0 +1,42 @@
# Core
mkdocs>=1.5.3
mkdocs-material>=9.5.3
# Enhanced Functionality
mkdocs-minify-plugin>=0.7.1
mkdocs-git-revision-date-localized-plugin>=1.2.1
mkdocs-glightbox>=0.3.4
mkdocs-git-authors-plugin>=0.7.2
mkdocs-git-committers-plugin>=0.2.3
mkdocs-static-i18n>=1.2.0
mkdocs-awesome-pages-plugin>=2.9.2
mkdocs-redirects>=1.2.1
mkdocs-include-markdown-plugin>=6.0.4
mkdocs-macros-plugin>=1.0.4
mkdocs-meta-descriptions-plugin>=3.0.0
mkdocs-print-site-plugin>=2.3.6
# Code Documentation
mkdocstrings>=0.24.0
mkdocstrings-python>=1.7.5
# Markdown Extensions
pymdown-extensions>=10.5
markdown>=3.5.1
mdx_truly_sane_lists>=1.3
pygments>=2.17.2
# Math Support
python-markdown-math>=0.8
# Diagrams
plantuml-markdown>=3.9.2
mkdocs-mermaid2-plugin>=1.1.1
# Search Enhancements
mkdocs-material[imaging]>=9.5.3
pillow>=10.2.0
cairosvg>=2.7.1
# Development Tools
mike>=2.0.0 # For version management

1
roadmap.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
search/search_index.js Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

28
security.html Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,139 +1,159 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/api/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/api.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/architecture/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/architecture.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/contributing/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/configuration.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/getting-started/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/contributing.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/roadmap/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/deployment.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/testing/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/roadmap.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/troubleshooting/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/security.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/usage/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/testing.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/api/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/troubleshooting.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/api/core/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/usage.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/api/sse/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/api/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/development/best-practices/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/api/core.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/development/development/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/api/sse.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/development/interfaces/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/config/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/development/test-migration-guide/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/development/tools/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/best-practices.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/examples/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/environment.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/getting-started/configuration/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/interfaces.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/getting-started/docker/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/test-migration-guide.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/getting-started/installation/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/development/tools.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/getting-started/quickstart/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/examples/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/tools/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/getting-started/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/addons-packages/addon/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/getting-started/configuration.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/addons-packages/package/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/getting-started/docker.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/automation/automation-config/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/getting-started/installation.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/automation/automation/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/getting-started/quickstart.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/device-management/control/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/index.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/device-management/list-devices/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/addons-packages/addon.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/events/sse-stats/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/addons-packages/package.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/events/subscribe-events/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/automation/automation-config.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/history-state/history/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/automation/automation.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/history-state/scene/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/device-management/control.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassitant-mcp/tools/notifications/notify/</loc>
<lastmod>2025-02-05</lastmod>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/device-management/list-devices.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/events/sse-stats.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/events/subscribe-events.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/history-state/history.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/history-state/scene.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
<url>
<loc>https://jango-blockchained.github.io/advanced-homeassistant-mcp/tools/notifications/notify.html</loc>
<lastmod>2025-02-06</lastmod>
</url>
</urlset>

Binary file not shown.

164
stylesheets/extra.css Normal file
View File

@@ -0,0 +1,164 @@
/* Modern Dark Theme Enhancements */
[data-md-color-scheme="slate"] {
--md-default-bg-color: #1a1b26;
--md-default-fg-color: #a9b1d6;
--md-default-fg-color--light: #a9b1d6;
--md-default-fg-color--lighter: #787c99;
--md-default-fg-color--lightest: #4e5173;
--md-primary-fg-color: #7aa2f7;
--md-primary-fg-color--light: #7dcfff;
--md-primary-fg-color--dark: #2ac3de;
--md-accent-fg-color: #bb9af7;
--md-accent-fg-color--transparent: #bb9af722;
--md-accent-bg-color: #1a1b26;
--md-accent-bg-color--light: #24283b;
}
/* Code Blocks */
.highlight pre {
background-color: #24283b !important;
border-radius: 6px;
padding: 1em;
margin: 1em 0;
overflow: auto;
}
.highlight code {
font-family: 'Roboto Mono', monospace;
font-size: 0.9em;
}
/* Copy Button */
.copy-button {
position: absolute;
right: 0.5em;
top: 0.5em;
padding: 0.4em 0.8em;
background-color: var(--md-accent-bg-color--light);
border: 1px solid var(--md-accent-fg-color--transparent);
border-radius: 4px;
color: var(--md-default-fg-color);
font-size: 0.8em;
cursor: pointer;
transition: all 0.2s ease;
}
.copy-button:hover {
background-color: var(--md-accent-fg-color--transparent);
border-color: var(--md-accent-fg-color);
}
/* Navigation Enhancements */
.md-nav {
font-size: 0.9rem;
}
.md-nav__link {
padding: 0.4rem 0;
transition: color 0.2s ease;
}
.md-nav__link:hover {
color: var(--md-primary-fg-color) !important;
}
/* Tabs */
.md-tabs__link {
opacity: 0.8;
transition: opacity 0.2s ease;
}
.md-tabs__link:hover {
opacity: 1;
}
.md-tabs__link--active {
opacity: 1;
}
/* Admonitions */
.md-typeset .admonition,
.md-typeset details {
border-width: 0;
border-left-width: 4px;
border-radius: 4px;
}
/* Tables */
.md-typeset table:not([class]) {
border-radius: 4px;
box-shadow: 0 2px 4px var(--md-accent-fg-color--transparent);
}
.md-typeset table:not([class]) th {
background-color: var(--md-accent-bg-color--light);
border-bottom: 2px solid var(--md-accent-fg-color--transparent);
}
/* Search */
.md-search__form {
background-color: var(--md-accent-bg-color--light);
border-radius: 4px;
}
/* Feedback Buttons */
.feedback-button {
padding: 0.5em 1em;
margin: 0 0.5em;
border-radius: 4px;
background-color: var(--md-accent-bg-color--light);
border: 1px solid var(--md-accent-fg-color--transparent);
color: var(--md-default-fg-color);
cursor: pointer;
transition: all 0.2s ease;
}
.feedback-button:hover {
background-color: var(--md-accent-fg-color--transparent);
border-color: var(--md-accent-fg-color);
}
.feedback-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Version Selector */
.version-selector {
padding: 0.5em;
border-radius: 4px;
background-color: var(--md-accent-bg-color--light);
border: 1px solid var(--md-accent-fg-color--transparent);
color: var(--md-default-fg-color);
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--md-accent-bg-color--light);
}
::-webkit-scrollbar-thumb {
background: var(--md-accent-fg-color--transparent);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--md-accent-fg-color);
}
/* Print Styles */
@media print {
.md-typeset a {
color: var(--md-default-fg-color) !important;
}
.md-content__inner {
margin: 0;
padding: 1rem;
}
}

173
testing.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

117
tools/events/sse-stats.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

1
tools/index.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

96
troubleshooting.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

22
usage.html Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff