mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-27 12:03:20 +00:00
2ad3b70018
`extra.css` specifies a background color for `td` and `th`. I believe it is used only for the `readthedocs` theme, and I do not see why it is needed there; it slightly interferes with dark mode. Comment it out rather than deleting it, just in case a need is established for it. Color the top bar for `zensical`. `mkdocs` theme has a weird problem described in its yml file. There is a workaround, but I'm not comitted to it, so make it available but don't use it yet.
28 lines
839 B
CSS
28 lines
839 B
CSS
/* Make the huge table always visible */
|
|
table.features-cross-reference {
|
|
overflow: visible !important;
|
|
}
|
|
/*
|
|
.rst-content table.features-cross-reference.docutils th,
|
|
.rst-content table.features-cross-reference.docutils td {
|
|
background-color: white;
|
|
}
|
|
*/
|
|
|
|
/* https://github.com/mkdocs/mkdocs/discussions/3035#discussioncomment-7237037 */
|
|
.wy-table-responsive table td, .wy-table-responsive table th {
|
|
white-space: normal !important;
|
|
}
|
|
.wy-table-responsive {
|
|
overflow : visible !important;
|
|
}
|
|
|
|
/* https://github.com/readthedocs/sphinx_rtd_theme/issues/295#issuecomment-455226058 */
|
|
.wy-nav-content {max-width: none;}
|
|
|
|
.wehavedarktoggle {display: block;}
|
|
.wedonthavedarktoggle {display: none;}
|
|
|
|
[data-bs-theme="dark"] img[alt="Logo"] {filter: invert(100%)}
|
|
[data-md-color-scheme="slate"] img[alt="Logo"] {filter: invert(100%)}
|