Skip to content
Open
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
22 changes: 20 additions & 2 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2620,7 +2620,9 @@ html[data-theme="dark"] .blog-post-page .markdown h4 {
}

html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info,
html[data-theme="dark"].blog-post-page .markdown .alert--info {
html[data-theme="dark"].blog-post-page .markdown .alert--info,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary {
--ifm-alert-foreground-color: #ffffff !important;
--ifm-alert-background-color: #0f172a !important;
--ifm-alert-background-color-highlight: rgba(148, 163, 184, 0.14) !important;
Expand All @@ -2635,20 +2637,36 @@ html[data-theme="dark"].blog-post-page .markdown .alert--info {

html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"],
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"],
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"],
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"],
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] p,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] li,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] span,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] strong,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] em,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] code,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-info [class*="admonitionContent_"] a,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] p,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] li,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] span,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] strong,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] em,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] code,
html[data-theme="dark"].blog-post-page .markdown .theme-admonition-note [class*="admonitionContent_"] a,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] p,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] li,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] span,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] strong,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] em,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] code,
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] a {
html[data-theme="dark"].blog-post-page .markdown .alert--info [class*="admonitionContent_"] a,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] p,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] li,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] span,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] strong,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] em,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] code,
html[data-theme="dark"].blog-post-page .markdown .alert--secondary [class*="admonitionContent_"] a {
color: #ffffff !important;
-webkit-text-fill-color: #ffffff !important;
}
Expand Down
Loading